From b3e59ca1e31f162d7ac720d8729958f438b23a02 Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Sat, 9 Feb 2013 18:39:32 +0000 Subject: Work on post_share hook for files_encryption New method in OCP\Share{}:: getUsersSharingFile() Development shapshot --- lib/public/share.php | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index af2a538e252..936f85021c0 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -91,6 +91,60 @@ class Share { } return false; } + + /** + * @brief Find which users can access a shared item + * @param string Item type + * @param int Format (optional) Format type must be defined by the backend + * @param int Number of items to return (optional) Returns all by default + * @return Return depends on format + */ + public static function getUsersSharingFile( $path ) { + + // Fetch all shares of this file path from DB + $query = \OC_DB::prepare( + 'SELECT + share_type + , share_with + , permissions + FROM + `*PREFIX*share` + WHERE + file_target = ?' + ); + + $result = $query->execute( array( $path ) ); + + if ( \OC_DB::isError( $result ) ) { + + \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result) . ', path=' . $path, \OC_Log::ERROR ); + + } + + $shares = array(); + + while( $row = $result->fetchRow() ) { + + // Set helpful array keys + $shares[] = array( + 'userId' => $row['share_with'] + , 'shareType' => $row['share_type'] + , 'permissions' => $row['permissions'] + ); + + } + + if ( ! empty( $shares ) ) { + + return $shares; + + } else { + + return false; + + } + + } /** * @brief Get the items of item type shared with the current user -- cgit v1.2.3 From 9c1196d73e0dc57f1f20a57e459ce053264172b8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 10 Feb 2013 12:05:41 +0100 Subject: Cache: add seccond mtime field --- db_structure.xml | 8 ++++++++ lib/util.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/db_structure.xml b/db_structure.xml index fc7f1082ffa..a86e5e6a8fd 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -261,6 +261,14 @@ 4 + + storage_mtime + integer + + true + 4 + + encrypted integer diff --git a/lib/util.php b/lib/util.php index a5fe4cb175a..7950586b580 100755 --- a/lib/util.php +++ b/lib/util.php @@ -74,7 +74,7 @@ class OC_Util { */ public static function getVersion() { // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4.90.0. This is not visible to the user - return array(4, 91, 9); + return array(4, 91, 10); } /** -- cgit v1.2.3 From 3e70d563a6774567ec77e9d9adf6b9ccb1e9619d Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 10 Feb 2013 12:27:35 +0100 Subject: Cache: bookkeeping of storage_mtime --- lib/files/cache/cache.php | 17 ++++++++++++++--- lib/files/cache/scanner.php | 1 + lib/files/cache/watcher.php | 2 +- tests/lib/files/cache/cache.php | 18 ++++++++++++++++++ tests/lib/files/cache/watcher.php | 10 +++++----- tests/lib/files/view.php | 2 +- 6 files changed, 40 insertions(+), 10 deletions(-) (limited to 'lib') diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index dcb6e8fd39a..d696f003c57 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -114,7 +114,7 @@ class Cache { $params = array($file); } $query = \OC_DB::prepare( - 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`, `etag` + 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `storage_mtime`, `encrypted`, `etag` FROM `*PREFIX*filecache` ' . $where); $result = $query->execute($params); $data = $result->fetchRow(); @@ -133,6 +133,9 @@ class Cache { $data['storage'] = $this->storageId; $data['mimetype'] = $this->getMimetype($data['mimetype']); $data['mimepart'] = $this->getMimetype($data['mimepart']); + if ($data['storage_mtime'] == 0) { + $data['storage_mtime'] = $data['mtime']; + } } return $data; @@ -148,13 +151,16 @@ class Cache { $fileId = $this->getId($folder); if ($fileId > -1) { $query = \OC_DB::prepare( - 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`, `etag` + 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `storage_mtime`, `encrypted`, `etag` FROM `*PREFIX*filecache` WHERE parent = ? ORDER BY `name` ASC'); $result = $query->execute(array($fileId)); $files = $result->fetchAll(); foreach ($files as &$file) { $file['mimetype'] = $this->getMimetype($file['mimetype']); $file['mimepart'] = $this->getMimetype($file['mimepart']); + if ($file['storage_mtime'] == 0) { + $file['storage_mtime'] = $file['mtime']; + } } return $files; } else { @@ -226,7 +232,7 @@ class Cache { * @return array */ function buildParts(array $data) { - $fields = array('path', 'parent', 'name', 'mimetype', 'size', 'mtime', 'encrypted', 'etag'); + $fields = array('path', 'parent', 'name', 'mimetype', 'size', 'mtime', 'storage_mtime', 'encrypted', 'etag'); $params = array(); $queryParts = array(); foreach ($data as $name => $value) { @@ -238,6 +244,11 @@ class Cache { $params[] = $this->getMimetypeId(substr($value, 0, strpos($value, '/'))); $queryParts[] = '`mimepart`'; $value = $this->getMimetypeId($value); + } elseif ($name === 'storage_mtime') { + if (!isset($data['mtime'])) { + $params[] = $value; + $queryParts[] = '`mtime`'; + } } $params[] = $value; $queryParts[] = '`' . $name . '`'; diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index 9a5546dce3f..2623a167e9f 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -51,6 +51,7 @@ class Scanner { $data['size'] = $this->storage->filesize($path); } $data['etag'] = $this->storage->getETag($path); + $data['storage_mtime'] = $data['mtime']; return $data; } diff --git a/lib/files/cache/watcher.php b/lib/files/cache/watcher.php index 31059ec7f56..8bfd4602f3a 100644 --- a/lib/files/cache/watcher.php +++ b/lib/files/cache/watcher.php @@ -43,7 +43,7 @@ class Watcher { */ public function checkUpdate($path) { $cachedEntry = $this->cache->get($path); - if ($this->storage->hasUpdated($path, $cachedEntry['mtime'])) { + if ($this->storage->hasUpdated($path, $cachedEntry['storage_mtime'])) { if ($this->storage->is_dir($path)) { $this->scanner->scan($path, Scanner::SCAN_SHALLOW); } else { diff --git a/tests/lib/files/cache/cache.php b/tests/lib/files/cache/cache.php index c466fbb63e7..794664c8893 100644 --- a/tests/lib/files/cache/cache.php +++ b/tests/lib/files/cache/cache.php @@ -204,6 +204,23 @@ class Cache extends \PHPUnit_Framework_TestCase { $this->assertEquals(array($storageId, 'foo'), \OC\Files\Cache\Cache::getById($id)); } + function testStorageMTime() { + $data = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'foo/file'); + $this->cache->put('foo', $data); + $cachedData = $this->cache->get('foo'); + $this->assertEquals($data['mtime'], $cachedData['storage_mtime']);//if no storage_mtime is saved, mtime should be used + + $this->cache->put('foo', array('storage_mtime' => 30));//when setting storage_mtime, mtime is also set + $cachedData = $this->cache->get('foo'); + $this->assertEquals(30, $cachedData['storage_mtime']); + $this->assertEquals(30, $cachedData['mtime']); + + $this->cache->put('foo', array('mtime' => 25));//setting mtime does not change storage_mtime + $cachedData = $this->cache->get('foo'); + $this->assertEquals(30, $cachedData['storage_mtime']); + $this->assertEquals(25, $cachedData['mtime']); + } + public function tearDown() { $this->cache->clear(); } @@ -213,3 +230,4 @@ class Cache extends \PHPUnit_Framework_TestCase { $this->cache = new \OC\Files\Cache\Cache($this->storage); } } + diff --git a/tests/lib/files/cache/watcher.php b/tests/lib/files/cache/watcher.php index e8a1689cab0..1ea0c2eb47a 100644 --- a/tests/lib/files/cache/watcher.php +++ b/tests/lib/files/cache/watcher.php @@ -35,7 +35,7 @@ class Watcher extends \PHPUnit_Framework_TestCase { $updater = $storage->getWatcher(); //set the mtime to the past so it can detect an mtime change - $cache->put('', array('mtime' => 10)); + $cache->put('', array('storage_mtime' => 10)); $this->assertTrue($cache->inCache('folder/bar.txt')); $this->assertTrue($cache->inCache('folder/bar2.txt')); @@ -47,14 +47,14 @@ class Watcher extends \PHPUnit_Framework_TestCase { $cachedData = $cache->get('bar.test'); $this->assertEquals(3, $cachedData['size']); - $cache->put('bar.test', array('mtime' => 10)); + $cache->put('bar.test', array('storage_mtime' => 10)); $storage->file_put_contents('bar.test', 'test data'); $updater->checkUpdate('bar.test'); $cachedData = $cache->get('bar.test'); $this->assertEquals(9, $cachedData['size']); - $cache->put('folder', array('mtime' => 10)); + $cache->put('folder', array('storage_mtime' => 10)); $storage->unlink('folder/bar2.txt'); $updater->checkUpdate('folder'); @@ -69,7 +69,7 @@ class Watcher extends \PHPUnit_Framework_TestCase { $updater = $storage->getWatcher(); //set the mtime to the past so it can detect an mtime change - $cache->put('', array('mtime' => 10)); + $cache->put('', array('storage_mtime' => 10)); $storage->unlink('foo.txt'); $storage->rename('folder', 'foo.txt'); @@ -86,7 +86,7 @@ class Watcher extends \PHPUnit_Framework_TestCase { $updater = $storage->getWatcher(); //set the mtime to the past so it can detect an mtime change - $cache->put('foo.txt', array('mtime' => 10)); + $cache->put('foo.txt', array('storage_mtime' => 10)); $storage->unlink('foo.txt'); $storage->rename('folder', 'foo.txt'); diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index a064e44f3ef..c9a8a0fb081 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -220,7 +220,7 @@ class View extends \PHPUnit_Framework_TestCase { $cachedData = $rootView->getFileInfo('foo.txt'); $this->assertEquals(16, $cachedData['size']); - $rootView->putFileInfo('foo.txt', array('mtime' => 10)); + $rootView->putFileInfo('foo.txt', array('storage_mtime' => 10)); $storage1->file_put_contents('foo.txt', 'foo'); clearstatcache(); -- cgit v1.2.3 From 9738fae3cf1ad18593d21eb62e138e00c01f5f36 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 10 Feb 2013 12:44:27 +0100 Subject: Emulate touch() for backends that don't support it --- lib/files/view.php | 16 ++++++++++------ tests/lib/files/view.php | 34 ++++++++++++++++++++++++++++++++-- 2 files changed, 42 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/lib/files/view.php b/lib/files/view.php index 1a234228eab..69e2f1ad349 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -242,7 +242,11 @@ class View { if (!is_null($mtime) and !is_numeric($mtime)) { $mtime = strtotime($mtime); } - return $this->basicOperation('touch', $path, array('write'), $mtime); + $result = $this->basicOperation('touch', $path, array('write'), $mtime); + if (!$result) { //if native touch fails, we emulate it by changing the mtime in the cache + $this->putFileInfo($path, array('mtime' => $mtime)); + } + return true; } public function file_get_contents($path) { @@ -917,11 +921,11 @@ class View { } /** - * Get the owner for a file or folder - * - * @param string $path - * @return string - */ + * Get the owner for a file or folder + * + * @param string $path + * @return string + */ public function getOwner($path) { return $this->basicOperation('getOwner', $path); } diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index c9a8a0fb081..af97761bbb7 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -7,6 +7,12 @@ namespace Test\Files; +class TemporaryNoTouch extends \OC\Files\Storage\Temporary { + public function touch($path, $mtime = null) { + return false; + } +} + class View extends \PHPUnit_Framework_TestCase { /** * @var \OC\Files\Storage\Storage[] $storages; @@ -228,12 +234,36 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertEquals(3, $cachedData['size']); } + function testTouch() { + $storage = $this->getTestStorage(true, '\Test\Files\TemporaryNoTouch'); + + \OC\Files\Filesystem::mount($storage, array(), '/'); + + $rootView = new \OC\Files\View(''); + $oldCachedData = $rootView->getFileInfo('foo.txt'); + + $rootView->touch('foo.txt', 500); + + $cachedData = $rootView->getFileInfo('foo.txt'); + $this->assertEquals(500, $cachedData['mtime']); + $this->assertEquals($oldCachedData['storage_mtime'], $cachedData['storage_mtime']); + + $rootView->putFileInfo('foo.txt', array('storage_mtime' => 1000)); //make sure the watcher detects the change + $rootView->file_put_contents('foo.txt', 'asd'); + $cachedData = $rootView->getFileInfo('foo.txt'); + $this->assertGreaterThanOrEqual($cachedData['mtime'], $oldCachedData['mtime']); + $this->assertEquals($cachedData['storage_mtime'], $cachedData['mtime']); + } + /** * @param bool $scan * @return \OC\Files\Storage\Storage */ - private function getTestStorage($scan = true) { - $storage = new \OC\Files\Storage\Temporary(array()); + private function getTestStorage($scan = true, $class = '\OC\Files\Storage\Temporary') { + /** + * @var \OC\Files\Storage\Storage $storage + */ + $storage = new $class(array()); $textData = "dummy file data\n"; $imgData = file_get_contents(\OC::$SERVERROOT . '/core/img/logo.png'); $storage->mkdir('folder'); -- cgit v1.2.3 From 92f06243be62945b5ff5e7542e9984f7bb45d74b Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Mon, 11 Feb 2013 10:21:23 +0000 Subject: Implementing sharing support New file-specific methods in lib/public/share Changes to how keyfiles are stored --- apps/files_encryption/hooks/hooks.php | 47 +++++++------ apps/files_encryption/lib/crypt.php | 41 ++++++++--- apps/files_encryption/lib/keymanager.php | 97 +++++++++++++++++++++++--- apps/files_encryption/lib/proxy.php | 113 +++++++++++++++++-------------- apps/files_encryption/test/crypt.php | 8 +-- lib/public/share.php | 82 ++++++++++++++++++++-- 6 files changed, 283 insertions(+), 105 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index c6d4c16115a..9252a341fb7 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -82,8 +82,12 @@ class Hooks { } + \OC_FileProxy::$enabled = false; + $publicKey = Keymanager::getPublicKey( $view, $params['uid'] ); + \OC_FileProxy::$enabled = false; + // Encrypt existing user files: // This serves to upgrade old versions of the encryption // app (see appinfo/spec.txt) @@ -175,8 +179,9 @@ class Hooks { $view = new \OC_FilesystemView( '/' ); $userId = \OCP\User::getUser(); $util = new Util( $view, $userId ); + $session = new Session(); - $shares = \OCP\Share::getUsersSharingFile( $params['fileTarget'] ); + $shares = \OCP\Share::getUsersSharingFile( $params['fileTarget'], 1 ); $userIds = array(); @@ -202,41 +207,35 @@ class Hooks { } - trigger_error("UIDS = ".var_export($userIds, 1)); - $userPubKeys = Keymanager::getPublicKeys( $view, $userIds ); -// trigger_error("PUB KEYS = ".var_export($userPubKeys, 1)); - - // TODO: Fetch path from Crypt{} getter - $plainContent = $view->file_get_contents( $userId . '/' . 'files'. '/' . $params['fileTarget'] ); + \OC_FileProxy::$enabled = false; - // Generate new catfile and share keys - if ( ! $encrypted = Crypt::multiKeyEncrypt( $plainContent, $userPubKeys ) ) { + // get the keyfile + $encKeyfile = Keymanager::getFileKey( $view, $userId, $params['fileTarget'] ); - // If the re-encryption failed, don't risk deleting data - return false; - - } + $privateKey = $session->getPrivateKey(); - trigger_error("ENCRYPTED = ". var_export($encrypted, 1)); + // decrypt the keyfile + $plainKeyfile = Crypt::keyDecrypt( $encKeyfile, $privateKey ); - // Save env keys to user folders - foreach ( $encrypted['keys'] as $key ) { + // re-enc keyfile to sharekeys + $shareKeys = Crypt::multiKeyEncrypt( $plainKeyfile, $userPubKeys ); -// Keymanager::setShareKey( $view, $params['fileTarget'], $userId, $key ); + // save sharekeys + if ( ! Keymanager::setShareKeys( $view, $params['fileTarget'], $shareKeys['keys'] ) ) { + trigger_error( "SET Share keys failed" ); + } - // Delete existing catfile - // Check if keyfile exists (it won't if file has been shared before) + // Delete existing keyfile // Do this last to ensure file is recoverable in case of error - if ( $util->isEncryptedPath( $params['fileTarget'] ) ) { - - // NOTE: This will trigger an error if keyfile isn't found -// Keymanager::deleteFileKey( $params['fileTarget'] ); +// Keymanager::deleteFileKey( $view, $userId, $params['fileTarget'] ); - } + \OC_FileProxy::$enabled = true; + + return true; } diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index e3d23023db3..fdee03eeaf5 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -370,22 +370,41 @@ class Crypt { /** * @brief Create asymmetrically encrypted keyfile content using a generated key * @param string $plainContent content to be encrypted - * @returns array keys: key, encrypted - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file + * @param array $publicKeys array keys must be the userId of corresponding user + * @returns array keys: keys (array, key = userId), encrypted + * @note symmetricDecryptFileContent() can decrypt files created using this method */ public static function multiKeyEncrypt( $plainContent, array $publicKeys ) { - + + // openssl_seal returns false without errors if $plainContent + // is empty, so trigger our own error + if ( empty( $plainContent ) ) { + + trigger_error( "Cannot mutliKeyEncrypt empty plain content" ); + throw new \Exception( 'Cannot mutliKeyEncrypt empty plain content' ); + + } + // Set empty vars to be set by openssl by reference $sealed = ''; - $envKeys = array(); + $shareKeys = array(); - if( openssl_seal( $plainContent, $sealed, $envKeys, $publicKeys ) ) { + if( openssl_seal( $plainContent, $sealed, $shareKeys, $publicKeys ) ) { + + $i = 0; + + // Ensure each shareKey is labelled with its + // corresponding userId + foreach ( $publicKeys as $userId => $publicKey ) { + + $mappedShareKeys[$userId] = $shareKeys[$i]; + $i++; + + } return array( - 'keys' => $envKeys - , 'encrypted' => $sealed + 'keys' => $mappedShareKeys + , 'data' => $sealed ); } else { @@ -404,7 +423,7 @@ class Crypt { * * This function decrypts a file */ - public static function multiKeyDecrypt( $encryptedContent, $envKey, $privateKey ) { + public static function multiKeyDecrypt( $encryptedContent, $shareKey, $privateKey ) { if ( !$encryptedContent ) { @@ -412,7 +431,7 @@ class Crypt { } - if ( openssl_open( $encryptedContent, $plainContent, $envKey, $privateKey ) ) { + if ( openssl_open( $encryptedContent, $plainContent, $shareKey, $privateKey ) ) { return $plainContent; diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 3160572ba1b..5f9eea1a0bc 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -52,8 +52,11 @@ class Keymanager { */ public static function getPublicKey( \OC_FilesystemView $view, $userId ) { + \OC_FileProxy::$enabled = false; + return $view->file_get_contents( '/public-keys/' . '/' . $userId . '.public.key' ); + \OC_FileProxy::$enabled = true; } /** @@ -77,20 +80,16 @@ class Keymanager { * @param array $userIds * @return array of public keys for the specified users */ - public static function getPublicKeys( \OC_FilesystemView $view, $userIds ) { + public static function getPublicKeys( \OC_FilesystemView $view, array $userIds ) { - $i = 0; $keys = array(); foreach ( $userIds as $userId ) { - $i++; $keys[$userId] = self::getPublicKey( $view, $userId ); } - $keys['total'] = $i; - return $keys; } @@ -137,11 +136,11 @@ class Keymanager { $filePath_f = ltrim( $filePath, '/' ); - $catfilePath = '/' . $userId . '/files_encryption/keyfiles/' . $filePath_f . '.key'; + $keyfilePath = '/' . $userId . '/files_encryption/keyfiles/' . $filePath_f . '.key'; - if ( $view->file_exists( $catfilePath ) ) { + if ( $view->file_exists( $keyfilePath ) ) { - return $view->file_get_contents( $catfilePath ); + return $view->file_get_contents( $keyfilePath ); } else { @@ -239,7 +238,7 @@ class Keymanager { } /** - * @brief store file encryption key + * @brief store share key * * @param string $path relative path of the file, including filename * @param string $key @@ -255,7 +254,85 @@ class Keymanager { $shareKeyPath = self::keySetPreparation( $view, $path, $basePath, $userId ); - return $view->file_put_contents( $basePath . '/' . $shareKeyPath . '.shareKey', $shareKey ); + $writePath = $basePath . '/' . $shareKeyPath . '.shareKey'; + + \OC_FileProxy::$enabled = false; + + $result = $view->file_put_contents( $writePath, $shareKey ); + + if ( + is_int( $result ) + && $result > 0 + ) { + + return true; + + } else { + + return false; + + } + + } + + /** + * @brief store multiple share keys for a single file + * @return bool + */ + public static function setShareKeys( \OC_FilesystemView $view, $path, array $shareKeys ) { + + // $shareKeys must be an array with the following format: + // [userId] => [encrypted key] + + $result = true; + + foreach ( $shareKeys as $userId => $shareKey ) { + + if ( ! self::setShareKey( $view, $path, $userId, $shareKey ) ) { + + // If any of the keys are not set, flag false + $result = false; + + } + + } + + // Returns false if any of the keys weren't set + return $result; + + } + + /** + * @brief retrieve shareKey for an encrypted file + * @param \OC_FilesystemView $view + * @param $userId + * @param $filePath + * @internal param \OCA\Encryption\file $string name + * @return string file key or false + * @note The sharekey returned is encrypted. Decryption + * of the keyfile must be performed by client code + */ + public static function getShareKey( \OC_FilesystemView $view, $userId, $filePath ) { + + \OC_FileProxy::$enabled = false; + + $filePath_f = ltrim( $filePath, '/' ); + + $shareKeyPath = '/' . $userId . '/files_encryption/share-keys/' . $filePath_f . '.shareKey'; + + if ( $view->file_exists( $shareKeyPath ) ) { + + $result = $view->file_get_contents( $shareKeyPath ); + + } else { + + $result = false; + + } + + \OC_FileProxy::$enabled = true; + + return $result; } diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 58b9bc0725b..b5e59e89b9e 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -99,58 +99,65 @@ class Proxy extends \OC_FileProxy { if ( !is_resource( $data ) ) { $userId = \OCP\USER::getUser(); - $rootView = new \OC_FilesystemView( '/' ); - + $util = new Util( $rootView, $userId ); + $filePath = $util->stripUserFilesPath( $path ); // Set the filesize for userland, before encrypting $size = strlen( $data ); // Disable encryption proxy to prevent recursive calls \OC_FileProxy::$enabled = false; - $fileOwner = \OC\Files\Filesystem::getOwner( $path ); + // Encrypt data + $encData = Crypt::symmetricEncryptFileContentKeyfile( $data ); // Check if the keyfile needs to be shared - if ( - $fileOwner !== true - or $fileOwner !== $userId - ) { + if ( \OCP\Share::isSharedFile( $filePath ) ) { + +// $fileOwner = \OC\Files\Filesystem::getOwner( $path ); + + // List everyone sharing the file + $shares = \OCP\Share::getUsersSharingFile( $filePath, 1 ); + + $userIds = array(); + + foreach ( $shares as $share ) { + + $userIds[] = $share['userId']; + + } + + $publicKeys = Keymanager::getPublicKeys( $rootView, $userIds ); + + \OC_FileProxy::$enabled = false; + + // Encrypt plain keyfile to multiple sharefiles + $multiEncrypted = Crypt::multiKeyEncrypt( $encData['key'], $publicKeys ); + + // Save sharekeys to user folders + Keymanager::setShareKeys( $rootView, $filePath, $multiEncrypted['keys'] ); + + // Set encrypted keyfile as common varname + $encKey = $multiEncrypted['encrypted']; - // Shared storage backend isn't loaded - $users = \OCP\Share::getItemShared( 'file', $path, \OC_Share_backend_File::FORMAT_SHARED_STORAGE ); -// - trigger_error("SHARE USERS = ". var_export($users, 1)); -// -// $publicKeys = Keymanager::getPublicKeys( $rootView, $users); -// -// // Encrypt plain data to multiple users -// $encrypted = Crypt::multiKeyEncrypt( $data, $publicKeys ); } else { $publicKey = Keymanager::getPublicKey( $rootView, $userId ); // Encrypt plain data to a single user - $encrypted = Crypt::keyEncryptKeyfile( $data, $publicKey ); + $encKey = Crypt::keyEncrypt( $encData['key'], $publicKey ); } - // Replace plain content with encrypted content by reference - $data = $encrypted['data']; - - $filePath = explode( '/', $path ); - - $filePath = array_slice( $filePath, 3 ); - - $filePath = '/' . implode( '/', $filePath ); - - // TODO: make keyfile dir dynamic from app config - - $view = new \OC_FilesystemView( '/' ); + // TODO: Replace userID with ownerId so keyfile is saved centrally // Save keyfile for newly encrypted file in parallel directory tree - Keymanager::setFileKey( $view, $filePath, $userId, $encrypted['key'] ); + Keymanager::setFileKey( $rootView, $filePath, $userId, $encKey ); + + // Replace plain content with encrypted content by reference + $data = $encData['encrypted']; // Update the file cache with file info \OC\Files\Filesystem::putFileInfo( $path, array( 'encrypted'=>true, 'size' => $size ), '' ); @@ -168,8 +175,6 @@ class Proxy extends \OC_FileProxy { * @param string $data Data that has been read from file */ public function postFile_get_contents( $path, $data ) { - - // TODO: Use dependency injection to add required args for view and user etc. to this method // Disable encryption proxy to prevent recursive calls \OC_FileProxy::$enabled = false; @@ -180,45 +185,55 @@ class Proxy extends \OC_FileProxy { && Crypt::isCatfile( $data ) ) { - $split = explode( '/', $path ); - - $filePath = array_slice( $split, 3 ); + $view = new \OC_FilesystemView( '/' ); + $userId = \OCP\USER::getUser(); + $session = new Session(); + $util = new Util( $view, $userId ); + $filePath = $util->stripUserFilesPath( $path ); + $privateKey = $session->getPrivateKey( $userId ); - $filePath = '/' . implode( '/', $filePath ); + // Get the encrypted keyfile + $encKeyfile = Keymanager::getFileKey( $view, $userId, $filePath ); - //$cached = \OC\Files\Filesystem::getFileInfo( $path, '' ); + // Check if key is shared or not + if ( \OCP\Share::isSharedFile( $filePath ) ) { - $view = new \OC_FilesystemView( '' ); + // If key is shared, fetch the user's shareKey + $shareKey = Keymanager::getShareKey( $view, $userId, $filePath ); + + \OC_FileProxy::$enabled = false; + + // Decrypt keyfile with shareKey + $plainKeyfile = Crypt::multiKeyDecrypt( $encKeyfile, $shareKey, $privateKey ); - $userId = \OCP\USER::getUser(); + } else { + + // If key is unshared, decrypt with user private key + $plainKeyfile = Crypt::keyDecrypt( $encKeyfile, $privateKey ); - // TODO: Check if file is shared, if so, use multiKeyDecrypt + } - $encryptedKeyfile = Keymanager::getFileKey( $view, $userId, $filePath ); + $plainData = Crypt::symmetricDecryptFileContent( $data, $plainKeyfile ); - $session = new Session(); - - $decrypted = Crypt::keyDecryptKeyfile( $data, $encryptedKeyfile, $session->getPrivateKey( $split[1] ) ); - } elseif ( Crypt::mode() == 'server' && isset( $_SESSION['legacyenckey'] ) && Crypt::isEncryptedMeta( $path ) ) { - $decrypted = Crypt::legacyDecrypt( $data, $_SESSION['legacyenckey'] ); + $plainData = Crypt::legacyDecrypt( $data, $session->getLegacyKey() ); } \OC_FileProxy::$enabled = true; - if ( ! isset( $decrypted ) ) { + if ( ! isset( $plainData ) ) { - $decrypted = $data; + $plainData = $data; } - return $decrypted; + return $plainData; } diff --git a/apps/files_encryption/test/crypt.php b/apps/files_encryption/test/crypt.php index aa87ec32821..48ad2ee0075 100755 --- a/apps/files_encryption/test/crypt.php +++ b/apps/files_encryption/test/crypt.php @@ -439,14 +439,14 @@ class Test_Crypt extends \PHPUnit_Framework_TestCase { $this->assertTrue( strlen( $pair1['privateKey'] ) > 1 ); - $crypted = Encryption\Crypt::multiKeyEncrypt( $this->dataUrl, array( $pair1['publicKey'] ) ); + $crypted = Encryption\Crypt::multiKeyEncrypt( $this->dataShort, array( $pair1['publicKey'] ) ); - $this->assertNotEquals( $this->dataUrl, $crypted['encrypted'] ); + $this->assertNotEquals( $this->dataShort, $crypted['data'] ); - $decrypt = Encryption\Crypt::multiKeyDecrypt( $crypted['encrypted'], $crypted['keys'][0], $pair1['privateKey'] ); + $decrypt = Encryption\Crypt::multiKeyDecrypt( $crypted['data'], $crypted['keys'][0], $pair1['privateKey'] ); - $this->assertEquals( $this->dataUrl, $decrypt ); + $this->assertEquals( $this->dataShort, $decrypt ); } diff --git a/lib/public/share.php b/lib/public/share.php index 936f85021c0..4170783d71e 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -92,20 +92,73 @@ class Share { return false; } + /** + * @brief Prepare a path to be passed to DB as file_target + * @return string Prepared path + */ + public static function prepFileTarget( $path ) { + + // Paths in DB are stored with leading slashes, so add one if necessary + if ( substr( $path, 0, 1 ) !== '/' ) { + + $path = '/' . $path; + + } + + return $path; + + } + + public static function isSharedFile( $path ) { + + $fPath = self::prepFileTarget( $path ); + + // Fetch all shares of this file path from DB + $query = \OC_DB::prepare( + 'SELECT + id + FROM + `*PREFIX*share` + WHERE + file_target = ?' + ); + + $result = $query->execute( array( $fPath ) ); + + if ( \OC_DB::isError( $result ) ) { + + \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage( $result ) . ', path=' . $fPath, \OC_Log::ERROR ); + + } + + if ( $result->fetchRow() !== false ) { + + return true; + + } else { + + return false; + + } + + } + /** * @brief Find which users can access a shared item - * @param string Item type - * @param int Format (optional) Format type must be defined by the backend - * @param int Number of items to return (optional) Returns all by default - * @return Return depends on format + * @return bool / 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 ) { + public static function getUsersSharingFile( $path, $includeOwner = 0 ) { + + $fPath = self::prepFileTarget( $path ); // Fetch all shares of this file path from DB $query = \OC_DB::prepare( 'SELECT share_type , share_with + , uid_owner , permissions FROM `*PREFIX*share` @@ -113,11 +166,11 @@ class Share { file_target = ?' ); - $result = $query->execute( array( $path ) ); + $result = $query->execute( array( $fPath ) ); if ( \OC_DB::isError( $result ) ) { - \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result) . ', path=' . $path, \OC_Log::ERROR ); + \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result) . ', path=' . $fPath, \OC_Log::ERROR ); } @@ -128,6 +181,7 @@ class Share { // Set helpful array keys $shares[] = array( 'userId' => $row['share_with'] + , 'owner' => $row['uid_owner'] // we just set this so it can be used once, hugly hack :/ , 'shareType' => $row['share_type'] , 'permissions' => $row['permissions'] ); @@ -136,6 +190,20 @@ class Share { if ( ! empty( $shares ) ) { + // Include owner in list of users, if requested + if ( $includeOwner == 1 ) { + + // NOTE: The values are incorrect for shareType and + // permissions of the owner; we just include them for + // optional convenience + $shares[] = array( + 'userId' => $shares[0]['owner'] + , 'shareType' => 0 + , 'permissions' => 0 + ); + + } + return $shares; } else { -- cgit v1.2.3 From 8eef919a754ff3404df1065d616e66cb9b1ff437 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Tue, 12 Feb 2013 12:08:34 +0100 Subject: take group shares into account if we retrieve the list a all recipients --- apps/files_encryption/hooks/hooks.php | 35 ++++--------------- apps/files_encryption/lib/crypt.php | 30 ++++++++++++++-- lib/public/share.php | 65 ++++++++++++++++------------------- 3 files changed, 63 insertions(+), 67 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 17bcb9238ac..c14ce3e91db 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -167,44 +167,21 @@ class Hooks { * @brief */ public static function postShared( $params ) { - error_log("post shared triggered!"); + // NOTE: $params is an array with these keys: // itemSource -> int, filecache file ID // shareWith -> string, uid of user being shared to // fileTarget -> path of file being shared // uidOwner -> owner of the original file being shared + //TODO: We don't deal with shared folder yet, need to recursively update every file in the folder + $view = new \OC_FilesystemView( '/' ); $userId = \OCP\User::getUser(); $util = new Util( $view, $userId ); - $shares = \OCP\Share::getUsersSharingFile( $params['fileTarget'], 1 ); - - $userIds = array(); - - foreach ( $shares as $share ) { - - $util = new Util( $view, $share['userId'] ); - - // Check that the user is encryption capable - // TODO create encryption key when user gets created - if ( $util->ready() ) { - - // Construct array of just UIDs for Keymanager{} - $userIds[] = $share['userId']; - - } else { - - // Log warning; we can't do necessary setup here - // because we don't have the user passphrase - // TODO: Provide user feedback indicating that - // sharing failed - \OC_Log::write( 'Encryption library', 'File cannot be shared: user "'.$share['userId'].'" is not setup for encryption', \OC_Log::WARN ); - - } + $shares = \OCP\Share::getUsersSharingFile( $params['itemSource'], 1 ); - } - return Crypt::encKeyfileToMultipleUsers($shares, $params['fileTarget']); } @@ -213,11 +190,11 @@ class Hooks { * @brief */ public static function preUnshare( $params ) { - $items = \OCP\Share::getItemSharedWithBySource($params['itemType'], $params['itemSource']); - $shares = \OCP\Share::getUsersSharingFile( $item[0]['file_target'], 1 ); + $shares = \OCP\Share::getUsersSharingFile( $params['itemSource'], 1 ); $userIds = array(); foreach ( $shares as $share ) { + error_log("keek user id: " . $share['userId']); $userIds[] = $share['userId']; } diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 6704ea6bf18..a8cc2b3726d 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -752,16 +752,40 @@ class Crypt { */ public static function encKeyfileToMultipleUsers($users, $fileTarget) { $view = new \OC_FilesystemView( '/' ); - $userId = \OCP\User::getUser(); + $owner = \OCP\User::getUser(); $util = new Util( $view, $userId ); $session = new Session(); + + $userIds = array(); + + foreach ( $users as $user ) { + + $util = new Util( $view, $user ); + + // Check that the user is encryption capable + if ( $util->ready() ) { + // Construct array of just UIDs for Keymanager{} + $userIds[] = $user; + + } else { + + // Log warning; we can't do necessary setup here + // because we don't have the user passphrase + // TODO: Provide user feedback indicating that + // sharing failed + \OC_Log::write( 'Encryption library', 'File cannot be shared: user "'.$user.'" is not setup for encryption', \OC_Log::WARN ); + + } + + } + - $userPubKeys = Keymanager::getPublicKeys( $view, $users ); + $userPubKeys = Keymanager::getPublicKeys( $view, $userIds ); \OC_FileProxy::$enabled = false; // get the keyfile - $encKeyfile = Keymanager::getFileKey( $view, $userId, $fileTarget ); + $encKeyfile = Keymanager::getFileKey( $view, $owner, $fileTarget ); $privateKey = $session->getPrivateKey(); diff --git a/lib/public/share.php b/lib/public/share.php index 4170783d71e..841240692d8 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -149,62 +149,57 @@ class Share { * @note $path needs to be relative to user data dir, e.g. 'file.txt' * not '/admin/data/file.txt' */ - public static function getUsersSharingFile( $path, $includeOwner = 0 ) { - - $fPath = self::prepFileTarget( $path ); - + public static function getUsersSharingFile( $source, $includeOwner = 0 ) { + //TODO get also the recipients from folders which are shared above the current file // Fetch all shares of this file path from DB $query = \OC_DB::prepare( - 'SELECT - share_type - , share_with - , uid_owner - , permissions + 'SELECT share_with FROM `*PREFIX*share` WHERE - file_target = ?' + item_source = ? AND share_type = ? AND uid_owner = ?' ); - $result = $query->execute( array( $fPath ) ); + $result = $query->execute( array( $source, self::SHARE_TYPE_USER, \OCP\User::getUser() ) ); if ( \OC_DB::isError( $result ) ) { - - \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result) . ', path=' . $fPath, \OC_Log::ERROR ); - + \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); } $shares = array(); while( $row = $result->fetchRow() ) { + $shares[] = $row['share_with']; + } - // Set helpful array keys - $shares[] = array( - 'userId' => $row['share_with'] - , 'owner' => $row['uid_owner'] // we just set this so it can be used once, hugly hack :/ - , 'shareType' => $row['share_type'] - , 'permissions' => $row['permissions'] - ); + // We also need to take group shares into account + + $query = \OC_DB::prepare( + 'SELECT share_with + FROM + `*PREFIX*share` + WHERE + item_source = ? AND share_type = ? AND uid_owner = ?' + ); + $result = $query->execute( array( $source, self::SHARE_TYPE_GROUP, \OCP\User::getUser() ) ); + + if ( \OC_DB::isError( $result ) ) { + \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); } + while( $row = $result->fetchRow() ) { + $usersInGroup = \OC_Group::usersInGroup($row['share_with']); + $shares = array_merge($shares, $usersInGroup); + } + if ( ! empty( $shares ) ) { - // Include owner in list of users, if requested if ( $includeOwner == 1 ) { - - // NOTE: The values are incorrect for shareType and - // permissions of the owner; we just include them for - // optional convenience - $shares[] = array( - 'userId' => $shares[0]['owner'] - , 'shareType' => 0 - , 'permissions' => 0 - ); - + $shares[] = \OCP\User::getUser(); } - - return $shares; + + return array_unique($shares); } else { @@ -235,7 +230,7 @@ class Share { public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections); } - + /** * @brief Get the item of item type shared with the current user by source * @param string Item type -- cgit v1.2.3 From d1bbb30385260d77b01bc5998465ebe68ccd83d7 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Tue, 12 Feb 2013 16:48:04 +0100 Subject: also find users with access to the file if a folder above the actual file was already shared --- apps/files_encryption/hooks/hooks.php | 30 ++++------- apps/files_encryption/lib/crypt.php | 2 - apps/files_encryption/lib/util.php | 14 +++++ lib/public/share.php | 97 ++++++++++++++++++----------------- 4 files changed, 75 insertions(+), 68 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index ebc345a47e7..ffd3e4544f1 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -164,21 +164,7 @@ class Hooks { } /** - * @brief get path of a file. - * @param $fileId id of the file - * @return path of the file - */ - private static function getFilePath($fileId) { - $query = \OC_DB::prepare('SELECT `path`' - .' FROM `*PREFIX*filecache`' - .' WHERE `fileid` = ?'); - $result = $query->execute(array($fileId)); - $row = $result->fetchRow(); - return $row['path']; - } - - /** - * @brief + * @brief get all users with access to the file and encrypt the file key to each of them */ public static function postShared( $params ) { @@ -194,9 +180,11 @@ class Hooks { $userId = \OCP\User::getUser(); $util = new Util( $view, $userId ); - $shares = \OCP\Share::getUsersSharingFile( $params['itemSource'], 1 ); + $path = Util::getFilePath($params['itemSource']); + + $shares = \OCP\Share::getUsersSharingFile( $path, 1 ); - return Crypt::encKeyfileToMultipleUsers($shares, self::getFilePath($params['itemSource'])); + return Crypt::encKeyfileToMultipleUsers($shares, $path); } @@ -204,18 +192,20 @@ class Hooks { * @brief */ public static function preUnshare( $params ) { - $shares = \OCP\Share::getUsersSharingFile( $params['itemSource'], 1 ); + + $path = Util::getFilePath($params['itemSource']); + $shares = \OCP\Share::getUsersSharingFile( $path, 1 ); // remove the user from the list from which the file will be unshared unset($shares[$params['shareWith']]); - return Crypt::encKeyfileToMultipleUsers($shares, self::getFilePath($params['itemSource'])); + return Crypt::encKeyfileToMultipleUsers($shares, $path ); } /** * @brief */ public static function preUnshareAll( $params ) { - return Crypt::encKeyfileToMultipleUsers(array(\OCP\User::getUser()), self::getFilePath($params['itemSource'])); + return Crypt::encKeyfileToMultipleUsers(array(\OCP\User::getUser()), Util::getFilePath($params['itemSource'])); } } diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index cbdae323e56..ba9f0cb9a2a 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -450,9 +450,7 @@ class Crypt { * @returns encrypted file */ public static function keyEncrypt( $plainContent, $publicKey ) { - openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey ); - return $encryptedContent; } diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 52bc74db27a..843727d7ab4 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -472,5 +472,19 @@ class Util { } } + + /** + * @brief get path of a file. + * @param $fileId id of the file + * @return path of the file + */ + public static function getFilePath($fileId) { + $query = \OC_DB::prepare('SELECT `path`' + .' FROM `*PREFIX*filecache`' + .' WHERE `fileid` = ?'); + $result = $query->execute(array($fileId)); + $row = $result->fetchRow(); + return substr($row['path'], 5); + } } diff --git a/lib/public/share.php b/lib/public/share.php index 841240692d8..55ff4d4738f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -149,64 +149,69 @@ class Share { * @note $path needs to be relative to user data dir, e.g. 'file.txt' * not '/admin/data/file.txt' */ - public static function getUsersSharingFile( $source, $includeOwner = 0 ) { - //TODO get also the recipients from folders which are shared above the current file - // Fetch all shares of this file path from DB - $query = \OC_DB::prepare( - 'SELECT share_with - FROM - `*PREFIX*share` - WHERE - item_source = ? AND share_type = ? AND uid_owner = ?' - ); - - $result = $query->execute( array( $source, self::SHARE_TYPE_USER, \OCP\User::getUser() ) ); - - if ( \OC_DB::isError( $result ) ) { - \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); - } - + public static function getUsersSharingFile( $path, $includeOwner = 0 ) { + + $user = \OCP\User::getUser(); + $path_parts = explode(DIRECTORY_SEPARATOR, trim($path, DIRECTORY_SEPARATOR)); + $path = ''; $shares = array(); - while( $row = $result->fetchRow() ) { - $shares[] = $row['share_with']; - } - - // We also need to take group shares into account - - $query = \OC_DB::prepare( - 'SELECT share_with - FROM - `*PREFIX*share` - WHERE - item_source = ? AND share_type = ? AND uid_owner = ?' - ); + foreach ($path_parts as $p) { + $path .= '/'.$p; + $meta = \OC\Files\Filesystem::getFileInfo(\OC_Filesystem::normalizePath($path)); + $source = $meta['fileid']; - $result = $query->execute( array( $source, self::SHARE_TYPE_GROUP, \OCP\User::getUser() ) ); - - if ( \OC_DB::isError( $result ) ) { - \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); - } - - while( $row = $result->fetchRow() ) { - $usersInGroup = \OC_Group::usersInGroup($row['share_with']); - $shares = array_merge($shares, $usersInGroup); + // Fetch all shares of this file path from DB + $query = \OC_DB::prepare( + 'SELECT share_with + FROM + `*PREFIX*share` + WHERE + item_source = ? AND share_type = ? AND uid_owner = ?' + ); + + $result = $query->execute( array( $source, self::SHARE_TYPE_USER, $user ) ); + + if ( \OC_DB::isError( $result ) ) { + \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); + } + + while( $row = $result->fetchRow() ) { + $shares[] = $row['share_with']; + } + + // We also need to take group shares into account + + $query = \OC_DB::prepare( + 'SELECT share_with + FROM + `*PREFIX*share` + WHERE + item_source = ? AND share_type = ? AND uid_owner = ?' + ); + + $result = $query->execute( array( $source, self::SHARE_TYPE_GROUP, $user ) ); + + if ( \OC_DB::isError( $result ) ) { + \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); + } + + while( $row = $result->fetchRow() ) { + $usersInGroup = \OC_Group::usersInGroup($row['share_with']); + $shares = array_merge($shares, $usersInGroup); + } } - + if ( ! empty( $shares ) ) { // Include owner in list of users, if requested if ( $includeOwner == 1 ) { - $shares[] = \OCP\User::getUser(); + $shares[] = $user; } - return array_unique($shares); - } else { - return false; - } - + } /** -- cgit v1.2.3 From a692264fa416fec44d774bd955a06a65c7c0d158 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Tue, 12 Feb 2013 17:00:33 +0100 Subject: add option to keep duplicates in the list of users with access to a file, e.g. for the unshare operation we need to know if access was granted more than once, for example as group share and as individual share --- apps/files_encryption/hooks/hooks.php | 6 +++--- apps/files_encryption/lib/proxy.php | 11 ++--------- lib/public/share.php | 17 +++++++++++------ 3 files changed, 16 insertions(+), 18 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index ffd3e4544f1..5e06948aa50 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -182,7 +182,7 @@ class Hooks { $path = Util::getFilePath($params['itemSource']); - $shares = \OCP\Share::getUsersSharingFile( $path, 1 ); + $shares = \OCP\Share::getUsersSharingFile( $path, true ); return Crypt::encKeyfileToMultipleUsers($shares, $path); @@ -194,11 +194,11 @@ class Hooks { public static function preUnshare( $params ) { $path = Util::getFilePath($params['itemSource']); - $shares = \OCP\Share::getUsersSharingFile( $path, 1 ); + $shares = \OCP\Share::getUsersSharingFile( $path, true, false ); // remove the user from the list from which the file will be unshared unset($shares[$params['shareWith']]); - return Crypt::encKeyfileToMultipleUsers($shares, $path ); + return Crypt::encKeyfileToMultipleUsers(array_unique($shares), $path ); } /** diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 40ac411539b..3e4178e8a87 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -118,15 +118,8 @@ class Proxy extends \OC_FileProxy { // $fileOwner = \OC\Files\Filesystem::getOwner( $path ); // List everyone sharing the file - $shares = \OCP\Share::getUsersSharingFile( $filePath, 1 ); - - $userIds = array(); - - foreach ( $shares as $share ) { - - $userIds[] = $share['userId']; - - } + //TODO check, is this path always the path to the source file? + $userIds = \OCP\Share::getUsersSharingFile( $filePath, true ); $publicKeys = Keymanager::getPublicKeys( $rootView, $userIds ); diff --git a/lib/public/share.php b/lib/public/share.php index 55ff4d4738f..68f5e93baa7 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -145,11 +145,14 @@ class Share { /** * @brief Find which users can access a shared item - * @return bool / array + * @param $path to the file + * @param include owner to the list of users with access to the file + * @param remove duplicates in the result + * @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, $includeOwner = 0 ) { + public static function getUsersSharingFile( $path, $includeOwner = false, $removeDuplicates = true ) { $user = \OCP\User::getUser(); $path_parts = explode(DIRECTORY_SEPARATOR, trim($path, DIRECTORY_SEPARATOR)); @@ -204,14 +207,16 @@ class Share { if ( ! empty( $shares ) ) { // Include owner in list of users, if requested - if ( $includeOwner == 1 ) { + if ( $includeOwner ) { $shares[] = $user; } + } + + if ( $removeDuplicates ) return array_unique($shares); - } else { - return false; + else { + return $shares; } - } /** -- cgit v1.2.3 From 4952dfe95657ba52f1b39f958100659539831ba8 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Wed, 13 Feb 2013 14:56:39 +0100 Subject: add post_unshare hook, also add public link shares to the list of user with access to a file --- apps/files_encryption/appinfo/app.php | 2 +- apps/files_encryption/hooks/hooks.php | 9 ++++----- apps/files_encryption/lib/crypt.php | 4 +++- lib/public/share.php | 35 ++++++++++++++++++++++++++++------- 4 files changed, 36 insertions(+), 14 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index f83109a18ea..932e8855d07 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -16,7 +16,7 @@ OCP\Util::connectHook( 'OC_User', 'pre_setPassword','OCA\Encryption\Hooks', 'set // Sharing-related hooks OCP\Util::connectHook( 'OCP\Share', 'post_shared', 'OCA\Encryption\Hooks', 'postShared' ); -OCP\Util::connectHook( 'OCP\Share', 'pre_unshare', 'OCA\Encryption\Hooks', 'preUnshare' ); +OCP\Util::connectHook( 'OCP\Share', 'post_unshare', 'OCA\Encryption\Hooks', 'postUnshare' ); OCP\Util::connectHook( 'OCP\Share', 'pre_unshareAll', 'OCA\Encryption\Hooks', 'preUnshareAll' ); // Webdav-related hooks diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 5e06948aa50..ae05ba78012 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -176,6 +176,8 @@ class Hooks { //TODO: We don't deal with shared folder yet, need to recursively update every file in the folder + if ($params['shareType'] == \OCP\Share::SHARE_TYPE_LINK) + $view = new \OC_FilesystemView( '/' ); $userId = \OCP\User::getUser(); $util = new Util( $view, $userId ); @@ -191,12 +193,9 @@ class Hooks { /** * @brief */ - public static function preUnshare( $params ) { - + public static function postUnshare( $params ) { $path = Util::getFilePath($params['itemSource']); - $shares = \OCP\Share::getUsersSharingFile( $path, true, false ); - // remove the user from the list from which the file will be unshared - unset($shares[$params['shareWith']]); + $shares = \OCP\Share::getUsersSharingFile( $path, true ); return Crypt::encKeyfileToMultipleUsers(array_unique($shares), $path ); } diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index ba9f0cb9a2a..0f465d7d95a 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -450,7 +450,9 @@ class Crypt { * @returns encrypted file */ public static function keyEncrypt( $plainContent, $publicKey ) { - openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey ); + + if (openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey )) error_log("feinifeine"); else error_log("ups"); + return $encryptedContent; } diff --git a/lib/public/share.php b/lib/public/share.php index 68f5e93baa7..f691ae9b39f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -147,7 +147,6 @@ class Share { * @brief Find which users can access a shared item * @param $path to the file * @param include owner to the list of users with access to the file - * @param remove duplicates in the result * @return array * @note $path needs to be relative to user data dir, e.g. 'file.txt' * not '/admin/data/file.txt' @@ -203,6 +202,25 @@ class Share { $usersInGroup = \OC_Group::usersInGroup($row['share_with']); $shares = array_merge($shares, $usersInGroup); } + + //check for public link shares + $query = \OC_DB::prepare( + 'SELECT share_with + FROM + `*PREFIX*share` + WHERE + item_source = ? AND share_type = ? AND uid_owner = ?' + ); + + $result = $query->execute( array( $source, self::SHARE_TYPE_LINK, $user ) ); + + if ( \OC_DB::isError( $result ) ) { + \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); + } + + if ($result->fetchRow()) { + $shares[] = self::SHARE_TYPE_LINK; + } } if ( ! empty( $shares ) ) { @@ -212,11 +230,8 @@ class Share { } } - if ( $removeDuplicates ) - return array_unique($shares); - else { - return $shares; - } + return array_unique($shares); + } /** @@ -475,8 +490,14 @@ class Share { 'itemSource' => $itemSource, 'shareType' => $shareType, 'shareWith' => $shareWith, - )); + )); self::delete($item['id']); + \OC_Hook::emit('OCP\Share', 'post_unshare', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + )); return true; } return false; -- cgit v1.2.3 From 9356f9a6bf6e9bd048e31e787d5fcb621de8eebc Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Wed, 13 Feb 2013 17:23:27 +0100 Subject: add post_unshareALll hook, update recursively all keyfiles if a folder was shared/unshared --- apps/files_encryption/appinfo/app.php | 2 +- apps/files_encryption/hooks/hooks.php | 15 ++++++--------- apps/files_encryption/lib/crypt.php | 36 ++++++++++++++++++++++++++++++++++- lib/public/share.php | 5 +++++ 4 files changed, 47 insertions(+), 11 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index 932e8855d07..6778e1faa3c 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -17,7 +17,7 @@ OCP\Util::connectHook( 'OC_User', 'pre_setPassword','OCA\Encryption\Hooks', 'set // Sharing-related hooks OCP\Util::connectHook( 'OCP\Share', 'post_shared', 'OCA\Encryption\Hooks', 'postShared' ); OCP\Util::connectHook( 'OCP\Share', 'post_unshare', 'OCA\Encryption\Hooks', 'postUnshare' ); -OCP\Util::connectHook( 'OCP\Share', 'pre_unshareAll', 'OCA\Encryption\Hooks', 'preUnshareAll' ); +OCP\Util::connectHook( 'OCP\Share', 'post_unshareAll', 'OCA\Encryption\Hooks', 'postUnshareAll' ); // Webdav-related hooks OCP\Util::connectHook( 'OC_Webdav_Properties', 'update', 'OCA\Encryption\Hooks', 'updateKeyfile' ); diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index ae05ba78012..34ed11c7e24 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -176,17 +176,13 @@ class Hooks { //TODO: We don't deal with shared folder yet, need to recursively update every file in the folder - if ($params['shareType'] == \OCP\Share::SHARE_TYPE_LINK) - $view = new \OC_FilesystemView( '/' ); $userId = \OCP\User::getUser(); $util = new Util( $view, $userId ); $path = Util::getFilePath($params['itemSource']); - $shares = \OCP\Share::getUsersSharingFile( $path, true ); - - return Crypt::encKeyfileToMultipleUsers($shares, $path); + return Crypt::updateKeyfile($path); } @@ -195,16 +191,17 @@ class Hooks { */ public static function postUnshare( $params ) { $path = Util::getFilePath($params['itemSource']); - $shares = \OCP\Share::getUsersSharingFile( $path, true ); - return Crypt::encKeyfileToMultipleUsers(array_unique($shares), $path ); + return Crypt::updateKeyfile($path); } /** * @brief */ - public static function preUnshareAll( $params ) { - return Crypt::encKeyfileToMultipleUsers(array(\OCP\User::getUser()), Util::getFilePath($params['itemSource'])); + public static function postUnshareAll( $params ) { + $path = Util::getFilePath($params['itemSource']); + + return Crypt::updateKeyfile($path); } } diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 0f465d7d95a..18e9535bf35 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -750,7 +750,7 @@ class Crypt { * @param $users list of users which should be able to access the file * @param $fileTarget target of the file */ - public static function encKeyfileToMultipleUsers($users, $filePath) { + private static function encKeyfileToMultipleUsers($users, $filePath) { $view = new \OC_FilesystemView( '/' ); $owner = \OCP\User::getUser(); $util = new Util( $view, $userId ); @@ -810,4 +810,38 @@ class Crypt { return true; } + + /** + * @brief update keyfile encryption for given path and all sub folders/files + * @param path which needs to be updated + * @return bool success + */ + public static function updateKeyfile($path) { + + $filesView = \OCP\Files::getStorage('files'); + + $result = true; + + if ( $filesView->is_dir($path) ) { + $content = $filesView->getDirectoryContent($path); + foreach ( $content as $c) { + $path = substr($c['path'], 5); + if ( $filesView->is_dir($path) ) { + error_log("dive into $path"); + $result &= self::updateKeyfile($path); + } else { + error_log("encKeyFileToMultipleUsers $path"); + $shares = \OCP\Share::getUsersSharingFile( $path, true ); + $result &= self::encKeyfileToMultipleUsers($shares, $path); + } + } + } else { + error_log("encKeyFileToMultipleUsers single file: " . $path); + $shares = \OCP\Share::getUsersSharingFile( $path, true ); + $result = self::encKeyfileToMultipleUsers($shares, $path); + } + + return $result; + + } } \ No newline at end of file diff --git a/lib/public/share.php b/lib/public/share.php index f691ae9b39f..d1297c6e59e 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -520,6 +520,11 @@ class Share { foreach ($shares as $share) { self::delete($share['id']); } + \OC_Hook::emit('OCP\Share', 'post_unshareAll', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'shares' => $shares + )); return true; } return false; -- cgit v1.2.3 From 5005195db005fd0d7c8fdf1a73e12c4a4619acb9 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Wed, 13 Feb 2013 17:57:45 +0100 Subject: create keypair for ownCloud with empty passphrase, will be used for public link shares --- apps/files_encryption/lib/crypt.php | 5 +---- apps/files_encryption/lib/session.php | 28 ++++++++++++++++++++++++++++ lib/public/share.php | 2 +- 3 files changed, 30 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 18e9535bf35..2e5912a8683 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -763,7 +763,7 @@ class Crypt { $util = new Util( $view, $user ); // Check that the user is encryption capable - if ( $util->ready() ) { + if ( $util->ready() && $user == 'ownCloud' ) { // Construct array of just UIDs for Keymanager{} $userIds[] = $user; @@ -827,16 +827,13 @@ class Crypt { foreach ( $content as $c) { $path = substr($c['path'], 5); if ( $filesView->is_dir($path) ) { - error_log("dive into $path"); $result &= self::updateKeyfile($path); } else { - error_log("encKeyFileToMultipleUsers $path"); $shares = \OCP\Share::getUsersSharingFile( $path, true ); $result &= self::encKeyfileToMultipleUsers($shares, $path); } } } else { - error_log("encKeyFileToMultipleUsers single file: " . $path); $shares = \OCP\Share::getUsersSharingFile( $path, true ); $result = self::encKeyfileToMultipleUsers($shares, $path); } diff --git a/apps/files_encryption/lib/session.php b/apps/files_encryption/lib/session.php index 769a40b359f..ebf7edcd715 100644 --- a/apps/files_encryption/lib/session.php +++ b/apps/files_encryption/lib/session.php @@ -27,6 +27,34 @@ namespace OCA\Encryption; */ class Session { + + /** + * @brief if session is started, check if ownCloud key pair is set up, if not create it + * + * The ownCloud key pair is used to allow public link sharing even if encryption is enabled + */ + public function __construct() { + $view = new \OC\Files\View('/'); + if (!$view->is_dir('owncloud_private_key')) { + $view->mkdir('owncloud_private_key'); + } + + if (!$view->file_exists("/public-keys/owncloud.public.key") || !$view->file_exists("/owncloud_private_key/owncloud.private.key") ) { + + $keypair = Crypt::createKeypair(); + + \OC_FileProxy::$enabled = false; + // Save public key + $view->file_put_contents( '/public-keys/owncloud.public.key', $keypair['publicKey'] ); + // Encrypt private key empthy passphrase + $encryptedPrivateKey = Crypt::symmetricEncryptFileContent( $keypair['privateKey'], '' ); + // Save private key + error_log("encrypted private key: " . $encryptedPrivateKey ); + $view->file_put_contents( '/owncloud_private_key/owncloud.private.key', $encryptedPrivateKey ); + + \OC_FileProxy::$enabled = true; + } + } /** * @brief Sets user private key to session diff --git a/lib/public/share.php b/lib/public/share.php index d1297c6e59e..720337c3c38 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -219,7 +219,7 @@ class Share { } if ($result->fetchRow()) { - $shares[] = self::SHARE_TYPE_LINK; + $shares[] = "ownCloud"; } } -- cgit v1.2.3 From 40efeb91878e72eb5c2eb1ab50574cda9435e0fa Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Fri, 22 Feb 2013 16:02:27 +0100 Subject: isSharedFile() doesn't detect all shares, just use getUsersSharingFile() directly either you get a list of users or not --- apps/files_encryption/lib/proxy.php | 6 +----- lib/public/share.php | 34 ---------------------------------- 2 files changed, 1 insertion(+), 39 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 9e6a11d9d48..ebe09dc075a 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -113,14 +113,10 @@ class Proxy extends \OC_FileProxy { $encData = Crypt::symmetricEncryptFileContentKeyfile( $data ); // Check if the keyfile needs to be shared - if ( \OCP\Share::isSharedFile( $filePath ) ) { + if ( ($userIds = \OCP\Share::getUsersSharingFile( $filePath, true )) ) { // $fileOwner = \OC\Files\Filesystem::getOwner( $path ); - // List everyone sharing the file - //TODO check, is this path always the path to the source file? - $userIds = \OCP\Share::getUsersSharingFile( $filePath, true ); - $publicKeys = Keymanager::getPublicKeys( $rootView, $userIds ); \OC_FileProxy::$enabled = false; diff --git a/lib/public/share.php b/lib/public/share.php index 720337c3c38..7630c8ae6cb 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -108,41 +108,7 @@ class Share { return $path; } - - public static function isSharedFile( $path ) { - - $fPath = self::prepFileTarget( $path ); - - // Fetch all shares of this file path from DB - $query = \OC_DB::prepare( - 'SELECT - id - FROM - `*PREFIX*share` - WHERE - file_target = ?' - ); - - $result = $query->execute( array( $fPath ) ); - - if ( \OC_DB::isError( $result ) ) { - - \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage( $result ) . ', path=' . $fPath, \OC_Log::ERROR ); - - } - - if ( $result->fetchRow() !== false ) { - return true; - - } else { - - return false; - - } - - } - /** * @brief Find which users can access a shared item * @param $path to the file -- cgit v1.2.3 From d4f98923b9be7f3e6805573085bf9fedfaff836c Mon Sep 17 00:00:00 2001 From: herbrechtsmeier Date: Sat, 23 Feb 2013 12:58:06 +0100 Subject: Overwrite host and webroot when forcessl is enabled This patch enables the use of forcessl together with a multiple domains reverse SSL proxy (owncloud/core#1099) which have different hostname and webroot for http and https access. The code assumes that the ssl proxy (https) hostname and webroot is configured via overwritehost and overwritewebroot. --- lib/request.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/request.php b/lib/request.php index 9f74cf9beb5..859276a12a3 100755 --- a/lib/request.php +++ b/lib/request.php @@ -11,9 +11,10 @@ class OC_Request { * @brief Check overwrite condition * @returns true/false */ - private static function isOverwriteCondition() { + private static function isOverwriteCondition($type = '') { $regex = '/' . OC_Config::getValue('overwritecondaddr', '') . '/'; - return $regex === '//' or preg_match($regex, $_SERVER['REMOTE_ADDR']) === 1; + return $regex === '//' or preg_match($regex, $_SERVER['REMOTE_ADDR']) === 1 + or ($type <> 'protocol' and OC_Config::getValue('forcessl', false)); } /** @@ -52,7 +53,7 @@ class OC_Request { * Returns the server protocol. It respects reverse proxy servers and load balancers */ public static function serverProtocol() { - if(OC_Config::getValue('overwriteprotocol', '')<>'' and self::isOverwriteCondition()) { + if(OC_Config::getValue('overwriteprotocol', '')<>'' and self::isOverwriteCondition('protocol')) { return OC_Config::getValue('overwriteprotocol'); } if (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) { -- cgit v1.2.3 From ecb9d37b55f5c55545a2c0ec475e22d71bd4dcc8 Mon Sep 17 00:00:00 2001 From: herbrechtsmeier Date: Sat, 9 Mar 2013 11:39:20 +0100 Subject: request.php: add type check to the not empty check of a string The not equal comparison (<>) of a variable with an empty string could lead to false positive results as the compare do not check the type and thereby could not make sure that the checked variable is a string. The usage of the not identical comparison operator (!==) make sure that the variable is a string and not empty. --- lib/request.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/request.php b/lib/request.php index 859276a12a3..4d8380eb9ac 100755 --- a/lib/request.php +++ b/lib/request.php @@ -14,7 +14,7 @@ class OC_Request { private static function isOverwriteCondition($type = '') { $regex = '/' . OC_Config::getValue('overwritecondaddr', '') . '/'; return $regex === '//' or preg_match($regex, $_SERVER['REMOTE_ADDR']) === 1 - or ($type <> 'protocol' and OC_Config::getValue('forcessl', false)); + or ($type !== 'protocol' and OC_Config::getValue('forcessl', false)); } /** @@ -28,7 +28,7 @@ class OC_Request { if(OC::$CLI) { return 'localhost'; } - if(OC_Config::getValue('overwritehost', '')<>'' and self::isOverwriteCondition()) { + if(OC_Config::getValue('overwritehost', '') !== '' and self::isOverwriteCondition()) { return OC_Config::getValue('overwritehost'); } if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) { @@ -53,7 +53,7 @@ class OC_Request { * Returns the server protocol. It respects reverse proxy servers and load balancers */ public static function serverProtocol() { - if(OC_Config::getValue('overwriteprotocol', '')<>'' and self::isOverwriteCondition('protocol')) { + if(OC_Config::getValue('overwriteprotocol', '') !== '' and self::isOverwriteCondition('protocol')) { return OC_Config::getValue('overwriteprotocol'); } if (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) { @@ -77,7 +77,7 @@ class OC_Request { */ public static function requestUri() { $uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''; - if (OC_Config::getValue('overwritewebroot', '') <> '' and self::isOverwriteCondition()) { + if (OC_Config::getValue('overwritewebroot', '') !== '' and self::isOverwriteCondition()) { $uri = self::scriptName() . substr($uri, strlen($_SERVER['SCRIPT_NAME'])); } return $uri; @@ -92,7 +92,7 @@ class OC_Request { */ public static function scriptName() { $name = $_SERVER['SCRIPT_NAME']; - if (OC_Config::getValue('overwritewebroot', '') <> '' and self::isOverwriteCondition()) { + if (OC_Config::getValue('overwritewebroot', '') !== '' and self::isOverwriteCondition()) { $serverroot = str_replace("\\", '/', substr(__DIR__, 0, -4)); $suburi = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen($serverroot))); $name = OC_Config::getValue('overwritewebroot', '') . $suburi; -- cgit v1.2.3 From 033c94d076e3340a4a472d1b3f61ade5f22009ea Mon Sep 17 00:00:00 2001 From: Valerio Ponte Date: Wed, 20 Mar 2013 22:37:02 +0100 Subject: fixed xsendfile zip generation race condition --- lib/files.php | 18 ++++++++---------- lib/helper.php | 24 ++++++++++++++---------- 2 files changed, 22 insertions(+), 20 deletions(-) (limited to 'lib') diff --git a/lib/files.php b/lib/files.php index 04ba51d9d24..ab7fa1ed096 100644 --- a/lib/files.php +++ b/lib/files.php @@ -59,11 +59,7 @@ class OC_Files { $executionTime = intval(ini_get('max_execution_time')); set_time_limit(0); $zip = new ZipArchive(); - if ($xsendfile) { - $filename = OC_Helper::tmpFileNoClean('.zip'); - }else{ - $filename = OC_Helper::tmpFile('.zip'); - } + $filename = OC_Helper::tmpFile('.zip'); if ($zip->open($filename, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE)!==true) { exit("cannot open <$filename>\n"); } @@ -78,6 +74,9 @@ class OC_Files { } } $zip->close(); + if ($xsendfile) { + $filename = OC_Helper::moveToNoClean($filename); + } $basename = basename($dir); if ($basename) { $name = $basename . '.zip'; @@ -91,17 +90,16 @@ class OC_Files { $executionTime = intval(ini_get('max_execution_time')); set_time_limit(0); $zip = new ZipArchive(); - if ($xsendfile) { - $filename = OC_Helper::tmpFileNoClean('.zip'); - }else{ - $filename = OC_Helper::tmpFile('.zip'); - } + $filename = OC_Helper::tmpFile('.zip'); if ($zip->open($filename, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE)!==true) { exit("cannot open <$filename>\n"); } $file = $dir . '/' . $files; self::zipAddDir($file, $zip); $zip->close(); + if ($xsendfile) { + $filename = OC_Helper::moveToNoClean($filename); + } $name = $files . '.zip'; set_time_limit($executionTime); } else { diff --git a/lib/helper.php b/lib/helper.php index 73484ad913f..d178c3dc50b 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -541,13 +541,15 @@ class OC_Helper { } /** - * create a temporary file with an unique filename. It will not be deleted - * automatically - * @param string $postfix - * @return string + * move a file to oc-noclean temp dir + * @param string $filename + * @return mixed * */ - public static function tmpFileNoClean($postfix='') { + public static function moveToNoClean($filename='') { + if ($filename == '') { + return false; + } $tmpDirNoClean=get_temp_dir().'/oc-noclean/'; if (!file_exists($tmpDirNoClean) || !is_dir($tmpDirNoClean)) { if (file_exists($tmpDirNoClean)) { @@ -555,10 +557,12 @@ class OC_Helper { } mkdir($tmpDirNoClean); } - $file=$tmpDirNoClean.md5(time().rand()).$postfix; - $fh=fopen($file, 'w'); - fclose($fh); - return $file; + $newname=$tmpDirNoClean.basename($filename); + if (rename($filename, $newname)) { + return $newname; + } else { + return false; + } } /** @@ -597,7 +601,7 @@ class OC_Helper { } /** - * remove all files created by self::tmpFileNoClean + * remove all files in PHP /oc-noclean temp dir */ public static function cleanTmpNoClean() { $tmpDirNoCleanFile=get_temp_dir().'/oc-noclean/'; -- cgit v1.2.3 From 3213c47188cc96d84a1108261ab83a57882cd51c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 08:18:02 +0100 Subject: Use count SQL to check for user existance --- lib/user/database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/user/database.php b/lib/user/database.php index 210c7f3e1eb..5eff8f199be 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -237,13 +237,13 @@ class OC_User_Database extends OC_User_Backend { * @return boolean */ public function userExists($uid) { - $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); + $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->numRows() > 0; + return $result->fetchColumn() > 0; } /** -- cgit v1.2.3 From fa8214ecc99ff8de41b748edffed1f11155e53f8 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 6 Apr 2013 15:38:30 +0200 Subject: Use the MDB2 function to get the count result --- lib/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/user/database.php b/lib/user/database.php index 5eff8f199be..ea938790d22 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -243,7 +243,7 @@ class OC_User_Database extends OC_User_Backend { OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; } - return $result->fetchColumn() > 0; + return $result->fetchOne() > 0; } /** -- cgit v1.2.3 From 16b513e4dc4fd65e77da7be37e99fb5c00656704 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 9 Apr 2013 12:22:55 +0200 Subject: added correct check for gd and check for php-intl --- lib/util.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 37fb1bd9d06..348163d9a29 100755 --- a/lib/util.php +++ b/lib/util.php @@ -247,11 +247,16 @@ class OC_Util { 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } - if(!function_exists('imagepng')) { + if(!extension_loaded('gd') || !function_exists('gd_info')) { $errors[]=array('error'=>'PHP module GD is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } + if(!class_exists('Locale')) { + $errors[]=array('error'=>'PHP module intl is not installed.', + 'hint'=>'Please ask your server administrator to install the module.'); + $web_server_restart= false; + } if(!function_exists('gzencode')) { $errors[]=array('error'=>'PHP module zlib is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); -- cgit v1.2.3 From 2180a4c4205466e34888f689bdbf1c7624c3ad87 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 12 Apr 2013 00:58:14 +0200 Subject: -L10N: cache the result of findLanguage --- lib/l10n.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib') diff --git a/lib/l10n.php b/lib/l10n.php index 1e07a9b9557..315e326b292 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -298,10 +298,16 @@ class OC_L10N{ $temp = explode(';', $i); $temp[0] = str_replace('-', '_', $temp[0]); if( ($key = array_search($temp[0], $available)) !== false) { + if (is_null($app)) { + self::$language = $available[$key]; + } return $available[$key]; } foreach($available as $l) { if ( $temp[0] == substr($l, 0, 2) ) { + if (is_null($app)) { + self::$language = $l; + } return $l; } } -- cgit v1.2.3 From d759dca2038c669a59168a168a1e047392a157b4 Mon Sep 17 00:00:00 2001 From: kondou Date: Sat, 13 Apr 2013 15:56:01 +0200 Subject: Handle empty datafolder better. If datafolder is erased, the default value will be shown as a placeholder. If installation is submitted without a datafolder the default value will be used. --- core/templates/installation.php | 1 + lib/setup.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/core/templates/installation.php b/core/templates/installation.php index c70903cba55..79510042307 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -63,6 +63,7 @@
diff --git a/lib/setup.php b/lib/setup.php index 7082f0b2afd..769fae11656 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -37,7 +37,7 @@ class OC_Setup { $error[] = $l->t('Set an admin password.'); } if(empty($options['directory'])) { - $error[] = $l->t('Specify a data folder.'); + $options['directory'] = OC::$SERVERROOT."/data"; } if($dbtype == 'mysql' or $dbtype == 'pgsql' or $dbtype == 'oci' or $dbtype == 'mssql') { //mysql and postgresql needs more config options -- cgit v1.2.3 From 2fa34d6772ae578911dca17bbb0dc7a755024d05 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 5 Apr 2013 11:27:08 +0200 Subject: Make FileCache upgrade more robust, fixes #2650 --- lib/files/cache/legacy.php | 22 +++++++++++++++++----- lib/files/cache/upgrade.php | 4 ++++ 2 files changed, 21 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/files/cache/legacy.php b/lib/files/cache/legacy.php index 9556a2639a3..b8e2548639b 100644 --- a/lib/files/cache/legacy.php +++ b/lib/files/cache/legacy.php @@ -80,7 +80,7 @@ class Legacy { } $result = $query->execute(array($path)); $data = $result->fetchRow(); - $data['etag'] = $this->getEtag($data['path']); + $data['etag'] = $this->getEtag($data['path'], $data['user']); return $data; } @@ -90,12 +90,24 @@ class Legacy { * @param type $path * @return string */ - function getEtag($path) { + function getEtag($path, $user = null) { static $query = null; - list(, $user, , $relativePath) = explode('/', $path, 4); - if (is_null($relativePath)) { + + $pathDetails = explode('/', $path, 4); + if((!$user) && !isset($pathDetails[1])) { + //no user!? Too odd, return empty string. + return ''; + } else if(!$user) { + //guess user from path, if no user passed. + $user = $pathDetails[1]; + } + + if(!isset($pathDetails[3]) || is_null($pathDetails[3])) { $relativePath = ''; + } else { + $relativePath = $pathDetails[3]; } + if(is_null($query)){ $query = \OC_DB::prepare('SELECT `propertyvalue` FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = \'{DAV:}getetag\''); } @@ -118,7 +130,7 @@ class Legacy { $result = $query->execute(array($id)); $data = $result->fetchAll(); foreach ($data as $i => $item) { - $data[$i]['etag'] = $this->getEtag($item['path']); + $data[$i]['etag'] = $this->getEtag($item['path'], $item['user']); } return $data; } diff --git a/lib/files/cache/upgrade.php b/lib/files/cache/upgrade.php index 797f4e6ba8c..ca044ba81de 100644 --- a/lib/files/cache/upgrade.php +++ b/lib/files/cache/upgrade.php @@ -127,6 +127,10 @@ class Upgrade { * @return array */ function getNewData($data) { + //Make sure there is a path, otherwise we can do nothing. + if(!isset($data['path'])) { + return false; + } $newData = $data; /** * @var \OC\Files\Storage\Storage $storage -- cgit v1.2.3 From d0b3e8aceba231b4206677b5000216dfc2b75f33 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 16 Apr 2013 02:17:30 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ja_JP.php | 2 +- apps/files/l10n/pt_PT.php | 1 + apps/files/l10n/uk.php | 1 + apps/files_sharing/l10n/pt_PT.php | 4 +- apps/files_trashbin/l10n/pt_PT.php | 4 +- apps/user_ldap/l10n/fr.php | 2 +- apps/user_ldap/l10n/ka_GE.php | 71 ++++++++++++++++- core/l10n/ar.php | 6 +- core/l10n/bn_BD.php | 6 +- core/l10n/ca.php | 6 +- core/l10n/cs_CZ.php | 6 +- core/l10n/da.php | 6 +- core/l10n/de.php | 6 +- core/l10n/de_DE.php | 6 +- core/l10n/eo.php | 6 +- core/l10n/es.php | 6 +- core/l10n/es_AR.php | 6 +- core/l10n/eu.php | 6 +- core/l10n/fa.php | 6 +- core/l10n/fi_FI.php | 6 +- core/l10n/fr.php | 6 +- core/l10n/gl.php | 6 +- core/l10n/he.php | 6 +- core/l10n/hr.php | 6 +- core/l10n/hu_HU.php | 6 +- core/l10n/is.php | 6 +- core/l10n/it.php | 6 +- core/l10n/ja_JP.php | 8 +- core/l10n/ko.php | 6 +- core/l10n/lb.php | 6 +- core/l10n/lt_LT.php | 6 +- core/l10n/lv.php | 6 +- core/l10n/mk.php | 6 +- core/l10n/ms_MY.php | 4 +- core/l10n/my_MM.php | 6 +- core/l10n/nb_NO.php | 6 +- core/l10n/nl.php | 6 +- core/l10n/oc.php | 6 +- core/l10n/pl.php | 6 +- core/l10n/pt_BR.php | 6 +- core/l10n/pt_PT.php | 6 +- core/l10n/ro.php | 6 +- core/l10n/ru.php | 6 +- core/l10n/ru_RU.php | 6 +- core/l10n/si_LK.php | 6 +- core/l10n/sk_SK.php | 6 +- core/l10n/sl.php | 6 +- core/l10n/sq.php | 6 +- core/l10n/sr.php | 6 +- core/l10n/sv.php | 6 +- core/l10n/ta_LK.php | 6 +- core/l10n/te.php | 4 +- core/l10n/th_TH.php | 6 +- core/l10n/tr.php | 6 +- core/l10n/uk.php | 8 +- core/l10n/ur_PK.php | 6 +- core/l10n/vi.php | 6 +- core/l10n/zh_CN.GB2312.php | 6 +- core/l10n/zh_CN.php | 6 +- core/l10n/zh_HK.php | 4 +- l10n/af_ZA/core.po | 62 ++++++++------- l10n/af_ZA/files.po | 4 +- l10n/af_ZA/files_encryption.po | 4 +- l10n/af_ZA/files_external.po | 8 +- l10n/af_ZA/files_sharing.po | 16 ++-- l10n/af_ZA/files_trashbin.po | 4 +- l10n/af_ZA/files_versions.po | 8 +- l10n/af_ZA/lib.po | 4 +- l10n/af_ZA/settings.po | 32 ++++---- l10n/af_ZA/user_ldap.po | 120 ++++++++++++++-------------- l10n/af_ZA/user_webdavauth.po | 8 +- l10n/ar/core.po | 64 +++++++-------- l10n/ar/files.po | 4 +- l10n/ar/files_encryption.po | 6 +- l10n/ar/files_external.po | 8 +- l10n/ar/files_sharing.po | 16 ++-- l10n/ar/files_trashbin.po | 4 +- l10n/ar/files_versions.po | 8 +- l10n/ar/lib.po | 6 +- l10n/ar/settings.po | 24 +++--- l10n/ar/user_ldap.po | 120 ++++++++++++++-------------- l10n/ar/user_webdavauth.po | 6 +- l10n/be/core.po | 94 +++++++++++----------- l10n/be/files.po | 4 +- l10n/be/files_encryption.po | 6 +- l10n/be/files_external.po | 8 +- l10n/be/files_sharing.po | 16 ++-- l10n/be/files_trashbin.po | 4 +- l10n/be/files_versions.po | 8 +- l10n/be/lib.po | 50 ++++++------ l10n/be/settings.po | 32 ++++---- l10n/be/user_ldap.po | 120 ++++++++++++++-------------- l10n/be/user_webdavauth.po | 6 +- l10n/bg_BG/core.po | 56 ++++++------- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_encryption.po | 4 +- l10n/bg_BG/files_external.po | 8 +- l10n/bg_BG/files_sharing.po | 16 ++-- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/files_versions.po | 8 +- l10n/bg_BG/lib.po | 6 +- l10n/bg_BG/settings.po | 24 +++--- l10n/bg_BG/user_ldap.po | 120 ++++++++++++++-------------- l10n/bg_BG/user_webdavauth.po | 6 +- l10n/bn_BD/core.po | 62 +++++++-------- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_encryption.po | 4 +- l10n/bn_BD/files_external.po | 8 +- l10n/bn_BD/files_sharing.po | 16 ++-- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/files_versions.po | 8 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 24 +++--- l10n/bn_BD/user_ldap.po | 4 +- l10n/bn_BD/user_webdavauth.po | 6 +- l10n/ca/core.po | 64 +++++++-------- l10n/ca/files.po | 6 +- l10n/ca/files_encryption.po | 4 +- l10n/ca/files_external.po | 10 +-- l10n/ca/files_sharing.po | 16 ++-- l10n/ca/files_trashbin.po | 4 +- l10n/ca/files_versions.po | 10 +-- l10n/ca/lib.po | 6 +- l10n/ca/settings.po | 24 +++--- l10n/ca/user_ldap.po | 6 +- l10n/ca/user_webdavauth.po | 8 +- l10n/cs_CZ/core.po | 64 +++++++-------- l10n/cs_CZ/files.po | 6 +- l10n/cs_CZ/files_encryption.po | 4 +- l10n/cs_CZ/files_external.po | 10 +-- l10n/cs_CZ/files_sharing.po | 16 ++-- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/files_versions.po | 10 +-- l10n/cs_CZ/lib.po | 6 +- l10n/cs_CZ/settings.po | 24 +++--- l10n/cs_CZ/user_ldap.po | 6 +- l10n/cs_CZ/user_webdavauth.po | 8 +- l10n/da/core.po | 64 +++++++-------- l10n/da/files.po | 4 +- l10n/da/files_encryption.po | 6 +- l10n/da/files_external.po | 10 +-- l10n/da/files_sharing.po | 16 ++-- l10n/da/files_trashbin.po | 4 +- l10n/da/files_versions.po | 6 +- l10n/da/lib.po | 6 +- l10n/da/settings.po | 24 +++--- l10n/da/user_ldap.po | 4 +- l10n/da/user_webdavauth.po | 8 +- l10n/de/core.po | 64 +++++++-------- l10n/de/files.po | 6 +- l10n/de/files_encryption.po | 6 +- l10n/de/files_external.po | 10 +-- l10n/de/files_sharing.po | 18 ++--- l10n/de/files_trashbin.po | 4 +- l10n/de/files_versions.po | 6 +- l10n/de/lib.po | 6 +- l10n/de/settings.po | 24 +++--- l10n/de/user_ldap.po | 6 +- l10n/de/user_webdavauth.po | 6 +- l10n/de_DE/core.po | 64 +++++++-------- l10n/de_DE/files.po | 6 +- l10n/de_DE/files_encryption.po | 6 +- l10n/de_DE/files_external.po | 10 +-- l10n/de_DE/files_sharing.po | 18 ++--- l10n/de_DE/files_trashbin.po | 6 +- l10n/de_DE/files_versions.po | 6 +- l10n/de_DE/lib.po | 6 +- l10n/de_DE/settings.po | 26 +++--- l10n/de_DE/user_ldap.po | 6 +- l10n/de_DE/user_webdavauth.po | 6 +- l10n/el/core.po | 42 +++++----- l10n/el/files.po | 6 +- l10n/el/files_encryption.po | 4 +- l10n/el/files_external.po | 6 +- l10n/el/files_sharing.po | 16 ++-- l10n/el/files_trashbin.po | 4 +- l10n/el/files_versions.po | 6 +- l10n/el/lib.po | 6 +- l10n/el/settings.po | 26 +++--- l10n/el/user_ldap.po | 4 +- l10n/el/user_webdavauth.po | 8 +- l10n/eo/core.po | 62 +++++++-------- l10n/eo/files.po | 4 +- l10n/eo/files_encryption.po | 4 +- l10n/eo/files_external.po | 8 +- l10n/eo/files_sharing.po | 16 ++-- l10n/eo/files_trashbin.po | 4 +- l10n/eo/files_versions.po | 6 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 24 +++--- l10n/eo/user_ldap.po | 4 +- l10n/eo/user_webdavauth.po | 8 +- l10n/es/core.po | 64 +++++++-------- l10n/es/files.po | 6 +- l10n/es/files_encryption.po | 4 +- l10n/es/files_external.po | 10 +-- l10n/es/files_sharing.po | 16 ++-- l10n/es/files_trashbin.po | 4 +- l10n/es/files_versions.po | 10 +-- l10n/es/lib.po | 6 +- l10n/es/settings.po | 24 +++--- l10n/es/user_ldap.po | 6 +- l10n/es/user_webdavauth.po | 8 +- l10n/es_AR/core.po | 64 +++++++-------- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_encryption.po | 6 +- l10n/es_AR/files_external.po | 10 +-- l10n/es_AR/files_sharing.po | 16 ++-- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/files_versions.po | 10 +-- l10n/es_AR/lib.po | 6 +- l10n/es_AR/settings.po | 24 +++--- l10n/es_AR/user_ldap.po | 6 +- l10n/es_AR/user_webdavauth.po | 8 +- l10n/et_EE/core.po | 42 +++++----- l10n/et_EE/files.po | 6 +- l10n/et_EE/files_encryption.po | 6 +- l10n/et_EE/files_external.po | 6 +- l10n/et_EE/files_sharing.po | 16 ++-- l10n/et_EE/files_trashbin.po | 6 +- l10n/et_EE/files_versions.po | 6 +- l10n/et_EE/lib.po | 6 +- l10n/et_EE/settings.po | 26 +++--- l10n/et_EE/user_ldap.po | 6 +- l10n/et_EE/user_webdavauth.po | 6 +- l10n/eu/core.po | 64 +++++++-------- l10n/eu/files.po | 4 +- l10n/eu/files_encryption.po | 6 +- l10n/eu/files_external.po | 10 +-- l10n/eu/files_sharing.po | 16 ++-- l10n/eu/files_trashbin.po | 4 +- l10n/eu/files_versions.po | 6 +- l10n/eu/lib.po | 6 +- l10n/eu/settings.po | 24 +++--- l10n/eu/user_ldap.po | 6 +- l10n/eu/user_webdavauth.po | 8 +- l10n/fa/core.po | 64 +++++++-------- l10n/fa/files.po | 6 +- l10n/fa/files_encryption.po | 6 +- l10n/fa/files_external.po | 10 +-- l10n/fa/files_sharing.po | 16 ++-- l10n/fa/files_trashbin.po | 4 +- l10n/fa/files_versions.po | 8 +- l10n/fa/lib.po | 6 +- l10n/fa/settings.po | 26 +++--- l10n/fa/user_ldap.po | 6 +- l10n/fa/user_webdavauth.po | 6 +- l10n/fi/core.po | 64 +++++++-------- l10n/fi/files.po | 4 +- l10n/fi/lib.po | 6 +- l10n/fi_FI/core.po | 64 +++++++-------- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_encryption.po | 6 +- l10n/fi_FI/files_external.po | 10 +-- l10n/fi_FI/files_sharing.po | 16 ++-- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/files_versions.po | 6 +- l10n/fi_FI/lib.po | 6 +- l10n/fi_FI/settings.po | 26 +++--- l10n/fi_FI/user_ldap.po | 6 +- l10n/fi_FI/user_webdavauth.po | 6 +- l10n/fr/core.po | 64 +++++++-------- l10n/fr/files.po | 6 +- l10n/fr/files_encryption.po | 4 +- l10n/fr/files_external.po | 10 +-- l10n/fr/files_sharing.po | 16 ++-- l10n/fr/files_trashbin.po | 4 +- l10n/fr/files_versions.po | 6 +- l10n/fr/lib.po | 6 +- l10n/fr/settings.po | 24 +++--- l10n/fr/user_ldap.po | 8 +- l10n/fr/user_webdavauth.po | 8 +- l10n/gl/core.po | 64 +++++++-------- l10n/gl/files.po | 6 +- l10n/gl/files_encryption.po | 6 +- l10n/gl/files_external.po | 10 +-- l10n/gl/files_sharing.po | 16 ++-- l10n/gl/files_trashbin.po | 4 +- l10n/gl/files_versions.po | 10 +-- l10n/gl/lib.po | 6 +- l10n/gl/settings.po | 24 +++--- l10n/gl/user_ldap.po | 6 +- l10n/gl/user_webdavauth.po | 6 +- l10n/he/core.po | 62 +++++++-------- l10n/he/files.po | 4 +- l10n/he/files_encryption.po | 4 +- l10n/he/files_external.po | 8 +- l10n/he/files_sharing.po | 16 ++-- l10n/he/files_trashbin.po | 4 +- l10n/he/files_versions.po | 8 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 24 +++--- l10n/he/user_ldap.po | 4 +- l10n/he/user_webdavauth.po | 6 +- l10n/hi/core.po | 62 ++++++++------- l10n/hi/files.po | 4 +- l10n/hi/files_encryption.po | 4 +- l10n/hi/files_external.po | 8 +- l10n/hi/files_sharing.po | 16 ++-- l10n/hi/files_trashbin.po | 4 +- l10n/hi/files_versions.po | 8 +- l10n/hi/lib.po | 4 +- l10n/hi/settings.po | 32 ++++---- l10n/hi/user_ldap.po | 120 ++++++++++++++-------------- l10n/hi/user_webdavauth.po | 6 +- l10n/hr/core.po | 62 +++++++-------- l10n/hr/files.po | 4 +- l10n/hr/files_encryption.po | 4 +- l10n/hr/files_external.po | 8 +- l10n/hr/files_sharing.po | 16 ++-- l10n/hr/files_trashbin.po | 4 +- l10n/hr/files_versions.po | 8 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 24 +++--- l10n/hr/user_ldap.po | 120 ++++++++++++++-------------- l10n/hr/user_webdavauth.po | 6 +- l10n/hu_HU/core.po | 64 +++++++-------- l10n/hu_HU/files.po | 6 +- l10n/hu_HU/files_encryption.po | 6 +- l10n/hu_HU/files_external.po | 10 +-- l10n/hu_HU/files_sharing.po | 16 ++-- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/files_versions.po | 8 +- l10n/hu_HU/lib.po | 6 +- l10n/hu_HU/settings.po | 24 +++--- l10n/hu_HU/user_ldap.po | 6 +- l10n/hu_HU/user_webdavauth.po | 8 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 8 +- l10n/hy/files_trashbin.po | 4 +- l10n/hy/settings.po | 32 ++++---- l10n/ia/core.po | 62 ++++++++------- l10n/ia/files.po | 4 +- l10n/ia/files_encryption.po | 4 +- l10n/ia/files_external.po | 8 +- l10n/ia/files_sharing.po | 16 ++-- l10n/ia/files_trashbin.po | 4 +- l10n/ia/files_versions.po | 8 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 120 ++++++++++++++-------------- l10n/ia/user_webdavauth.po | 6 +- l10n/id/core.po | 42 +++++----- l10n/id/files.po | 6 +- l10n/id/files_encryption.po | 6 +- l10n/id/files_external.po | 6 +- l10n/id/files_sharing.po | 6 +- l10n/id/files_trashbin.po | 6 +- l10n/id/files_versions.po | 6 +- l10n/id/lib.po | 6 +- l10n/id/settings.po | 26 +++--- l10n/id/user_ldap.po | 6 +- l10n/id/user_webdavauth.po | 6 +- l10n/is/core.po | 62 +++++++-------- l10n/is/files.po | 4 +- l10n/is/files_encryption.po | 4 +- l10n/is/files_external.po | 8 +- l10n/is/files_sharing.po | 16 ++-- l10n/is/files_trashbin.po | 4 +- l10n/is/files_versions.po | 8 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 24 +++--- l10n/is/user_ldap.po | 4 +- l10n/is/user_webdavauth.po | 6 +- l10n/it/core.po | 64 +++++++-------- l10n/it/files.po | 6 +- l10n/it/files_encryption.po | 4 +- l10n/it/files_external.po | 10 +-- l10n/it/files_sharing.po | 16 ++-- l10n/it/files_trashbin.po | 4 +- l10n/it/files_versions.po | 10 +-- l10n/it/lib.po | 6 +- l10n/it/settings.po | 24 +++--- l10n/it/user_ldap.po | 6 +- l10n/it/user_webdavauth.po | 8 +- l10n/ja_JP/core.po | 66 ++++++++-------- l10n/ja_JP/files.po | 8 +- l10n/ja_JP/files_encryption.po | 4 +- l10n/ja_JP/files_external.po | 10 +-- l10n/ja_JP/files_sharing.po | 16 ++-- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/files_versions.po | 6 +- l10n/ja_JP/lib.po | 8 +- l10n/ja_JP/settings.po | 30 +++---- l10n/ja_JP/user_ldap.po | 6 +- l10n/ja_JP/user_webdavauth.po | 8 +- l10n/ka/core.po | 94 +++++++++++----------- l10n/ka/files.po | 4 +- l10n/ka/files_encryption.po | 6 +- l10n/ka/files_external.po | 8 +- l10n/ka/files_sharing.po | 12 +-- l10n/ka/files_trashbin.po | 4 +- l10n/ka/files_versions.po | 8 +- l10n/ka/lib.po | 4 +- l10n/ka/settings.po | 32 ++++---- l10n/ka/user_ldap.po | 120 ++++++++++++++-------------- l10n/ka/user_webdavauth.po | 6 +- l10n/ka_GE/core.po | 42 +++++----- l10n/ka_GE/files.po | 6 +- l10n/ka_GE/files_encryption.po | 6 +- l10n/ka_GE/files_external.po | 6 +- l10n/ka_GE/files_sharing.po | 6 +- l10n/ka_GE/files_trashbin.po | 6 +- l10n/ka_GE/files_versions.po | 6 +- l10n/ka_GE/lib.po | 6 +- l10n/ka_GE/settings.po | 6 +- l10n/ka_GE/user_ldap.po | 145 +++++++++++++++++----------------- l10n/ka_GE/user_webdavauth.po | 6 +- l10n/kn/core.po | 64 +++++++-------- l10n/kn/files.po | 4 +- l10n/kn/files_encryption.po | 6 +- l10n/kn/files_external.po | 10 +-- l10n/kn/files_sharing.po | 6 +- l10n/kn/files_trashbin.po | 4 +- l10n/kn/files_versions.po | 6 +- l10n/kn/lib.po | 6 +- l10n/kn/settings.po | 34 ++++---- l10n/kn/user_ldap.po | 6 +- l10n/kn/user_webdavauth.po | 6 +- l10n/ko/core.po | 62 +++++++-------- l10n/ko/files.po | 4 +- l10n/ko/files_encryption.po | 4 +- l10n/ko/files_external.po | 8 +- l10n/ko/files_sharing.po | 17 ++-- l10n/ko/files_trashbin.po | 4 +- l10n/ko/files_versions.po | 6 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ko/user_webdavauth.po | 8 +- l10n/ku_IQ/core.po | 56 ++++++------- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_encryption.po | 4 +- l10n/ku_IQ/files_external.po | 8 +- l10n/ku_IQ/files_sharing.po | 16 ++-- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/files_versions.po | 8 +- l10n/ku_IQ/lib.po | 4 +- l10n/ku_IQ/settings.po | 24 +++--- l10n/ku_IQ/user_ldap.po | 120 ++++++++++++++-------------- l10n/ku_IQ/user_webdavauth.po | 6 +- l10n/lb/core.po | 62 +++++++-------- l10n/lb/files.po | 4 +- l10n/lb/files_encryption.po | 4 +- l10n/lb/files_external.po | 8 +- l10n/lb/files_sharing.po | 12 +-- l10n/lb/files_trashbin.po | 4 +- l10n/lb/files_versions.po | 8 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 24 +++--- l10n/lb/user_ldap.po | 120 ++++++++++++++-------------- l10n/lb/user_webdavauth.po | 6 +- l10n/lt_LT/core.po | 62 +++++++-------- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_encryption.po | 4 +- l10n/lt_LT/files_external.po | 10 +-- l10n/lt_LT/files_sharing.po | 16 ++-- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/files_versions.po | 6 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 24 +++--- l10n/lt_LT/user_ldap.po | 120 ++++++++++++++-------------- l10n/lt_LT/user_webdavauth.po | 6 +- l10n/lv/core.po | 62 +++++++-------- l10n/lv/files.po | 4 +- l10n/lv/files_encryption.po | 4 +- l10n/lv/files_external.po | 10 +-- l10n/lv/files_sharing.po | 12 +-- l10n/lv/files_trashbin.po | 4 +- l10n/lv/files_versions.po | 10 +-- l10n/lv/lib.po | 6 +- l10n/lv/settings.po | 24 +++--- l10n/lv/user_ldap.po | 6 +- l10n/lv/user_webdavauth.po | 6 +- l10n/mk/core.po | 62 +++++++-------- l10n/mk/files.po | 4 +- l10n/mk/files_encryption.po | 4 +- l10n/mk/files_external.po | 8 +- l10n/mk/files_sharing.po | 16 ++-- l10n/mk/files_trashbin.po | 4 +- l10n/mk/files_versions.po | 8 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 24 +++--- l10n/mk/user_ldap.po | 4 +- l10n/mk/user_webdavauth.po | 6 +- l10n/ms_MY/core.po | 62 +++++++-------- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_encryption.po | 4 +- l10n/ms_MY/files_external.po | 8 +- l10n/ms_MY/files_sharing.po | 16 ++-- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/files_versions.po | 8 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 24 +++--- l10n/ms_MY/user_ldap.po | 120 ++++++++++++++-------------- l10n/ms_MY/user_webdavauth.po | 6 +- l10n/my_MM/core.po | 100 +++++++++++------------ l10n/my_MM/files.po | 4 +- l10n/my_MM/files_encryption.po | 6 +- l10n/my_MM/files_external.po | 8 +- l10n/my_MM/files_sharing.po | 12 +-- l10n/my_MM/files_trashbin.po | 4 +- l10n/my_MM/files_versions.po | 8 +- l10n/my_MM/lib.po | 4 +- l10n/my_MM/settings.po | 32 ++++---- l10n/my_MM/user_ldap.po | 120 ++++++++++++++-------------- l10n/my_MM/user_webdavauth.po | 6 +- l10n/nb_NO/core.po | 62 +++++++-------- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_encryption.po | 6 +- l10n/nb_NO/files_external.po | 10 +-- l10n/nb_NO/files_sharing.po | 16 ++-- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/files_versions.po | 8 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 24 +++--- l10n/nb_NO/user_ldap.po | 6 +- l10n/nb_NO/user_webdavauth.po | 6 +- l10n/ne/core.po | 94 +++++++++++----------- l10n/ne/files.po | 4 +- l10n/ne/files_encryption.po | 6 +- l10n/ne/files_external.po | 10 +-- l10n/ne/files_sharing.po | 12 +-- l10n/ne/files_trashbin.po | 4 +- l10n/ne/files_versions.po | 6 +- l10n/ne/lib.po | 44 +++++------ l10n/ne/settings.po | 32 ++++---- l10n/ne/user_ldap.po | 6 +- l10n/ne/user_webdavauth.po | 6 +- l10n/nl/core.po | 64 +++++++-------- l10n/nl/files.po | 6 +- l10n/nl/files_encryption.po | 4 +- l10n/nl/files_external.po | 10 +-- l10n/nl/files_sharing.po | 16 ++-- l10n/nl/files_trashbin.po | 4 +- l10n/nl/files_versions.po | 6 +- l10n/nl/lib.po | 6 +- l10n/nl/settings.po | 24 +++--- l10n/nl/user_ldap.po | 6 +- l10n/nl/user_webdavauth.po | 8 +- l10n/nn_NO/core.po | 56 ++++++------- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_encryption.po | 4 +- l10n/nn_NO/files_external.po | 8 +- l10n/nn_NO/files_sharing.po | 16 ++-- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/files_versions.po | 8 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 24 +++--- l10n/nn_NO/user_ldap.po | 120 ++++++++++++++-------------- l10n/nn_NO/user_webdavauth.po | 6 +- l10n/oc/core.po | 62 +++++++-------- l10n/oc/files.po | 4 +- l10n/oc/files_encryption.po | 4 +- l10n/oc/files_external.po | 8 +- l10n/oc/files_sharing.po | 16 ++-- l10n/oc/files_trashbin.po | 4 +- l10n/oc/files_versions.po | 8 +- l10n/oc/lib.po | 4 +- l10n/oc/settings.po | 24 +++--- l10n/oc/user_ldap.po | 120 ++++++++++++++-------------- l10n/oc/user_webdavauth.po | 6 +- l10n/pl/core.po | 64 +++++++-------- l10n/pl/files.po | 6 +- l10n/pl/files_encryption.po | 6 +- l10n/pl/files_external.po | 10 +-- l10n/pl/files_sharing.po | 12 +-- l10n/pl/files_trashbin.po | 4 +- l10n/pl/files_versions.po | 6 +- l10n/pl/lib.po | 6 +- l10n/pl/settings.po | 24 +++--- l10n/pl/user_ldap.po | 6 +- l10n/pl/user_webdavauth.po | 8 +- l10n/pl_PL/core.po | 62 ++++++++------- l10n/pl_PL/files.po | 4 +- l10n/pl_PL/files_encryption.po | 4 +- l10n/pl_PL/files_external.po | 8 +- l10n/pl_PL/files_sharing.po | 16 ++-- l10n/pl_PL/files_trashbin.po | 4 +- l10n/pl_PL/files_versions.po | 8 +- l10n/pl_PL/lib.po | 4 +- l10n/pl_PL/settings.po | 32 ++++---- l10n/pl_PL/user_ldap.po | 120 ++++++++++++++-------------- l10n/pl_PL/user_webdavauth.po | 6 +- l10n/pt_BR/core.po | 64 +++++++-------- l10n/pt_BR/files.po | 6 +- l10n/pt_BR/files_encryption.po | 6 +- l10n/pt_BR/files_external.po | 10 +-- l10n/pt_BR/files_sharing.po | 16 ++-- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/files_versions.po | 6 +- l10n/pt_BR/lib.po | 6 +- l10n/pt_BR/settings.po | 24 +++--- l10n/pt_BR/user_ldap.po | 6 +- l10n/pt_BR/user_webdavauth.po | 8 +- l10n/pt_PT/core.po | 64 +++++++-------- l10n/pt_PT/files.po | 6 +- l10n/pt_PT/files_encryption.po | 6 +- l10n/pt_PT/files_external.po | 10 +-- l10n/pt_PT/files_sharing.po | 21 ++--- l10n/pt_PT/files_trashbin.po | 9 ++- l10n/pt_PT/files_versions.po | 6 +- l10n/pt_PT/lib.po | 6 +- l10n/pt_PT/settings.po | 24 +++--- l10n/pt_PT/user_ldap.po | 6 +- l10n/pt_PT/user_webdavauth.po | 8 +- l10n/ro/core.po | 62 +++++++-------- l10n/ro/files.po | 4 +- l10n/ro/files_encryption.po | 4 +- l10n/ro/files_external.po | 8 +- l10n/ro/files_sharing.po | 16 ++-- l10n/ro/files_trashbin.po | 4 +- l10n/ro/files_versions.po | 8 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 24 +++--- l10n/ro/user_ldap.po | 4 +- l10n/ro/user_webdavauth.po | 8 +- l10n/ru/core.po | 64 +++++++-------- l10n/ru/files.po | 4 +- l10n/ru/files_encryption.po | 4 +- l10n/ru/files_external.po | 10 +-- l10n/ru/files_sharing.po | 16 ++-- l10n/ru/files_trashbin.po | 4 +- l10n/ru/files_versions.po | 6 +- l10n/ru/lib.po | 6 +- l10n/ru/settings.po | 24 +++--- l10n/ru/user_ldap.po | 6 +- l10n/ru/user_webdavauth.po | 6 +- l10n/ru_RU/core.po | 62 +++++++-------- l10n/ru_RU/files.po | 4 +- l10n/ru_RU/files_encryption.po | 4 +- l10n/ru_RU/files_external.po | 8 +- l10n/ru_RU/files_sharing.po | 16 ++-- l10n/ru_RU/files_trashbin.po | 4 +- l10n/ru_RU/files_versions.po | 8 +- l10n/ru_RU/lib.po | 4 +- l10n/ru_RU/settings.po | 24 +++--- l10n/ru_RU/user_ldap.po | 4 +- l10n/ru_RU/user_webdavauth.po | 8 +- l10n/si_LK/core.po | 62 +++++++-------- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_encryption.po | 4 +- l10n/si_LK/files_external.po | 8 +- l10n/si_LK/files_sharing.po | 16 ++-- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/files_versions.po | 8 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 24 +++--- l10n/si_LK/user_ldap.po | 4 +- l10n/si_LK/user_webdavauth.po | 6 +- l10n/sk/core.po | 94 +++++++++++----------- l10n/sk/files.po | 4 +- l10n/sk/files_encryption.po | 4 +- l10n/sk/files_external.po | 8 +- l10n/sk/files_sharing.po | 16 ++-- l10n/sk/files_trashbin.po | 4 +- l10n/sk/files_versions.po | 8 +- l10n/sk/lib.po | 50 ++++++------ l10n/sk/settings.po | 32 ++++---- l10n/sk/user_ldap.po | 120 ++++++++++++++-------------- l10n/sk/user_webdavauth.po | 6 +- l10n/sk_SK/core.po | 64 +++++++-------- l10n/sk_SK/files.po | 6 +- l10n/sk_SK/files_encryption.po | 6 +- l10n/sk_SK/files_external.po | 10 +-- l10n/sk_SK/files_sharing.po | 16 ++-- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/files_versions.po | 10 +-- l10n/sk_SK/lib.po | 6 +- l10n/sk_SK/settings.po | 24 +++--- l10n/sk_SK/user_ldap.po | 6 +- l10n/sk_SK/user_webdavauth.po | 8 +- l10n/sl/core.po | 64 +++++++-------- l10n/sl/files.po | 6 +- l10n/sl/files_encryption.po | 6 +- l10n/sl/files_external.po | 10 +-- l10n/sl/files_sharing.po | 6 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/files_versions.po | 6 +- l10n/sl/lib.po | 6 +- l10n/sl/settings.po | 26 +++--- l10n/sl/user_ldap.po | 6 +- l10n/sl/user_webdavauth.po | 6 +- l10n/sq/core.po | 64 +++++++-------- l10n/sq/files.po | 6 +- l10n/sq/files_encryption.po | 6 +- l10n/sq/files_external.po | 6 +- l10n/sq/files_sharing.po | 6 +- l10n/sq/files_trashbin.po | 6 +- l10n/sq/files_versions.po | 6 +- l10n/sq/lib.po | 6 +- l10n/sq/settings.po | 6 +- l10n/sq/user_ldap.po | 6 +- l10n/sq/user_webdavauth.po | 6 +- l10n/sr/core.po | 62 +++++++-------- l10n/sr/files.po | 4 +- l10n/sr/files_encryption.po | 4 +- l10n/sr/files_external.po | 8 +- l10n/sr/files_sharing.po | 14 ++-- l10n/sr/files_trashbin.po | 4 +- l10n/sr/files_versions.po | 8 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 24 +++--- l10n/sr/user_ldap.po | 4 +- l10n/sr/user_webdavauth.po | 8 +- l10n/sr@latin/core.po | 62 ++++++++------- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_encryption.po | 4 +- l10n/sr@latin/files_external.po | 8 +- l10n/sr@latin/files_sharing.po | 16 ++-- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/files_versions.po | 8 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 32 ++++---- l10n/sr@latin/user_ldap.po | 120 ++++++++++++++-------------- l10n/sr@latin/user_webdavauth.po | 6 +- l10n/sv/core.po | 64 +++++++-------- l10n/sv/files.po | 4 +- l10n/sv/files_encryption.po | 4 +- l10n/sv/files_external.po | 10 +-- l10n/sv/files_sharing.po | 16 ++-- l10n/sv/files_trashbin.po | 4 +- l10n/sv/files_versions.po | 6 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 26 +++--- l10n/sv/user_ldap.po | 6 +- l10n/sv/user_webdavauth.po | 8 +- l10n/sw_KE/core.po | 94 +++++++++++----------- l10n/sw_KE/files.po | 4 +- l10n/sw_KE/files_encryption.po | 4 +- l10n/sw_KE/files_external.po | 8 +- l10n/sw_KE/files_sharing.po | 16 ++-- l10n/sw_KE/files_trashbin.po | 4 +- l10n/sw_KE/files_versions.po | 8 +- l10n/sw_KE/lib.po | 50 ++++++------ l10n/sw_KE/settings.po | 32 ++++---- l10n/sw_KE/user_ldap.po | 120 ++++++++++++++-------------- l10n/sw_KE/user_webdavauth.po | 6 +- l10n/ta_LK/core.po | 62 +++++++-------- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_encryption.po | 4 +- l10n/ta_LK/files_external.po | 8 +- l10n/ta_LK/files_sharing.po | 16 ++-- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/files_versions.po | 8 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 24 +++--- l10n/ta_LK/user_ldap.po | 4 +- l10n/ta_LK/user_webdavauth.po | 6 +- l10n/te/core.po | 64 +++++++-------- l10n/te/files.po | 4 +- l10n/te/files_encryption.po | 6 +- l10n/te/files_external.po | 10 +-- l10n/te/files_sharing.po | 6 +- l10n/te/files_trashbin.po | 4 +- l10n/te/files_versions.po | 6 +- l10n/te/lib.po | 6 +- l10n/te/settings.po | 24 +++--- l10n/te/user_ldap.po | 6 +- l10n/te/user_webdavauth.po | 6 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 62 +++++++-------- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_encryption.po | 4 +- l10n/th_TH/files_external.po | 8 +- l10n/th_TH/files_sharing.po | 16 ++-- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/files_versions.po | 8 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 24 +++--- l10n/th_TH/user_ldap.po | 4 +- l10n/th_TH/user_webdavauth.po | 8 +- l10n/tr/core.po | 64 +++++++-------- l10n/tr/files.po | 6 +- l10n/tr/files_encryption.po | 8 +- l10n/tr/files_external.po | 10 +-- l10n/tr/files_sharing.po | 18 ++--- l10n/tr/files_trashbin.po | 4 +- l10n/tr/files_versions.po | 6 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 26 +++--- l10n/tr/user_ldap.po | 4 +- l10n/tr/user_webdavauth.po | 8 +- l10n/uk/core.po | 66 ++++++++-------- l10n/uk/files.po | 6 +- l10n/uk/files_encryption.po | 6 +- l10n/uk/files_external.po | 10 +-- l10n/uk/files_sharing.po | 16 ++-- l10n/uk/files_trashbin.po | 4 +- l10n/uk/files_versions.po | 6 +- l10n/uk/lib.po | 6 +- l10n/uk/settings.po | 24 +++--- l10n/uk/user_ldap.po | 6 +- l10n/uk/user_webdavauth.po | 6 +- l10n/ur_PK/core.po | 62 +++++++-------- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_encryption.po | 6 +- l10n/ur_PK/files_external.po | 8 +- l10n/ur_PK/files_sharing.po | 12 +-- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/files_versions.po | 8 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 24 +++--- l10n/ur_PK/user_ldap.po | 120 ++++++++++++++-------------- l10n/ur_PK/user_webdavauth.po | 6 +- l10n/vi/core.po | 62 +++++++-------- l10n/vi/files.po | 4 +- l10n/vi/files_encryption.po | 4 +- l10n/vi/files_external.po | 8 +- l10n/vi/files_sharing.po | 16 ++-- l10n/vi/files_trashbin.po | 4 +- l10n/vi/files_versions.po | 8 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 24 +++--- l10n/vi/user_ldap.po | 4 +- l10n/vi/user_webdavauth.po | 6 +- l10n/zh_CN.GB2312/core.po | 64 +++++++-------- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_encryption.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 6 +- l10n/zh_CN.GB2312/files_sharing.po | 16 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/files_versions.po | 6 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 26 +++--- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN.GB2312/user_webdavauth.po | 6 +- l10n/zh_CN/core.po | 64 +++++++-------- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_encryption.po | 6 +- l10n/zh_CN/files_external.po | 10 +-- l10n/zh_CN/files_sharing.po | 16 ++-- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/files_versions.po | 6 +- l10n/zh_CN/lib.po | 6 +- l10n/zh_CN/settings.po | 24 +++--- l10n/zh_CN/user_ldap.po | 6 +- l10n/zh_CN/user_webdavauth.po | 8 +- l10n/zh_HK/core.po | 62 +++++++-------- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_encryption.po | 6 +- l10n/zh_HK/files_external.po | 8 +- l10n/zh_HK/files_sharing.po | 12 +-- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/files_versions.po | 6 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 24 +++--- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_HK/user_webdavauth.po | 6 +- l10n/zh_TW/core.po | 6 +- l10n/zh_TW/files.po | 6 +- l10n/zh_TW/files_encryption.po | 6 +- l10n/zh_TW/files_external.po | 10 +-- l10n/zh_TW/files_sharing.po | 6 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/files_versions.po | 6 +- l10n/zh_TW/lib.po | 6 +- l10n/zh_TW/settings.po | 6 +- l10n/zh_TW/user_ldap.po | 4 +- l10n/zh_TW/user_webdavauth.po | 6 +- lib/l10n/ja_JP.php | 2 +- settings/l10n/ja_JP.php | 6 +- 872 files changed, 7017 insertions(+), 6914 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 28453618d93..402a9f33b39 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -55,7 +55,7 @@ "0 is unlimited" => "0を指定した場合は無制限", "Maximum input size for ZIP files" => "ZIPファイルへの最大入力サイズ", "Save" => "保存", -"New" => "新規", +"New" => "新規作成", "Text file" => "テキストファイル", "Folder" => "フォルダ", "From link" => "リンク", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 2ad40990838..c06108cf2b3 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -25,6 +25,7 @@ "undo" => "desfazer", "perform delete operation" => "Executar a tarefa de apagar", "1 file uploading" => "A enviar 1 ficheiro", +"files uploading" => "A enviar os ficheiros", "'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", "File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 3c8eef9f36d..65b4ec1433c 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -25,6 +25,7 @@ "undo" => "відмінити", "perform delete operation" => "виконати операцію видалення", "1 file uploading" => "1 файл завантажується", +"files uploading" => "файли завантажуються", "'.' is an invalid file name." => "'.' це невірне ім'я файлу.", "File name cannot be empty." => " Ім'я файлу не може бути порожнім.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені.", diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index b8e700e3802..43e8f3c4b69 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -1,9 +1,9 @@ "Palavra-Passe", +"Password" => "Password", "Submit" => "Submeter", "%s shared the folder %s with you" => "%s partilhou a pasta %s consigo", "%s shared the file %s with you" => "%s partilhou o ficheiro %s consigo", -"Download" => "Descarregar", +"Download" => "Transferir", "No preview available for" => "Não há pré-visualização para", "web services under your control" => "serviços web sob o seu controlo" ); diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 84a07fb0d0b..7dfe610466b 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -1,7 +1,7 @@ "Não foi possível eliminar %s de forma permanente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "Restaurar", +"perform restore operation" => "executar a operação de restauro", "Error" => "Erro", "delete file permanently" => "Eliminar permanentemente o(s) ficheiro(s)", "Delete permanently" => "Eliminar permanentemente", @@ -11,7 +11,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", -"Nothing in here. Your trash bin is empty!" => "Não ha ficheiros. O lixo está vazio", +"Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", "Restore" => "Restaurar", "Delete" => "Apagar", "Deleted Files" => "Ficheiros Apagados" diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 990658e147e..ea07bd4a11c 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -1,6 +1,6 @@ "Échec de la suppression de la configuration du serveur", -"The configuration is valid and the connection could be established!" => "La configuration est valide est la connexion peut être établie !", +"The configuration is valid and the connection could be established!" => "La configuration est valide et la connexion peut être établie !", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuration est valide, mais le lien ne peut être établi. Veuillez vérifier les paramètres du serveur ainsi que vos identifiants de connexion.", "The configuration is invalid. Please look in the ownCloud log for further details." => "La configuration est invalide. Veuillez vous référer aux fichiers de journaux ownCloud pour plus d'information.", "Deletion failed" => "La suppression a échoué", diff --git a/apps/user_ldap/l10n/ka_GE.php b/apps/user_ldap/l10n/ka_GE.php index 0385103f9b8..b3f6058a0ca 100644 --- a/apps/user_ldap/l10n/ka_GE.php +++ b/apps/user_ldap/l10n/ka_GE.php @@ -1,6 +1,75 @@ "წაშლის ველი", +"Failed to delete the server configuration" => "შეცდომა სერვერის კონფიგურაციის წაშლისას", +"The configuration is valid and the connection could be established!" => "კონფიგურაცია მართებულია და კავშირი დამყარდება!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "კონფიგურაცია არ არის მართებული. გთხოვთ ჩაიხედოთ დეტალური ინფორმაციისთვის ownCloud –ის ლოგში.", +"Deletion failed" => "წაშლა ვერ განხორციელდა", +"Take over settings from recent server configuration?" => "დაბრუნდებით სერვერის წინა კონფიგურაციაში?", +"Keep settings?" => "დავტოვოთ პარამეტრები?", +"Cannot add server configuration" => "სერვერის პარამეტრების დამატება ვერ მოხერხდა", +"Connection test succeeded" => "კავშირის ტესტირება მოხერხდა", +"Connection test failed" => "კავშირის ტესტირება ვერ მოხერხდა", +"Do you really want to delete the current Server Configuration?" => "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?", +"Confirm Deletion" => "წაშლის დადასტურება", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "გაფრთხილება: აპლიკაციის user_ldap და user_webdavauth არათავსებადია. თქვენ შეიძლება შეეჩეხოთ მოულოდნელ შშედეგებს. თხოვეთ თქვენს ადმინისტრატორს ჩათიშოს ერთერთი.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "გაფრთხილება: PHP LDAP მოდული არ არის ინსტალირებული, ბექენდი არ იმუშავებს. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის.", +"Server configuration" => "სერვერის პარამეტრები", +"Add Server Configuration" => "სერვერის პარამეტრების დამატება", "Host" => "ჰოსტი", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://", +"Base DN" => "საწყისი DN", +"One Base DN per line" => "ერთი საწყისი DN ერთ ხაზზე", +"You can specify Base DN for users and groups in the Advanced tab" => "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში", +"User DN" => "მომხმარებლის DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "მომხმარებლის DN რომელთანაც უნდა მოხდეს დაკავშირება მოხდება შემდეგნაირად მაგ: uid=agent,dc=example,dc=com. ხოლო ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი.", +"Password" => "პაროლი", +"For anonymous access, leave DN and Password empty." => "ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი.", +"User Login Filter" => "მომხმარებლის ფილტრი", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "როცა შემოსვლა განხორციელდება ასეიძლება მოვახდინოთ გაფილტვრა. %%uid შეიცვლება იუზერნეიმით მომხმარებლის ველში.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "გამოიყენეთ %%uid დამასრულებელი მაგ: \"uid=%%uid\"", +"User List Filter" => "მომხმარებლებიის სიის ფილტრი", +"Defines the filter to apply, when retrieving users." => "გაფილტვრა განხორციელდება, როცა მომხმარებლების სია ჩამოიტვირთება.", +"without any placeholder, e.g. \"objectClass=person\"." => "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=person\".", +"Group Filter" => "ჯგუფის ფილტრი", +"Defines the filter to apply, when retrieving groups." => "გაფილტვრა განხორციელდება, როცა ჯგუფის სია ჩამოიტვირთება.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=posixGroup\".", +"Connection Settings" => "კავშირის პარამეტრები", +"Configuration Active" => "კონფიგურაცია აქტიურია", +"When unchecked, this configuration will be skipped." => "როცა გადანიშნულია, ეს კონფიგურაცია გამოტოვებული იქნება.", "Port" => "პორტი", +"Backup (Replica) Host" => "ბექაფ (რეპლიკა) ჰოსტი", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "მიუთითეთ რაიმე ბექაფ ჰოსტი. ის უნდა იყოს ძირითადი LDAP/AD სერვერის რეპლიკა.", +"Backup (Replica) Port" => "ბექაფ (რეპლიკა) პორტი", +"Disable Main Server" => "გამორთეთ ძირითადი სერვერი", +"When switched on, ownCloud will only connect to the replica server." => "როცა მონიშნულია, ownCloud დაუკავშირდება მხოლოდ რეპლიკა სერვერს.", +"Use TLS" => "გამოიყენეთ TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "არ გამოიყენოთ დამატებით LDAPS კავშირი. ის წარუმატებლად დასრულდება.", +"Case insensitve LDAP server (Windows)" => "LDAP server (Windows)", +"Turn off SSL certificate validation." => "გამორთეთ SSL სერთიფიკატის ვალიდაცია.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "იმ შემთხვევაში თუ მუშაობს მხოლოდ ეს ოფცია, დააიმპორტეთ LDAP სერვერის SSL სერთიფიკატი თქვენს ownCloud სერვერზე.", +"Not recommended, use for testing only." => "არ არის რეკომენდირებული, გამოიყენეთ მხოლოდ სატესტოდ.", +"Cache Time-To-Live" => "ქეშის სიცოცხლის ხანგრძლივობა", +"in seconds. A change empties the cache." => "წამებში. ცვლილება ასუფთავებს ქეშს.", +"Directory Settings" => "დირექტორიის პარამეტრები", +"User Display Name Field" => "მომხმარებლის დისფლეის სახელის ფილდი", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP ატრიბუტი მომხმარებლის ownCloud სახელის გენერაციისთვის.", +"Base User Tree" => "ძირითად მომხმარებელთა სია", +"One User Base DN per line" => "ერთი მომხმარებლის საწყისი DN ერთ ხაზზე", +"User Search Attributes" => "მომხმარებლის ძებნის ატრიბუტი", +"Optional; one attribute per line" => "ოფციონალური; თითო ატრიბუტი თითო ხაზზე", +"Group Display Name Field" => "ჯგუფის დისფლეის სახელის ფილდი", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP ატრიბუტი ჯგუფის ownCloud სახელის გენერაციისთვის.", +"Base Group Tree" => "ძირითად ჯგუფთა სია", +"One Group Base DN per line" => "ერთი ჯგუფის საწყისი DN ერთ ხაზზე", +"Group Search Attributes" => "ჯგუფური ძებნის ატრიბუტი", +"Group-Member association" => "ჯგუფის წევრობის ასოციაცია", +"Special Attributes" => "სპეციალური ატრიბუტები", +"Quota Field" => "ქვოტას ველი", +"Quota Default" => "საწყისი ქვოტა", +"in bytes" => "ბაიტებში", +"Email Field" => "იმეილის ველი", +"User Home Folder Naming Rule" => "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი.", +"Test Configuration" => "კავშირის ტესტირება", "Help" => "დახმარება" ); diff --git a/core/l10n/ar.php b/core/l10n/ar.php index f75d8071709..4d413715de3 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -44,11 +44,11 @@ "months ago" => "شهر مضى", "last year" => "السنةالماضية", "years ago" => "سنة مضت", -"Choose" => "اختيار", +"Ok" => "موافق", "Cancel" => "الغاء", -"No" => "لا", +"Choose" => "اختيار", "Yes" => "نعم", -"Ok" => "موافق", +"No" => "لا", "The object type is not specified." => "نوع العنصر غير محدد.", "Error" => "خطأ", "The app name is not specified." => "اسم التطبيق غير محدد.", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 686ebdf9af1..1b18b6ae3e4 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -43,11 +43,11 @@ "months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", -"Choose" => "বেছে নিন", +"Ok" => "তথাস্তু", "Cancel" => "বাতির", -"No" => "না", +"Choose" => "বেছে নিন", "Yes" => "হ্যাঁ", -"Ok" => "তথাস্তু", +"No" => "না", "The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।", "Error" => "সমস্যা", "The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index acf617034fe..91b51d1b31d 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -44,11 +44,11 @@ "months ago" => "mesos enrere", "last year" => "l'any passat", "years ago" => "anys enrere", -"Choose" => "Escull", +"Ok" => "D'acord", "Cancel" => "Cancel·la", -"No" => "No", +"Choose" => "Escull", "Yes" => "Sí", -"Ok" => "D'acord", +"No" => "No", "The object type is not specified." => "No s'ha especificat el tipus d'objecte.", "Error" => "Error", "The app name is not specified." => "No s'ha especificat el nom de l'aplicació.", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index eb70ac3e096..15c89106e5d 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -44,11 +44,11 @@ "months ago" => "před měsíci", "last year" => "minulý rok", "years ago" => "před lety", -"Choose" => "Vybrat", +"Ok" => "Ok", "Cancel" => "Zrušit", -"No" => "Ne", +"Choose" => "Vybrat", "Yes" => "Ano", -"Ok" => "Ok", +"No" => "Ne", "The object type is not specified." => "Není určen typ objektu.", "Error" => "Chyba", "The app name is not specified." => "Není určen název aplikace.", diff --git a/core/l10n/da.php b/core/l10n/da.php index 6650a7e1d8c..286f524b678 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -44,11 +44,11 @@ "months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", -"Choose" => "Vælg", +"Ok" => "OK", "Cancel" => "Fortryd", -"No" => "Nej", +"Choose" => "Vælg", "Yes" => "Ja", -"Ok" => "OK", +"No" => "Nej", "The object type is not specified." => "Objekttypen er ikke angivet.", "Error" => "Fejl", "The app name is not specified." => "Den app navn er ikke angivet.", diff --git a/core/l10n/de.php b/core/l10n/de.php index 3b9ac15f4e5..3af653b9ac9 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -44,11 +44,11 @@ "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", -"Choose" => "Auswählen", +"Ok" => "OK", "Cancel" => "Abbrechen", -"No" => "Nein", +"Choose" => "Auswählen", "Yes" => "Ja", -"Ok" => "OK", +"No" => "Nein", "The object type is not specified." => "Der Objekttyp ist nicht angegeben.", "Error" => "Fehler", "The app name is not specified." => "Der App-Name ist nicht angegeben.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index d6a8b1405e5..4065f2484f5 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -44,11 +44,11 @@ "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", -"Choose" => "Auswählen", +"Ok" => "OK", "Cancel" => "Abbrechen", -"No" => "Nein", +"Choose" => "Auswählen", "Yes" => "Ja", -"Ok" => "OK", +"No" => "Nein", "The object type is not specified." => "Der Objekttyp ist nicht angegeben.", "Error" => "Fehler", "The app name is not specified." => "Der App-Name ist nicht angegeben.", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index f2297bd3d97..5c8fe340317 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -43,11 +43,11 @@ "months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", -"Choose" => "Elekti", +"Ok" => "Akcepti", "Cancel" => "Nuligi", -"No" => "Ne", +"Choose" => "Elekti", "Yes" => "Jes", -"Ok" => "Akcepti", +"No" => "Ne", "The object type is not specified." => "Ne indikiĝis tipo de la objekto.", "Error" => "Eraro", "The app name is not specified." => "Ne indikiĝis nomo de la aplikaĵo.", diff --git a/core/l10n/es.php b/core/l10n/es.php index e64858c4b11..543563bed11 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -44,11 +44,11 @@ "months ago" => "hace meses", "last year" => "año pasado", "years ago" => "hace años", -"Choose" => "Seleccionar", +"Ok" => "Aceptar", "Cancel" => "Cancelar", -"No" => "No", +"Choose" => "Seleccionar", "Yes" => "Sí", -"Ok" => "Aceptar", +"No" => "No", "The object type is not specified." => "El tipo de objeto no se ha especificado.", "Error" => "Fallo", "The app name is not specified." => "El nombre de la app no se ha especificado.", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index f17a6d9baf1..748de3ddd13 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "el año pasado", "years ago" => "años atrás", -"Choose" => "Elegir", +"Ok" => "Aceptar", "Cancel" => "Cancelar", -"No" => "No", +"Choose" => "Elegir", "Yes" => "Sí", -"Ok" => "Aceptar", +"No" => "No", "The object type is not specified." => "El tipo de objeto no esta especificado. ", "Error" => "Error", "The app name is not specified." => "El nombre de la aplicación no esta especificado.", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index dde2d59cbdf..76e38a92d1f 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -44,11 +44,11 @@ "months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", -"Choose" => "Aukeratu", +"Ok" => "Ados", "Cancel" => "Ezeztatu", -"No" => "Ez", +"Choose" => "Aukeratu", "Yes" => "Bai", -"Ok" => "Ados", +"No" => "Ez", "The object type is not specified." => "Objetu mota ez dago zehaztuta.", "Error" => "Errorea", "The app name is not specified." => "App izena ez dago zehaztuta.", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 58f201a3fef..e6f5aaac0cb 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -44,11 +44,11 @@ "months ago" => "ماه‌های قبل", "last year" => "سال قبل", "years ago" => "سال‌های قبل", -"Choose" => "انتخاب کردن", +"Ok" => "قبول", "Cancel" => "منصرف شدن", -"No" => "نه", +"Choose" => "انتخاب کردن", "Yes" => "بله", -"Ok" => "قبول", +"No" => "نه", "The object type is not specified." => "نوع شی تعیین نشده است.", "Error" => "خطا", "The app name is not specified." => "نام برنامه تعیین نشده است.", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index e9386cad431..ec79d031227 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -42,11 +42,11 @@ "months ago" => "kuukautta sitten", "last year" => "viime vuonna", "years ago" => "vuotta sitten", -"Choose" => "Valitse", +"Ok" => "Ok", "Cancel" => "Peru", -"No" => "Ei", +"Choose" => "Valitse", "Yes" => "Kyllä", -"Ok" => "Ok", +"No" => "Ei", "Error" => "Virhe", "The app name is not specified." => "Sovelluksen nimeä ei ole määritelty.", "The required file {file} is not installed!" => "Vaadittua tiedostoa {file} ei ole asennettu!", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 84c4c0abdf4..3b89d69b3b9 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -44,11 +44,11 @@ "months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", -"Choose" => "Choisir", +"Ok" => "Ok", "Cancel" => "Annuler", -"No" => "Non", +"Choose" => "Choisir", "Yes" => "Oui", -"Ok" => "Ok", +"No" => "Non", "The object type is not specified." => "Le type d'objet n'est pas spécifié.", "Error" => "Erreur", "The app name is not specified." => "Le nom de l'application n'est pas spécifié.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 4e8eb6e4fbd..fd237a39c86 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", -"Choose" => "Escoller", +"Ok" => "Aceptar", "Cancel" => "Cancelar", -"No" => "Non", +"Choose" => "Escoller", "Yes" => "Si", -"Ok" => "Aceptar", +"No" => "Non", "The object type is not specified." => "Non se especificou o tipo de obxecto.", "Error" => "Erro", "The app name is not specified." => "Non se especificou o nome do aplicativo.", diff --git a/core/l10n/he.php b/core/l10n/he.php index 1db5820bdf7..56f273e95de 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -44,11 +44,11 @@ "months ago" => "חודשים", "last year" => "שנה שעברה", "years ago" => "שנים", -"Choose" => "בחירה", +"Ok" => "בסדר", "Cancel" => "ביטול", -"No" => "לא", +"Choose" => "בחירה", "Yes" => "כן", -"Ok" => "בסדר", +"No" => "לא", "The object type is not specified." => "סוג הפריט לא צוין.", "Error" => "שגיאה", "The app name is not specified." => "שם היישום לא צוין.", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 86136329d8f..d32d8d4b227 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -28,11 +28,11 @@ "months ago" => "mjeseci", "last year" => "prošlu godinu", "years ago" => "godina", -"Choose" => "Izaberi", +"Ok" => "U redu", "Cancel" => "Odustani", -"No" => "Ne", +"Choose" => "Izaberi", "Yes" => "Da", -"Ok" => "U redu", +"No" => "Ne", "Error" => "Pogreška", "Share" => "Podijeli", "Error while sharing" => "Greška prilikom djeljenja", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 0f110bfc4c7..eb0a3d1a91d 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -44,11 +44,11 @@ "months ago" => "több hónapja", "last year" => "tavaly", "years ago" => "több éve", -"Choose" => "Válasszon", +"Ok" => "Ok", "Cancel" => "Mégse", -"No" => "Nem", +"Choose" => "Válasszon", "Yes" => "Igen", -"Ok" => "Ok", +"No" => "Nem", "The object type is not specified." => "Az objektum típusa nincs megadva.", "Error" => "Hiba", "The app name is not specified." => "Az alkalmazás neve nincs megadva.", diff --git a/core/l10n/is.php b/core/l10n/is.php index 997a582d228..c6b7a6df325 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -43,11 +43,11 @@ "months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "árum síðan", -"Choose" => "Veldu", +"Ok" => "Í lagi", "Cancel" => "Hætta við", -"No" => "Nei", +"Choose" => "Veldu", "Yes" => "Já", -"Ok" => "Í lagi", +"No" => "Nei", "The object type is not specified." => "Tegund ekki tilgreind", "Error" => "Villa", "The app name is not specified." => "Nafn forrits ekki tilgreint", diff --git a/core/l10n/it.php b/core/l10n/it.php index 2d9b46ddfc1..d24c3330bfd 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -44,11 +44,11 @@ "months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", -"Choose" => "Scegli", +"Ok" => "Ok", "Cancel" => "Annulla", -"No" => "No", +"Choose" => "Scegli", "Yes" => "Sì", -"Ok" => "Ok", +"No" => "No", "The object type is not specified." => "Il tipo di oggetto non è specificato.", "Error" => "Errore", "The app name is not specified." => "Il nome dell'applicazione non è specificato.", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 617a8bf4f49..200e494d8c1 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -31,7 +31,7 @@ "November" => "11月", "December" => "12月", "Settings" => "設定", -"seconds ago" => "秒前", +"seconds ago" => "数秒前", "1 minute ago" => "1 分前", "{minutes} minutes ago" => "{minutes} 分前", "1 hour ago" => "1 時間前", @@ -44,11 +44,11 @@ "months ago" => "月前", "last year" => "一年前", "years ago" => "年前", -"Choose" => "選択", +"Ok" => "OK", "Cancel" => "キャンセル", -"No" => "いいえ", +"Choose" => "選択", "Yes" => "はい", -"Ok" => "OK", +"No" => "いいえ", "The object type is not specified." => "オブジェクタイプが指定されていません。", "Error" => "エラー", "The app name is not specified." => "アプリ名がしていされていません。", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 408afa372b7..2a75ce9c4f4 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -43,11 +43,11 @@ "months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", -"Choose" => "선택", +"Ok" => "승락", "Cancel" => "취소", -"No" => "아니요", +"Choose" => "선택", "Yes" => "예", -"Ok" => "승락", +"No" => "아니요", "The object type is not specified." => "객체 유형이 지정되지 않았습니다.", "Error" => "오류", "The app name is not specified." => "앱 이름이 지정되지 않았습니다.", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 11137f27aa2..79258b8e974 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -28,11 +28,11 @@ "months ago" => "Méint hier", "last year" => "Läscht Joer", "years ago" => "Joren hier", -"Choose" => "Auswielen", +"Ok" => "OK", "Cancel" => "Ofbriechen", -"No" => "Nee", +"Choose" => "Auswielen", "Yes" => "Jo", -"Ok" => "OK", +"No" => "Nee", "Error" => "Fehler", "Share" => "Deelen", "Password" => "Passwuert", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 563fd8884b0..0f55c341e56 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -31,11 +31,11 @@ "months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", -"Choose" => "Pasirinkite", +"Ok" => "Gerai", "Cancel" => "Atšaukti", -"No" => "Ne", +"Choose" => "Pasirinkite", "Yes" => "Taip", -"Ok" => "Gerai", +"No" => "Ne", "Error" => "Klaida", "Share" => "Dalintis", "Error while sharing" => "Klaida, dalijimosi metu", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 2ddea9421be..76188662fbb 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -44,11 +44,11 @@ "months ago" => "mēnešus atpakaļ", "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", -"Choose" => "Izvēlieties", +"Ok" => "Labi", "Cancel" => "Atcelt", -"No" => "Nē", +"Choose" => "Izvēlieties", "Yes" => "Jā", -"Ok" => "Labi", +"No" => "Nē", "The object type is not specified." => "Nav norādīts objekta tips.", "Error" => "Kļūda", "The app name is not specified." => "Nav norādīts lietotnes nosaukums.", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index d9da7669004..9743d8b299e 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -43,11 +43,11 @@ "months ago" => "пред месеци", "last year" => "минатата година", "years ago" => "пред години", -"Choose" => "Избери", +"Ok" => "Во ред", "Cancel" => "Откажи", -"No" => "Не", +"Choose" => "Избери", "Yes" => "Да", -"Ok" => "Во ред", +"No" => "Не", "The object type is not specified." => "Не е специфициран типот на објект.", "Error" => "Грешка", "The app name is not specified." => "Името на апликацијата не е специфицирано.", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index af51079b570..d8a2cf88367 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -21,10 +21,10 @@ "November" => "November", "December" => "Disember", "Settings" => "Tetapan", +"Ok" => "Ok", "Cancel" => "Batal", -"No" => "Tidak", "Yes" => "Ya", -"Ok" => "Ok", +"No" => "Tidak", "Error" => "Ralat", "Share" => "Kongsi", "Password" => "Kata laluan", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 97631d4df58..ef8be954ede 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -21,11 +21,11 @@ "last month" => "ပြီးခဲ့သောလ", "last year" => "မနှစ်က", "years ago" => "နှစ် အရင်က", -"Choose" => "ရွေးချယ်", +"Ok" => "အိုကေ", "Cancel" => "ပယ်ဖျက်မည်", -"No" => "မဟုတ်ဘူး", +"Choose" => "ရွေးချယ်", "Yes" => "ဟုတ်", -"Ok" => "အိုကေ", +"No" => "မဟုတ်ဘူး", "Password" => "စကားဝှက်", "Set expiration date" => "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်", "Expiration date" => "သက်တမ်းကုန်ဆုံးမည့်ရက်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 340625449ee..4e1ee45eec9 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -34,11 +34,11 @@ "months ago" => "måneder siden", "last year" => "forrige år", "years ago" => "år siden", -"Choose" => "Velg", +"Ok" => "Ok", "Cancel" => "Avbryt", -"No" => "Nei", +"Choose" => "Velg", "Yes" => "Ja", -"Ok" => "Ok", +"No" => "Nei", "Error" => "Feil", "Share" => "Del", "Error while sharing" => "Feil under deling", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index d7379849f14..5e050c33bec 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -44,11 +44,11 @@ "months ago" => "maanden geleden", "last year" => "vorig jaar", "years ago" => "jaar geleden", -"Choose" => "Kies", +"Ok" => "Ok", "Cancel" => "Annuleren", -"No" => "Nee", +"Choose" => "Kies", "Yes" => "Ja", -"Ok" => "Ok", +"No" => "Nee", "The object type is not specified." => "Het object type is niet gespecificeerd.", "Error" => "Fout", "The app name is not specified." => "De app naam is niet gespecificeerd.", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index abd5f5736af..ec432d495a4 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -29,11 +29,11 @@ "months ago" => "meses a", "last year" => "an passat", "years ago" => "ans a", -"Choose" => "Causís", +"Ok" => "D'accòrdi", "Cancel" => "Anulla", -"No" => "Non", +"Choose" => "Causís", "Yes" => "Òc", -"Ok" => "D'accòrdi", +"No" => "Non", "Error" => "Error", "Share" => "Parteja", "Error while sharing" => "Error al partejar", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 79b7301a039..2821bf77eed 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -44,11 +44,11 @@ "months ago" => "miesięcy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", -"Choose" => "Wybierz", +"Ok" => "OK", "Cancel" => "Anuluj", -"No" => "Nie", +"Choose" => "Wybierz", "Yes" => "Tak", -"Ok" => "OK", +"No" => "Nie", "The object type is not specified." => "Nie określono typu obiektu.", "Error" => "Błąd", "The app name is not specified." => "Nie określono nazwy aplikacji.", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 378b0789ed5..e5acd4da8f6 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", -"Choose" => "Escolha", +"Ok" => "Ok", "Cancel" => "Cancelar", -"No" => "Não", +"Choose" => "Escolha", "Yes" => "Sim", -"Ok" => "Ok", +"No" => "Não", "The object type is not specified." => "O tipo de objeto não foi especificado.", "Error" => "Erro", "The app name is not specified." => "O nome do app não foi especificado.", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 41506bd9ec4..67d43e372a1 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "ano passado", "years ago" => "anos atrás", -"Choose" => "Escolha", +"Ok" => "Ok", "Cancel" => "Cancelar", -"No" => "Não", +"Choose" => "Escolha", "Yes" => "Sim", -"Ok" => "Ok", +"No" => "Não", "The object type is not specified." => "O tipo de objecto não foi especificado", "Error" => "Erro", "The app name is not specified." => "O nome da aplicação não foi especificado", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index da9f1a7da94..51c1523d7e0 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -43,11 +43,11 @@ "months ago" => "luni în urmă", "last year" => "ultimul an", "years ago" => "ani în urmă", -"Choose" => "Alege", +"Ok" => "Ok", "Cancel" => "Anulare", -"No" => "Nu", +"Choose" => "Alege", "Yes" => "Da", -"Ok" => "Ok", +"No" => "Nu", "The object type is not specified." => "Tipul obiectului nu a fost specificat", "Error" => "Eroare", "The app name is not specified." => "Numele aplicației nu a fost specificat", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 2f90c5c5df3..0625a5d11d4 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -44,11 +44,11 @@ "months ago" => "несколько месяцев назад", "last year" => "в прошлом году", "years ago" => "несколько лет назад", -"Choose" => "Выбрать", +"Ok" => "Ок", "Cancel" => "Отмена", -"No" => "Нет", +"Choose" => "Выбрать", "Yes" => "Да", -"Ok" => "Ок", +"No" => "Нет", "The object type is not specified." => "Тип объекта не указан", "Error" => "Ошибка", "The app name is not specified." => "Имя приложения не указано", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 0399d56dfcf..1afb9e20c9b 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -44,11 +44,11 @@ "months ago" => "месяц назад", "last year" => "в прошлом году", "years ago" => "лет назад", -"Choose" => "Выбрать", +"Ok" => "Да", "Cancel" => "Отмена", -"No" => "Нет", +"Choose" => "Выбрать", "Yes" => "Да", -"Ok" => "Да", +"No" => "Нет", "The object type is not specified." => "Тип объекта не указан.", "Error" => "Ошибка", "The app name is not specified." => "Имя приложения не указано.", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index eaafca2f3f6..dc9801139a4 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -28,11 +28,11 @@ "months ago" => "මාස කීපයකට පෙර", "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර", -"Choose" => "තෝරන්න", +"Ok" => "හරි", "Cancel" => "එපා", -"No" => "නැහැ", +"Choose" => "තෝරන්න", "Yes" => "ඔව්", -"Ok" => "හරි", +"No" => "නැහැ", "Error" => "දෝෂයක්", "Share" => "බෙදා හදා ගන්න", "Share with" => "බෙදාගන්න", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 9b0bd45fce3..b52c8b03c41 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -44,11 +44,11 @@ "months ago" => "pred mesiacmi", "last year" => "minulý rok", "years ago" => "pred rokmi", -"Choose" => "Výber", +"Ok" => "Ok", "Cancel" => "Zrušiť", -"No" => "Nie", +"Choose" => "Výber", "Yes" => "Áno", -"Ok" => "Ok", +"No" => "Nie", "The object type is not specified." => "Nešpecifikovaný typ objektu.", "Error" => "Chyba", "The app name is not specified." => "Nešpecifikované meno aplikácie.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index df86a608bbd..b3cd5c353cf 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -44,11 +44,11 @@ "months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", -"Choose" => "Izbor", +"Ok" => "V redu", "Cancel" => "Prekliči", -"No" => "Ne", +"Choose" => "Izbor", "Yes" => "Da", -"Ok" => "V redu", +"No" => "Ne", "The object type is not specified." => "Vrsta predmeta ni podana.", "Error" => "Napaka", "The app name is not specified." => "Ime programa ni podano.", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index f869d1bc280..6881d0105c7 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -44,11 +44,11 @@ "months ago" => "muaj më parë", "last year" => "vitin e shkuar", "years ago" => "vite më parë", -"Choose" => "Zgjidh", +"Ok" => "Në rregull", "Cancel" => "Anulo", -"No" => "Jo", +"Choose" => "Zgjidh", "Yes" => "Po", -"Ok" => "Në rregull", +"No" => "Jo", "The object type is not specified." => "Nuk është specifikuar tipi i objektit.", "Error" => "Veprim i gabuar", "The app name is not specified." => "Nuk është specifikuar emri i app-it.", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 557cb6a8aba..b71d8cdd945 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -41,11 +41,11 @@ "months ago" => "месеци раније", "last year" => "прошле године", "years ago" => "година раније", -"Choose" => "Одабери", +"Ok" => "У реду", "Cancel" => "Откажи", -"No" => "Не", +"Choose" => "Одабери", "Yes" => "Да", -"Ok" => "У реду", +"No" => "Не", "The object type is not specified." => "Врста објекта није подешена.", "Error" => "Грешка", "The app name is not specified." => "Име програма није унето.", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index ff2e8d8d680..553afea5f71 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -44,11 +44,11 @@ "months ago" => "månader sedan", "last year" => "förra året", "years ago" => "år sedan", -"Choose" => "Välj", +"Ok" => "Ok", "Cancel" => "Avbryt", -"No" => "Nej", +"Choose" => "Välj", "Yes" => "Ja", -"Ok" => "Ok", +"No" => "Nej", "The object type is not specified." => "Objekttypen är inte specificerad.", "Error" => "Fel", "The app name is not specified." => " Namnet på appen är inte specificerad.", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 9863ca8154e..b45f38627a3 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -39,11 +39,11 @@ "months ago" => "மாதங்களுக்கு முன்", "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", -"Choose" => "தெரிவுசெய்க ", +"Ok" => "சரி", "Cancel" => "இரத்து செய்க", -"No" => "இல்லை", +"Choose" => "தெரிவுசெய்க ", "Yes" => "ஆம்", -"Ok" => "சரி", +"No" => "இல்லை", "The object type is not specified." => "பொருள் வகை குறிப்பிடப்படவில்லை.", "Error" => "வழு", "The app name is not specified." => "செயலி பெயர் குறிப்பிடப்படவில்லை.", diff --git a/core/l10n/te.php b/core/l10n/te.php index a18af79ab17..040ab9b550e 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -33,10 +33,10 @@ "months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", +"Ok" => "సరే", "Cancel" => "రద్దుచేయి", -"No" => "కాదు", "Yes" => "అవును", -"Ok" => "సరే", +"No" => "కాదు", "Error" => "పొరపాటు", "Password" => "సంకేతపదం", "Send" => "పంపించు", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 560c150066c..47d4b87b17c 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -43,11 +43,11 @@ "months ago" => "เดือน ที่ผ่านมา", "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", -"Choose" => "เลือก", +"Ok" => "ตกลง", "Cancel" => "ยกเลิก", -"No" => "ไม่ตกลง", +"Choose" => "เลือก", "Yes" => "ตกลง", -"Ok" => "ตกลง", +"No" => "ไม่ตกลง", "The object type is not specified." => "ชนิดของวัตถุยังไม่ได้รับการระบุ", "Error" => "พบข้อผิดพลาด", "The app name is not specified." => "ชื่อของแอปยังไม่ได้รับการระบุชื่อ", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 342a010da0a..891cfb6b849 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -44,11 +44,11 @@ "months ago" => "ay önce", "last year" => "geçen yıl", "years ago" => "yıl önce", -"Choose" => "seç", +"Ok" => "Tamam", "Cancel" => "İptal", -"No" => "Hayır", +"Choose" => "seç", "Yes" => "Evet", -"Ok" => "Tamam", +"No" => "Hayır", "The object type is not specified." => "Nesne türü belirtilmemiş.", "Error" => "Hata", "The app name is not specified." => "uygulama adı belirtilmedi.", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 685a31d52ed..1e86ed7d36c 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -44,11 +44,11 @@ "months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", -"Choose" => "Обрати", +"Ok" => "Ok", "Cancel" => "Відмінити", -"No" => "Ні", +"Choose" => "Обрати", "Yes" => "Так", -"Ok" => "Ok", +"No" => "Ні", "The object type is not specified." => "Не визначено тип об'єкту.", "Error" => "Помилка", "The app name is not specified." => "Не визначено ім'я програми.", @@ -107,6 +107,8 @@ "Edit categories" => "Редагувати категорії", "Add" => "Додати", "Security Warning" => "Попередження про небезпеку", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Будь ласка, оновіть інсталяцію PHP для безпечного використання ownCloud.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Не доступний безпечний генератор випадкових чисел, будь ласка, активуйте PHP OpenSSL додаток.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без безпечного генератора випадкових чисел зловмисник може визначити токени скидання пароля і заволодіти Вашим обліковим записом.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваші дані каталогів і файлів, ймовірно, доступні з інтернету, тому що .htaccess файл не працює.", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index e2448c4d651..544d041e48f 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -14,11 +14,11 @@ "November" => "نومبر", "December" => "دسمبر", "Settings" => "سیٹینگز", -"Choose" => "منتخب کریں", +"Ok" => "اوکے", "Cancel" => "منسوخ کریں", -"No" => "نہیں", +"Choose" => "منتخب کریں", "Yes" => "ہاں", -"Ok" => "اوکے", +"No" => "نہیں", "Error" => "ایرر", "Error while sharing" => "شئیرنگ کے دوران ایرر", "Error while unsharing" => "شئیرنگ ختم کرنے کے دوران ایرر", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index f03c58f3491..709a8743086 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -44,11 +44,11 @@ "months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", -"Choose" => "Chọn", +"Ok" => "Đồng ý", "Cancel" => "Hủy", -"No" => "Không", +"Choose" => "Chọn", "Yes" => "Có", -"Ok" => "Đồng ý", +"No" => "Không", "The object type is not specified." => "Loại đối tượng không được chỉ định.", "Error" => "Lỗi", "The app name is not specified." => "Tên ứng dụng không được chỉ định.", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index e7c99413cdc..9fbfac2eec1 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -41,11 +41,11 @@ "months ago" => "月前", "last year" => "去年", "years ago" => "年前", -"Choose" => "选择", +"Ok" => "好的", "Cancel" => "取消", -"No" => "否", +"Choose" => "选择", "Yes" => "是", -"Ok" => "好的", +"No" => "否", "The object type is not specified." => "未指定对象类型。", "Error" => "错误", "The app name is not specified." => "未指定应用名称。", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 68f8280f799..926d4691ed1 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -44,11 +44,11 @@ "months ago" => "月前", "last year" => "去年", "years ago" => "年前", -"Choose" => "选择(&C)...", +"Ok" => "好", "Cancel" => "取消", -"No" => "否", +"Choose" => "选择(&C)...", "Yes" => "是", -"Ok" => "好", +"No" => "否", "The object type is not specified." => "未指定对象类型。", "Error" => "错误", "The app name is not specified." => "未指定App名称。", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index d02b7be6601..178ab88e5e0 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -23,10 +23,10 @@ "yesterday" => "昨日", "last month" => "前一月", "months ago" => "個月之前", +"Ok" => "OK", "Cancel" => "取消", -"No" => "No", "Yes" => "Yes", -"Ok" => "OK", +"No" => "No", "Error" => "錯誤", "Shared" => "已分享", "Share" => "分享", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index b520c39f301..b9ebff745f9 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -161,76 +161,76 @@ msgstr "" msgid "Settings" msgstr "Instellings" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,8 +238,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -532,23 +534,23 @@ msgstr "sal gebruik word" msgid "Database user" msgstr "Databasis-gebruiker" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasis-wagwoord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasis naam" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Maak opstelling klaar" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 7b727d3ae3e..fb1d471b2ea 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 535d61f3944..56d117f64f7 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index d8d3d0197b6..b1a81514a9a 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 13198e5bec2..a4346ebad6d 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,24 +25,24 @@ msgstr "Wagwoord" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "webdienste onder jou beheer" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index b065abd8d77..4519a23f0f8 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_versions.po b/l10n/af_ZA/files_versions.po index cf1a612ba6e..b7815be858a 100644 --- a/l10n/af_ZA/files_versions.po +++ b/l10n/af_ZA/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 2196458f399..6d9fd425b11 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index f4b399dbdd1..bb6e67d13c1 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 982e4b399ca..3f61a263ae8 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Wagwoord" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hulp" diff --git a/l10n/af_ZA/user_webdavauth.po b/l10n/af_ZA/user_webdavauth.po index 5ccd72fea35..74d884a8bbb 100644 --- a/l10n/af_ZA/user_webdavauth.po +++ b/l10n/af_ZA/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 377f6c17f84..e5064b501d6 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: blackcoder \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,77 +164,77 @@ msgstr "كانون الاول" msgid "Settings" msgstr "تعديلات" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "اليوم" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "سنة مضت" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "اختيار" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "موافق" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "الغاء" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "لا" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "اختيار" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "نعم" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "موافق" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "لا" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "سيتم استخدمه" msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "انهاء التعديلات" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 287a7043f3a..d0eb037a69a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index e11e221b6e2..ca3f1fda57d 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-19 00:04+0100\n" -"PO-Revision-Date: 2013-03-18 11:00+0000\n" -"Last-Translator: Raed667 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index d7c1d01ac43..a9e752fed06 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 92546656f2f..2652c5fdb63 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 19:42+0000\n" -"Last-Translator: aboodilankaboot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "كلمة المرور" msgid "Submit" msgstr "تطبيق" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "تحميل" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index c10f296ee74..c4b191857f3 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index c086e82cd31..47c00fd32d9 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 511c1cbb187..9fb10d06367 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Matalqah \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 56dec415736..9e1ddcce833 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -125,44 +125,44 @@ msgstr "تم التحديث بنجاح" msgid "Saving..." msgstr "حفظ" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "تم الحذف" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "تراجع" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "تعذر حذف المستخدم" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "مجموعات" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "مدير المجموعة" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "حذف" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "اضافة مجموعة" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "حصل خطأ اثناء انشاء مستخدم" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index e9c5205c155..1c8adac39b9 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "كلمة المرور" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "المساعدة" diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index 14d1b06562b..72d0d26fea1 100644 --- a/l10n/ar/user_webdavauth.po +++ b/l10n/ar/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 21:50+0000\n" -"Last-Translator: blackcoder \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index 265ab2c4dc8..fa6af285a8d 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -161,76 +161,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,9 +238,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завяршыць ўстаноўку." diff --git a/l10n/be/files.po b/l10n/be/files.po index 285e775a324..b29349ac812 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index f1aff43a6c5..a9b0bfec81b 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index 016c8149190..dda0365cad4 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index c09045efa9b..efb3d2fd91e 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index cac41c5f4fb..2deeee0f870 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/be/files_versions.po b/l10n/be/files_versions.po index 8b4294e5f20..42178f677d0 100644 --- a/l10n/be/files_versions.po +++ b/l10n/be/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 1759595aea3..989a95417e6 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:36+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -117,72 +117,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index dcdbbee1cd2..5446ea05fe5 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index c807e563d28..97fbac3107d 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/be/user_webdavauth.po b/l10n/be/user_webdavauth.po index 16028ee79d8..b0ef05091d4 100644 --- a/l10n/be/user_webdavauth.po +++ b/l10n/be/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:05+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index c332b005cd1..df29a3b97c6 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -164,76 +164,76 @@ msgstr "" msgid "Settings" msgstr "Настройки" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "днес" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "последният месец" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "последната година" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "последните години" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Отказ" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -537,23 +537,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 4addb9168db..250844d1fbe 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 4ec6da246a3..ac98af1b674 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index a6df90bcaa3..d2292c3a604 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -38,13 +38,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 0d7fe218e8c..b34ed53ec9e 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 20:45+0000\n" -"Last-Translator: Stefan Ilivanov \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Парола" msgid "Submit" msgstr "Потвърждение" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Няма наличен преглед за" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 8791cd00f69..937d1ebd8a9 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index 895db875d9a..6ddabfb2532 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 0ef73e2dd55..2c6b87cd766 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Kiril \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 0457ea6caff..9a7e81c827b 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -123,44 +123,44 @@ msgstr "Обновено" msgid "Saving..." msgstr "Записване..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "изтрито" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "възтановяване" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групи" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Изтриване" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 43ed372ee08..090b9a91139 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Парола" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Помощ" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index c541db398fd..a237daa76ee 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 017d9bfbd8e..12dcdc5e3b6 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,77 +162,77 @@ msgstr "ডিসেম্বর" msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 মিনিট পূর্বে" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "আজ" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "গতমাস" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "গত বছর" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "বছর পূর্বে" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "বেছে নিন" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "তথাস্তু" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "বাতির" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "না" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "বেছে নিন" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "হ্যাঁ" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "তথাস্তু" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "না" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "ব্যবহৃত হবে" msgid "Database user" msgstr "ডাটাবেজ ব্যবহারকারী" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "ডাটাবেজ কূটশব্দ" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ডাটাবেজের নাম" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "ডাটাবেজ টেবলস্পেস" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "ডাটাবেজ হোস্ট" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 04badc5e7f5..5657516e13e 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 7c8a89fc3b7..1aee47b45e9 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 840f97b2499..352cfa41910 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and msgid "Error configuring Google Drive storage" msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 55a97e9d95c..4e14b78c0fe 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 09:58+0000\n" -"Last-Translator: Shubhra Paul \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "কূটশব্দ" msgid "Submit" msgstr "জমা দাও" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 4b31e778062..95ea7946c45 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 446a2d3471c..062b9605095 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index f402fcbb336..2d465cdd0de 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 05f219903a7..5512ff0009e 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "গোষ্ঠীসমূহ" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "গোষ্ঠী প্রশাসক" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "মুছে ফেল" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 9619227c80a..5c9f48d8703 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index 6bf9079f19b..cdc95646c24 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "URL:http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 24cd6be2c3b..aef1d1ecfe6 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -164,77 +164,77 @@ msgstr "Desembre" msgid "Settings" msgstr "Arranjament" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "avui" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ahir" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "el mes passat" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "l'any passat" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anys enrere" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escull" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "D'acord" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancel·la" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escull" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "D'acord" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "s'usarà" msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Acaba la configuració" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 4d95f585ff0..cd41e26dfed 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 14:46+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 98f7c39d55d..239900b0738 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 570b6de8396..90d62bfd1c7 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -39,13 +39,13 @@ msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox" msgid "Error configuring Google Drive storage" msgstr "Error en configurar l'emmagatzemament Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 682f63bb56b..cc9c28a8068 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 02:02+0200\n" -"PO-Revision-Date: 2012-10-01 08:50+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,24 +26,24 @@ msgstr "Contrasenya" msgid "Submit" msgstr "Envia" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Baixa" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "controleu els vostres serveis web" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 9d9af8c9739..33d6a484faf 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 8aeff6e34cd..6e6a97f8978 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 11:20+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -43,11 +43,11 @@ msgstr "fallada" msgid "File %s could not be reverted to version %s" msgstr "El fitxer %s no s'ha pogut revertir a la versió %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "No hi ha versións antigues disponibles" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "No heu especificat el camí" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 36b660ecaf0..7b9fbee414e 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index f3570ed8d4a..450e44b5ea7 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -126,44 +126,44 @@ msgstr "Actualitzada" msgid "Saving..." msgstr "S'està desant..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "esborrat" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desfés" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "No s'ha pogut eliminar l'usuari" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grups" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grup Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Suprimeix" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "afegeix grup" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Error en crear l'usuari" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index e04cdeb3dd7..703a2caaf51 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index bd7df15438f..4c7bf62ffe4 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 07:22+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "Autenticació WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 74638f38be8..8b85d622a87 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -164,77 +164,77 @@ msgstr "Prosinec" msgid "Settings" msgstr "Nastavení" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "dnes" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "včera" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "minulý mesíc" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "před měsíci" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "minulý rok" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "před lety" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Vybrat" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Zrušit" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Vybrat" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ano" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "bude použito" msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Dokončit nastavení" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 965e689bbf7..f94603ad39a 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 07:30+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 566eff0e84a..ac3415a0725 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 74fc6642126..9ad584ba1fa 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -41,13 +41,13 @@ msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbo msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index bf14914d766..33206ef2bd8 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 11:59+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -28,24 +28,24 @@ msgstr "Heslo" msgid "Submit" msgstr "Odeslat" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s s Vámi sdílí složku %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Náhled není dostupný pro" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "služby webu pod Vaší kontrolou" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 0b7136d9364..305933ee010 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 30a2abc5e80..3b0f8c58b41 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 07:20+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -42,11 +42,11 @@ msgstr "sehlhání" msgid "File %s could not be reverted to version %s" msgstr "Soubor %s nemohl být navrácen na verzi %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nejsou dostupné žádné starší verze" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nezadána cesta" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 85be4f27712..17804f61f99 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index fa50cfa0154..e70ffa9107f 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -126,44 +126,44 @@ msgstr "Aktualizováno" msgid "Saving..." msgstr "Ukládám..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "smazáno" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "zpět" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nelze odebrat uživatele" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Skupiny" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Správa skupiny" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Smazat" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "přidat skupinu" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Musíte zadat platné uživatelské jméno" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Chyba při vytváření užiatele" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 659bcb2da7c..12fe24c77ac 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 28b3d2f8f19..f2e2d7c56ce 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 09:06+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "Ověření WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/da/core.po b/l10n/da/core.po index daab9063b3d..23125c78c51 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Bawl \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,77 +171,77 @@ msgstr "December" msgid "Settings" msgstr "Indstillinger" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "i dag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "i går" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "sidste måned" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "måneder siden" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "sidste år" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Vælg" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Fortryd" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nej" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Vælg" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nej" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -544,23 +544,23 @@ msgstr "vil blive brugt" msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Afslut opsætning" diff --git a/l10n/da/files.po b/l10n/da/files.po index 4e78dc104bc..00f0e194f08 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 416d8486d5c..11ad02b829f 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 09:46+0000\n" -"Last-Translator: Frederik Lassen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index cc8e5b10257..c95d8c7f596 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-31 00:01+0100\n" -"PO-Revision-Date: 2013-03-30 18:00+0000\n" -"Last-Translator: Bawl \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,13 +41,13 @@ msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed" msgid "Error configuring Google Drive storage" msgstr "Fejl ved konfiguration af Google Drive plads" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 99b2cdf8e9c..b00e3af3fda 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 08:48+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Kodeord" msgid "Submit" msgstr "Send" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med dig" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Download" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "Webtjenester under din kontrol" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 5c96449c4be..8d9f7324397 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 6b6ab2ac91f..ca8cb9848de 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-05 00:18+0100\n" -"PO-Revision-Date: 2013-03-04 18:20+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index ef2223373c7..43d95936cda 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 282d822bded..4381377afec 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -132,44 +132,44 @@ msgstr "Opdateret" msgid "Saving..." msgstr "Gemmer..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "Slettet" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "fortryd" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kan ikke fjerne bruger" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppe Administrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Slet" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Tilføj gruppe" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 6ac95f9ce5c..e08e81e933f 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 32a2a3729ab..3ca1e0bfc83 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 12:07+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "WebDAV-godkendelse" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/de/core.po b/l10n/de/core.po index d9832487b0b..e2d6e7adb3b 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -177,77 +177,77 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "Heute" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "Gestern" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Auswählen" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nein" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Auswählen" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nein" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -550,23 +550,23 @@ msgstr "wird verwendet" msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de/files.po b/l10n/de/files.po index 56d2bffd5a7..478a17ef0eb 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -29,9 +29,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 06:50+0000\n" -"Last-Translator: kabum \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 3cfd6711a27..22a2714c2d5 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-18 00:05+0100\n" -"PO-Revision-Date: 2013-02-17 14:12+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 526b65c881a..ea0bfa1134e 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,13 +43,13 @@ msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index b48b1dfa72b..88ae0661675 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 21:36+0000\n" -"Last-Translator: Mirodin \n" -"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,24 +30,24 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Download" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "Web-Services unter Deiner Kontrolle" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 4685f7fcd01..1a4ec5faa23 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index c62bef6afd5..629272de0a4 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-23 00:02+0100\n" -"PO-Revision-Date: 2013-03-22 09:34+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 28b2f9aa325..f3919bae2ad 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index b7ba13672ad..141407e5190 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -140,44 +140,44 @@ msgstr "Aktualisiert" msgid "Saving..." msgstr "Speichern..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "gelöscht" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "rückgängig machen" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Benutzer konnte nicht entfernt werden." -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppen" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Löschen" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 878c9aa1a85..5c5672e57a9 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po index d2653f16859..3291e0d7af5 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 22:10+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 1cda6c32609..260be366437 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -28,9 +28,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -181,77 +181,77 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "Heute" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "Gestern" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Auswählen" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nein" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Auswählen" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nein" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -554,23 +554,23 @@ msgstr "wird verwendet" msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index c1af88b2acd..914ae61dd58 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -34,9 +34,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 21:50+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index f69dc4f4853..c9fc29bee5d 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-17 00:24+0100\n" -"PO-Revision-Date: 2013-02-16 23:00+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index c8c9c48d791..e2ff7d2b24f 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,13 +43,13 @@ msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index c1d9610ac76..acb0e4b391a 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 21:36+0000\n" -"Last-Translator: Mirodin \n" -"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,24 +30,24 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Download" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index ad4f0a4737e..982b0767507 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 21:41+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 934aa7d67f8..9ff7bc637c6 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 21:00+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index c6b2ab3070a..a8a37f9f197 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index fea97607cce..91dc723e691 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -32,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -145,44 +145,44 @@ msgstr "Aktualisiert" msgid "Saving..." msgstr "Speichern..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "gelöscht" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "rückgängig machen" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppen" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Löschen" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 0c6b3cde9c3..6e5351670d4 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index da76dff3ac0..ef77fdbbd58 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-21 00:03+0100\n" -"PO-Revision-Date: 2013-03-20 08:40+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 4a9080289c4..3bfd3322dd9 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:20+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -170,55 +170,55 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "σήμερα" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "χτες" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "χρόνια πριν" @@ -543,23 +543,23 @@ msgstr "θα χρησιμοποιηθούν" msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" diff --git a/l10n/el/files.po b/l10n/el/files.po index 1ec53c03b2a..f41bc5e8546 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 13:20+0000\n" -"Last-Translator: Petros Kyladitis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 7196402db42..a274a691c30 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index ae3b35b0c89..13a2353cb92 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:50+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index d5a761b6f70..b6fd051aa38 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 01:07+0000\n" -"Last-Translator: Dimitris M. \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -28,24 +28,24 @@ msgstr "Συνθηματικό" msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Λήψη" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index b02cc3bed5f..bac8c7a3fb0 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 2430051648a..0891a90b782 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:50+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 31df5b65e93..ecbe4952347 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:50+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index ab720d79438..4cbc650486e 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:40+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -134,44 +134,44 @@ msgstr "Ενημερώθηκε" msgid "Saving..." msgstr "Αποθήκευση..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "διαγράφηκε" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "αναίρεση" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Αδυναμία αφαίρεση χρήστη" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Ομάδες" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Ομάδα Διαχειριστών" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Διαγραφή" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index a2995398ea9..063a5a85901 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index ae9fa402bf8..12b784c7f84 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 08:10+0000\n" -"Last-Translator: Marios Bekatoros <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -29,7 +29,7 @@ msgstr "Αυθεντικοποίηση μέσω WebDAV " msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 0bbc5384114..c97c765e9c4 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -163,77 +163,77 @@ msgstr "Decembro" msgid "Settings" msgstr "Agordo" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hodiaŭ" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "lastamonate" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "lastajare" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "jaroj antaŭe" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Elekti" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Akcepti" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Nuligi" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Elekti" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jes" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Akcepti" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "estos uzata" msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Fini la instalon" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 12e93af73b7..7b9ca1937bd 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index 1a1260fd413..48e48cd33de 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 0483d097fd9..c9695b57bf5 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -38,13 +38,13 @@ msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." msgid "Error configuring Google Drive storage" msgstr "Eraro dum agordado de la memorservo Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index e9778f8450c..b2d00538f1a 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-14 02:05+0200\n" -"PO-Revision-Date: 2012-10-13 03:01+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Pasvorto" msgid "Submit" msgstr "Sendi" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 358cb293a87..8d0d618725c 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index f065928dfb8..a9bf35481ce 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-04-01 18:50+0000\n" -"Last-Translator: kristjan \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 81adfbc7bb8..9fc0db90fd9 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index b827ba5c852..c623ce092fb 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -123,44 +123,44 @@ msgstr "" msgid "Saving..." msgstr "Konservante..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "forigita" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "malfari" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupoj" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupadministranto" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Forigi" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 05c28a8824a..6aeb3085b6c 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index d9f66ba5177..c18903205ff 100644 --- a/l10n/eo/user_webdavauth.po +++ b/l10n/eo/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-21 00:04+0100\n" -"PO-Revision-Date: 2013-01-20 01:16+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "WebDAV-aŭtentigo" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/es/core.po b/l10n/es/core.po index 6603509b339..72132b21e08 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -174,77 +174,77 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoy" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ayer" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "mes pasado" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "hace meses" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "año pasado" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "hace años" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Seleccionar" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Aceptar" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Seleccionar" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Aceptar" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -547,23 +547,23 @@ msgstr "se utilizarán" msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Completar la instalación" diff --git a/l10n/es/files.po b/l10n/es/files.po index 7f43e11c295..a448b5bc8a3 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 17:20+0000\n" -"Last-Translator: telco2011 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index f4c68c14f4c..5c90271db37 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index e61835c6eae..b6fbbbeafc6 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Marcos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -42,13 +42,13 @@ msgstr "Por favor , proporcione un secreto y una contraseña válida de la app D msgid "Error configuring Google Drive storage" msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 4b1847f27af..46b4d66f10b 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 09:49+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -28,24 +28,24 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descargar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "No hay vista previa disponible para" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "Servicios web bajo su control" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 1b0f8f70f36..28a3cb9ded1 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 214d638d330..a69a1d1a87a 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 22:51+0000\n" -"Last-Translator: vicentevrl \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -46,11 +46,11 @@ msgstr "fallo" msgid "File %s could not be reverted to version %s" msgstr "El archivo %s no puede ser revertido a la version %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "No hay versiones antiguas disponibles" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Ruta no especificada" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index eb527ee4d95..cb2a9143726 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Marcos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 04888a9f08d..e9959550b20 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -138,44 +138,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "Guardando..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "borrado" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "deshacer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "No se puede quitar el usuario" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Eliminar" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Añadir Grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Se debe usar un nombre de usuario valido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Se debe usar una contraseña valida" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 998243e1cf7..25a063bf8fb 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Raul Fernandez Garcia \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index c3d87548a9b..8104595c79e 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-21 00:04+0100\n" -"PO-Revision-Date: 2013-01-20 02:31+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -28,7 +28,7 @@ msgstr "Autenticación de WevDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 472db3180b3..cf82c5251a6 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,77 +163,77 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoy" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ayer" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "el mes pasado" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "el año pasado" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "años atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Elegir" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Aceptar" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Elegir" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Aceptar" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "se utilizarán" msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Completar la instalación" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index acdb08fc755..4f2ae470853 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index be26d5b095f..a63950a8023 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 00:20+0100\n" -"PO-Revision-Date: 2013-02-11 16:00+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index fe89f32163a..c2c6a9eb635 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: juliabis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Por favor, proporcioná un secreto y una contraseña válida para la apl msgid "Error configuring Google Drive storage" msgstr "Error al configurar el almacenamiento de Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 62233486fb0..4c7375e8da7 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 04:38+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descargar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "servicios web controlados por vos" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 6fd3a47fca7..4f423c89d34 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index db63d14a041..af1d74768e6 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 00:50+0000\n" -"Last-Translator: juliabis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,11 +43,11 @@ msgstr "error" msgid "File %s could not be reverted to version %s" msgstr "El archivo %s no pudo ser revertido a la versión %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "No hay versiones antiguas disponibles" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Ruta de acceso no especificada" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 8284b524c1a..6105dc68ffa 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index a23143a63b8..d9e27509356 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -124,44 +124,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "Guardando..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "borrado" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "deshacer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Imposible remover usuario" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Borrar" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Agregar grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Debe ingresar un nombre de usuario válido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Error creando usuario" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 69b9d37f70c..b539d42812b 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index 6c88cac3fd0..3b62ceea0b7 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 16:22+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "Autenticación de WevDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 4265067672b..e0224d580e9 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 09:40+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,55 +162,55 @@ msgstr "Detsember" msgid "Settings" msgstr "Seaded" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "täna" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "eile" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "aastat tagasi" @@ -535,23 +535,23 @@ msgstr "kasutatakse" msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Lõpeta seadistamine" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 72fabba2731..757224d8702 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 09:20+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index c2fe900d3ac..99746b2373e 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-13 00:03+0100\n" -"PO-Revision-Date: 2013-02-12 18:01+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index f9116417c5a..69d1f03a4c2 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 09:50+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index c0302f73c06..9174858925e 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-30 00:01+0100\n" -"PO-Revision-Date: 2012-10-29 22:43+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Parool" msgid "Submit" msgstr "Saada" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Lae alla" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 5c61192eb5b..e8b7bd59bc5 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 07:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index ffd4dc68f79..88597f1f9b2 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 10:10+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index bc7497c4ede..fc470493906 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 10:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 0ea6c62c2b7..c603999f22e 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 09:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,44 +123,44 @@ msgstr "Uuendatud" msgid "Saving..." msgstr "Salvestamine..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "kustutatud" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "tagasi" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Ei suuda kustutada kasutajat" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupid" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupi admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Kustuta" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "lisa grupp" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Viga kasutaja loomisel" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 8cd40564508..588eb01cbbc 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 08:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index a08c908b965..11ee7102531 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 10:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 73e1ca78082..3573993e1ce 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,77 +164,77 @@ msgstr "Abendua" msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segundu" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "gaur" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "atzo" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "hilabete" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "joan den urtean" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "urte" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Aukeratu" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ados" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Ezeztatu" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ez" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Aukeratu" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Bai" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ados" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ez" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "erabiliko da" msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Bukatu konfigurazioa" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 0e57abc01a9..0442ccce913 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index d62efe1ac98..fdab73a5348 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-13 00:03+0100\n" -"PO-Revision-Date: 2013-02-12 22:00+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 3f3d36daefc..cb7fd45b34e 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,13 +39,13 @@ msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua" msgid "Error configuring Google Drive storage" msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 1b97a4c57e9..c42f25913a3 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 13:26+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Pasahitza" msgid "Submit" msgstr "Bidali" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%sk zurekin %s karpeta elkarbanatu du" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 4ee77f2b6c0..cacd96becd8 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 867a9523a09..7e42b6733a3 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 21:30+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index e7140ec247a..c65e98a9a9f 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index ba6c4c71e57..d9c6759ac5f 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -124,44 +124,44 @@ msgstr "Eguneratuta" msgid "Saving..." msgstr "Gordetzen..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "ezabatuta" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desegin" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Ezin izan da erabiltzailea aldatu" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Taldeak" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Talde administradorea" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Ezabatu" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "gehitu taldea" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Errore bat egon da erabiltzailea sortzean" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 7b70c5469a6..4f94b7dbd47 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index ada89a92f4d..8fc10281ae9 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-20 00:05+0100\n" -"PO-Revision-Date: 2013-01-18 23:47+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "WebDAV Autentikazioa" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 2708fceb964..a0d1c5ffb0c 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,77 +162,77 @@ msgstr "دسامبر" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "امروز" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "دیروز" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "ماه قبل" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "سال قبل" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "سال‌های قبل" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "انتخاب کردن" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "قبول" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "منصرف شدن" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "نه" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "انتخاب کردن" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "بله" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "قبول" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "نه" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "استفاده خواهد شد" msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "جدول پایگاه داده" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "اتمام نصب" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index ace762323cc..d3e345434f9 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 05:10+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index f9ee7fcc63b..2d471bafeb6 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-19 00:04+0100\n" -"PO-Revision-Date: 2013-03-18 11:40+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 99b3b036b75..fa5dc5f9d0b 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,13 +38,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index e72b1ce1dc6..f305fac0e0b 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 11:20+0000\n" -"Last-Translator: Amir Reza Asadi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "گذرواژه" msgid "Submit" msgstr "ثبت" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "دانلود" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index bb1b51c7efb..028245cdc3b 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 325fdb2a87f..64c3439a0b3 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -43,11 +43,11 @@ msgstr "شکست" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "هیچ نسخه قدیمی در دسترس نیست" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "هیچ مسیری مشخص نشده است" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 4702ff300e5..89ee6970916 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-06 13:40+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 3037631b1b1..4d3cc0f53bf 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 05:40+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -126,44 +126,44 @@ msgstr "بروز رسانی انجام شد" msgid "Saving..." msgstr "درحال ذخیره ..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "حذف شده" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "بازگشت" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "حذف کاربر امکان پذیر نیست" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "گروه ها" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "گروه مدیران" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "پاک کردن" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "افزودن گروه" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "خطا در ایجاد کاربر" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 59c855c010f..4d69ed86dae 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fa/user_webdavauth.po b/l10n/fa/user_webdavauth.po index e4088da32dd..62631e8bd8e 100644 --- a/l10n/fa/user_webdavauth.po +++ b/l10n/fa/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/fi/core.po b/l10n/fi/core.po index d032fb35180..9199f7cff20 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "asetukset" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,8 +237,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index 41347387bc6..a6abbe1b1a1 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/fi/lib.po b/l10n/fi/lib.po index e5c2bbd74a4..81257271c6f 100644 --- a/l10n/fi/lib.po +++ b/l10n/fi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index a31c1466e44..55b80921b6c 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -167,77 +167,77 @@ msgstr "Joulukuu" msgid "Settings" msgstr "Asetukset" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "tänään" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "eilen" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "viime kuussa" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "viime vuonna" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "vuotta sitten" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Valitse" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Peru" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Valitse" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Kyllä" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "käytetään" msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Viimeistele asennus" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index dddff09f303..2df6a15b42b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 3833503da06..76cae2f156f 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:04+0100\n" -"PO-Revision-Date: 2013-02-14 07:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 829e7f111b2..6a21eb6ee3e 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-31 00:01+0100\n" -"PO-Revision-Date: 2013-03-30 09:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -40,13 +40,13 @@ msgstr "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus." msgid "Error configuring Google Drive storage" msgstr "Virhe Google Drive levyn asetuksia tehtäessä" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 8bdb2b410f9..bef0c84fd17 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 12:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -27,24 +27,24 @@ msgstr "Salasana" msgid "Submit" msgstr "Lähetä" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Lataa" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 1b22f0ce780..83e0e9bc922 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index 90ba537696a..e05cdfb6e56 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 06:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index e7aa43b1831..220c28eae66 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 06:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index b2f910134fb..f86a50967d0 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -123,44 +123,44 @@ msgstr "Päivitetty" msgid "Saving..." msgstr "Tallennetaan..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "poistettu" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "kumoa" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Käyttäjän poistaminen ei onnistunut" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Ryhmät" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Poista" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "lisää ryhmä" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Virhe käyttäjää luotaessa" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index f6ea6620975..ed63037a2ec 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-31 00:01+0100\n" -"PO-Revision-Date: 2013-03-30 09:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index e1fa0ca8d17..4ed8a2e5a71 100644 --- a/l10n/fi_FI/user_webdavauth.po +++ b/l10n/fi_FI/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:05+0100\n" -"PO-Revision-Date: 2013-02-14 14:00+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index cd949b9019e..8051f8813bc 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Guillaume Paumier \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -174,77 +174,77 @@ msgstr "décembre" msgid "Settings" msgstr "Paramètres" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "aujourd'hui" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "hier" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "le mois dernier" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "l'année dernière" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "il y a plusieurs années" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Choisir" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Annuler" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Non" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Choisir" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Oui" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Non" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -547,23 +547,23 @@ msgstr "sera utilisé" msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Terminer l'installation" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 5a42c71afe4..ac62cd46adb 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-14 02:14+0200\n" -"PO-Revision-Date: 2013-04-13 13:20+0000\n" -"Last-Translator: froozeify \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 7c41515ad88..0a04e493c6a 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 60179f9dd4e..1eabea7ca22 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Zertrin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -40,13 +40,13 @@ msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de pas msgid "Error configuring Google Drive storage" msgstr "Erreur lors de la configuration du support de stockage Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 36628ca4e7d..4c4dc7b4089 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 14:21+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -30,24 +30,24 @@ msgstr "Mot de passe" msgid "Submit" msgstr "Envoyer" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Télécharger" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "services web sous votre contrôle" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 456f103b975..f37b15a7d8d 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index abef94b52e3..734bfa8efd2 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 19:21+0000\n" -"Last-Translator: Zertrin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 16a076f3582..0d82367ff6d 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 39c31194164..4e5add285aa 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -139,44 +139,44 @@ msgstr "Mise à jour effectuée avec succès" msgid "Saving..." msgstr "Sauvegarde..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "supprimé" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "annuler" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Impossible de retirer l'utilisateur" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Groupes" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Groupe Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Supprimer" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "ajouter un groupe" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index f8a1920bec7..0328aff362d 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Zertrin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -31,7 +31,7 @@ msgstr "Échec de la suppression de la configuration du serveur" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configuration est valide est la connexion peut être établie !" +msgstr "La configuration est valide et la connexion peut être établie !" #: ajax/testConfiguration.php:39 msgid "" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index 4d665c8ff42..efb5ef69b38 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-25 00:05+0100\n" -"PO-Revision-Date: 2013-01-24 01:04+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -30,7 +30,7 @@ msgstr "Authentification WebDAV" msgid "URL: http://" msgstr "URL : http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 9dc63f31022..7b320635e62 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -164,77 +164,77 @@ msgstr "decembro" msgid "Settings" msgstr "Configuracións" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "hai 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoxe" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "onte" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "último mes" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "último ano" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escoller" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Aceptar" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Non" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escoller" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Si" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Aceptar" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Non" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "vai ser utilizado" msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Rematar a configuración" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 7cb31be0d1b..13580aacf54 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 14:40+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 0f66e72f332..96058d128cf 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 15:39+0100\n" -"PO-Revision-Date: 2013-02-11 10:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 51b879d758d..8e665aecdf8 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -40,13 +40,13 @@ msgstr "Forneza unha chave correcta e segreda do Dropbox." msgid "Error configuring Google Drive storage" msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index d665b511c6d..f515b3253a7 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 13:00+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -27,24 +27,24 @@ msgstr "Contrasinal" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descargar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "servizos web baixo o seu control" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 3c4f5c565b2..8530c4e1579 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index 6c5d2ee8b43..695f30a3d3d 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 07:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -44,11 +44,11 @@ msgstr "produciuse un fallo" msgid "File %s could not be reverted to version %s" msgstr "Non foi posíbel reverter o ficheiro %s á versión %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Non hai versións antigas dispoñíbeis" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Non foi indicada a ruta" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 27a4cf8757e..c17f8ea6ee0 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 05a59612fe1..5d24c3a4926 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -126,44 +126,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "Gardando..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "eliminado" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desfacer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Non é posíbel retirar o usuario" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Eliminar" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "engadir un grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Produciuse un erro ao crear o usuario" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index bb736687f60..1d1c0ab36a3 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index e16010dc69f..301b089dd7a 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 15:39+0100\n" -"PO-Revision-Date: 2013-02-11 11:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/he/core.po b/l10n/he/core.po index 7c6bc855fd4..ee87e77344a 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -165,77 +165,77 @@ msgstr "דצמבר" msgid "Settings" msgstr "הגדרות" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "שניות" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "היום" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "אתמול" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "חודשים" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "שנים" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "בחירה" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "בסדר" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "ביטול" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "לא" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "בחירה" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "כן" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "בסדר" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "לא" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -538,23 +538,23 @@ msgstr "ינוצלו" msgid "Database user" msgstr "שם משתמש במסד הנתונים" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "ססמת מסד הנתונים" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "שם מסד הנתונים" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד הנתונים" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "שרת בסיס נתונים" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "סיום התקנה" diff --git a/l10n/he/files.po b/l10n/he/files.po index f22b2dcd831..2e5a6663f6c 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 2c26e96cd12..78810288118 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 280d2348b8f..dbb5147ed93 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -39,13 +39,13 @@ msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox." msgid "Error configuring Google Drive storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 2ccef5f2b52..1201adaf600 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-10 02:04+0200\n" -"PO-Revision-Date: 2012-10-09 11:45+0000\n" -"Last-Translator: Tomer Cohen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "ססמה" msgid "Submit" msgstr "שליחה" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "הורדה" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 4ec7b23ec83..9b28a90b86b 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index 171a23cbc9e..6dc80633be2 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -42,11 +42,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 5c807630803..37d481fbb35 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 4597abdc417..621702ce0bc 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -124,44 +124,44 @@ msgstr "" msgid "Saving..." msgstr "שומר.." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "ביטול" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "קבוצות" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "מנהל הקבוצה" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "מחיקה" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 1a0fa039545..0b189621453 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_webdavauth.po b/l10n/he/user_webdavauth.po index 65a279ed44f..b93834a9e1d 100644 --- a/l10n/he/user_webdavauth.po +++ b/l10n/he/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hi/core.po b/l10n/hi/core.po index f43d7de3b52..9f34c9b87f7 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,76 +162,76 @@ msgstr "" msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -239,8 +239,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -533,23 +535,23 @@ msgstr "उपयोग होगा" msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "डेटाबेस का नाम" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "सेटअप समाप्त करे" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 77fc1856685..55cc3a81f34 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 94768da1fcc..1d58cb0d5c7 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index b4d9abc7e76..42d8715e7bc 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 65e94288b42..232619dab62 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index f5adaa2e8cb..b963b8a8806 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index c58f10c16c6..6f18e09abbc 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index a47a99102b3..010b36e7420 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 0ef36ef7266..0ba86498403 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index b2f6a9761a5..157f5a55247 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "सहयोग" diff --git a/l10n/hi/user_webdavauth.po b/l10n/hi/user_webdavauth.po index cc71e94d7f6..ac6b020e078 100644 --- a/l10n/hi/user_webdavauth.po +++ b/l10n/hi/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 8d9dbcea6ef..36ffbbaa918 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -164,77 +164,77 @@ msgstr "Prosinac" msgid "Settings" msgstr "Postavke" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "danas" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "jučer" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mjeseci" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "godina" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Izaberi" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "U redu" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Odustani" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Izaberi" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "U redu" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "će se koristiti" msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Završi postavljanje" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 832a52920aa..84b9539ca8d 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 434831e8abe..49ffacda4ed 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index ff1ac7f575f..57ba61e83d2 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 90582fb7374..965254276bf 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 5d8da164494..7a1edc31fc3 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 95d4715bd68..72c7f48a4cb 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 9f53f454677..6ad791925ed 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 3269cfa11cd..6577be3e2b4 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -123,44 +123,44 @@ msgstr "" msgid "Saving..." msgstr "Spremanje..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "izbrisano" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "vrati" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupe" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupa Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Obriši" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index fbc304add5d..aa5d9446e95 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Pomoć" diff --git a/l10n/hr/user_webdavauth.po b/l10n/hr/user_webdavauth.po index d33ff57a3a1..78b5589c2be 100644 --- a/l10n/hr/user_webdavauth.po +++ b/l10n/hr/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 5640290395d..9706d55d511 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,77 +165,77 @@ msgstr "december" msgid "Settings" msgstr "Beállítások" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "ma" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "tegnap" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "több hónapja" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "tavaly" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "több éve" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Válasszon" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Mégse" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nem" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Válasszon" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Igen" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nem" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -538,23 +538,23 @@ msgstr "adatbázist fogunk használni" msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Az adatbázis neve" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Az adatbázis táblázattér (tablespace)" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "A beállítások befejezése" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 1194d9e1c2d..ef50be8ac51 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 13:10+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 4ad1f0108e8..b358c1d440b 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-14 00:05+0100\n" -"PO-Revision-Date: 2013-02-13 14:00+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 256bc81c4db..f9b482fd6ce 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,13 +38,13 @@ msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" msgid "Error configuring Google Drive storage" msgstr "A Google Drive tárolót nem sikerült beállítani" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 0534ea09d43..5ec7cac7630 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 17:39+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Jelszó" msgid "Submit" msgstr "Elküld" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Letöltés" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index c035242eb2c..bf38caacad5 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index f166ccc2e35..2202da640bb 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "nem sikerült" msgid "File %s could not be reverted to version %s" msgstr "%s állományt nem sikerült átállítani erre a változatra: %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nincs régebbi változat" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nincs megadva az útvonal" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index f82cf57021b..4251d9809fc 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 8d9d0e1c0f5..61bef740752 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -124,44 +124,44 @@ msgstr "Frissítve" msgid "Saving..." msgstr "Mentés..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "törölve" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "visszavonás" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "A felhasználót nem sikerült eltávolítáni" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Csoportok" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Csoportadminisztrátor" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Törlés" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "csoport hozzáadása" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "A felhasználó nem hozható létre" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index d7f7177ba75..7e833a65226 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po index f661c0e4ee0..d7f60e3f905 100644 --- a/l10n/hu_HU/user_webdavauth.po +++ b/l10n/hu_HU/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-29 00:04+0100\n" -"PO-Revision-Date: 2013-01-28 11:27+0000\n" -"Last-Translator: akoscomp \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "WebDAV hitelesítés" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hy/files.po b/l10n/hy/files.po index a68a0138b83..6548eb6fba7 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 6563d686916..262948abfc9 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 110ce8444cc..2cde2eb10a2 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 170d774b3cd..afe7a748499 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Ջնջել" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index a43d57ba72e..25be34611fc 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:12+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -161,76 +161,76 @@ msgstr "Decembre" msgid "Settings" msgstr "Configurationes" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancellar" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,8 +238,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -532,23 +534,23 @@ msgstr "essera usate" msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index ad9b1aea133..bd599c7c1b7 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 11e4cc8eb8c..1fae34d8cc0 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index e79169bb213..f840fe05c1b 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 05ecbbb1465..9c831a86e56 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 8ac8c8f293c..e64cfd2633d 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 400157adb8f..3717ffc9d49 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index c61f3e4c679..318fe7a9c63 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 1c72de58d92..41b5e193ab1 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:09+0200\n" -"PO-Revision-Date: 2013-04-10 10:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 602cde8f9a6..456021e477b 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Adjuta" diff --git a/l10n/ia/user_webdavauth.po b/l10n/ia/user_webdavauth.po index cee575b4381..dde76722d67 100644 --- a/l10n/ia/user_webdavauth.po +++ b/l10n/ia/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/id/core.po b/l10n/id/core.po index d84472d76cf..c45ad98fd2b 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,55 +167,55 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hari ini" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "kemarin" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "beberapa tahun lalu" @@ -540,23 +540,23 @@ msgstr "akan digunakan" msgid "Database user" msgstr "Pengguna basis data" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Sandi basis data" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nama basis data" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespace basis data" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host basis data" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Selesaikan instalasi" diff --git a/l10n/id/files.po b/l10n/id/files.po index 591a4e843bf..998d6e50064 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 7a7d4d5211d..6adbc04ba96 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 03:12+0000\n" -"Last-Translator: w41l \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 2772346657a..8ee624833af 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 9bd840324e9..0efab864e76 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 060a99434e8..fde2b7d5cb9 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:10+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 2dd987695e4..f63611d434d 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index bd9587aa657..d014bc056ea 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 197d26ac203..2dcd31a4c75 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -126,44 +126,44 @@ msgstr "Diperbarui" msgid "Saving..." msgstr "Menyimpan..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "dihapus" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "urungkan" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Tidak dapat menghapus pengguna" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grup" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Admin Grup" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Hapus" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "tambah grup" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Gagal membuat pengguna" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 75e5bbf8d99..b2e46704a2b 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/user_webdavauth.po b/l10n/id/user_webdavauth.po index 9ae62e5a2cf..0ac81cebe68 100644 --- a/l10n/id/user_webdavauth.po +++ b/l10n/id/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 02:30+0000\n" -"Last-Translator: w41l \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 2d4e0839ee4..7fffb7d1dce 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,77 +162,77 @@ msgstr "Desember" msgid "Settings" msgstr "Stillingar" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sek síðan" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 min síðan" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "í dag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "í gær" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "síðasta ári" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "árum síðan" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Veldu" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Í lagi" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Hætta við" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Veldu" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Já" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Í lagi" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "verður notað" msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Gagnagrunns lykilorð" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Virkja uppsetningu" diff --git a/l10n/is/files.po b/l10n/is/files.po index a5153c7f0d5..3b6c150aeb0 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index 63f151c73c1..e5df846e8bb 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 644ef518ad4..f3914d98cff 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -38,13 +38,13 @@ msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" msgid "Error configuring Google Drive storage" msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index d37c6475559..89c5f2cc2af 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 15:08+0000\n" -"Last-Translator: sveinn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Lykilorð" msgid "Submit" msgstr "Senda" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index b6fccfcb1c9..ca786d8b1c0 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index 4159653790a..5717e05eff9 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 4d18e99a26e..e64d4205299 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index c26757a9a0c..eea0a0b3e9b 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "Er að vista ..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "afturkalla" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Hópar" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Hópstjóri" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Eyða" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 02d72b9058d..6b6e486032b 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po index 8bf05572184..d87d79fafbb 100644 --- a/l10n/is/user_webdavauth.po +++ b/l10n/is/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "Vefslóð: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/it/core.po b/l10n/it/core.po index 795ef1ace69..9abf2d1c045 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -166,77 +166,77 @@ msgstr "Dicembre" msgid "Settings" msgstr "Impostazioni" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "oggi" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ieri" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "mese scorso" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mesi fa" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "anno scorso" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anni fa" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Scegli" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Annulla" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Scegli" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sì" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -539,23 +539,23 @@ msgstr "sarà utilizzato" msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Termina la configurazione" diff --git a/l10n/it/files.po b/l10n/it/files.po index 00e752a4fc8..e4a9e38f1df 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 07:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index e94b7892213..3839ab13a98 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 84e772567cd..5743de999b7 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -39,13 +39,13 @@ msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi." msgid "Error configuring Google Drive storage" msgstr "Errore durante la configurazione dell'archivio Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index aaabba1bea3..38971183ab9 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 06:41+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,24 +26,24 @@ msgstr "Password" msgid "Submit" msgstr "Invia" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Scarica" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "servizi web nelle tue mani" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index c120324a36d..4a03d9e7359 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 57ca778df64..1acb6a0db02 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "non riuscita" msgid "File %s could not be reverted to version %s" msgstr "Il file %s non può essere ripristinato alla versione %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Non sono disponibili versioni precedenti" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nessun percorso specificato" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 92bba9c7d37..4daad98778f 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 0e4be0b729a..06ec6749b51 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -127,44 +127,44 @@ msgstr "Aggiornato" msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "eliminati" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "annulla" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Impossibile rimuovere l'utente" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppi" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppi amministrati" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Elimina" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "aggiungi gruppo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 36930d04bfb..780bc6319cd 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index ba6bfbe7d44..3dca23310fc 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-17 00:26+0100\n" -"PO-Revision-Date: 2013-01-16 06:51+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "Autenticazione WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index c4bbe6b4329..ebe76b82ec0 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,77 +164,77 @@ msgstr "12月" msgid "Settings" msgstr "設定" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" -msgstr "秒前" +msgstr "数秒前" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "今日" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "昨日" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "一月前" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "月前" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "一年前" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "選択" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "キャンセル" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "いいえ" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "選択" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "はい" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "いいえ" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "が使用されます" msgid "Database user" msgstr "データベースのユーザ名" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "データベースのパスワード" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "データベース名" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "データベースの表領域" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "データベースのホスト名" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "セットアップを完了します" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index ebbea30f049..8ea8587439c 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 12:00+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -258,7 +258,7 @@ msgstr "保存" #: templates/index.php:7 msgid "New" -msgstr "新規" +msgstr "新規作成" #: templates/index.php:10 msgid "Text file" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 6d5a563dfe0..4d2e89a2591 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 92a8319325b..b084e4a0664 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "有効なDropboxアプリのキーとパスワードを入力して下 msgid "Error configuring Google Drive storage" msgstr "Googleドライブストレージの設定エラー" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告: \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 28be75107c8..876ebabb366 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-23 02:02+0200\n" -"PO-Revision-Date: 2012-10-22 11:01+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "パスワード" msgid "Submit" msgstr "送信" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "プレビューはありません" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "管理下のウェブサービス" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 16d0be2a1a8..f16dc84de56 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 7b11e7cf484..d052012496b 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 05:10+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 555153ff9e6..8d6bc8df10b 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -192,7 +192,7 @@ msgstr "インストールガイドをよく確認してくだ #: template.php:113 msgid "seconds ago" -msgstr "秒前" +msgstr "数秒前" #: template.php:114 msgid "1 minute ago" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 1218f5a5f9f..265d861a3de 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -125,44 +125,44 @@ msgstr "更新済み" msgid "Saving..." msgstr "保存中..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "削除" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "元に戻す" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "ユーザを削除出来ません" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "グループ" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "グループ管理者" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "削除" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "グループを追加" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "有効なユーザ名を指定する必要があります" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "ユーザ作成エラー" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" @@ -337,7 +337,7 @@ msgid "" "licensed under the AGPL." -msgstr "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。" +msgstr "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。" #: templates/apps.php:11 msgid "Add your App" @@ -394,11 +394,11 @@ msgstr "現在、%s / %s を利用していま #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "あなたのファイルを同期するためのアプリを取得" +msgstr "ファイルを同期するためのアプリを取得" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "初回実行ウィザードを再度表示する" +msgstr "初回ウィザードを再表示する" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index b5271f26536..75cc31572a6 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 966cae84162..3b17802d245 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-17 00:26+0100\n" -"PO-Revision-Date: 2013-01-16 05:50+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "WebDAV 認証" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ka/core.po b/l10n/ka/core.po index fff9226e31d..cb2aaf68fff 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "დღეს" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 342f9ca6aab..93cf94b26ab 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 5321e594c35..adea9e1d6f3 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka/files_external.po b/l10n/ka/files_external.po index ff99ab06484..5a7c8676410 100644 --- a/l10n/ka/files_external.po +++ b/l10n/ka/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index f4c48c38cd0..3d6704f80be 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:34+0100\n" -"PO-Revision-Date: 2013-02-27 04:40+0000\n" -"Last-Translator: GeoCybers \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index c20b8f1e13f..f1f26c53ddd 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_versions.po b/l10n/ka/files_versions.po index 4f6c948624d..55ea3250c21 100644 --- a/l10n/ka/files_versions.po +++ b/l10n/ka/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 607e49334b6..c401f407ac9 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index f0d51ede958..1d2ec64e034 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index a49552a01fb..0dfd81d2bb1 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "პაროლი" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "შველა" diff --git a/l10n/ka/user_webdavauth.po b/l10n/ka/user_webdavauth.po index 3c15980932e..9cc3db2b602 100644 --- a/l10n/ka/user_webdavauth.po +++ b/l10n/ka/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 8f28e3ceb96..8da06db4327 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:48+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,55 +162,55 @@ msgstr "დეკემბერი" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:717 +#: js/js.js:718 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:718 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:719 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:720 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:721 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:722 +#: js/js.js:723 msgid "today" msgstr "დღეს" -#: js/js.js:723 +#: js/js.js:724 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:724 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:725 +#: js/js.js:726 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:726 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:727 +#: js/js.js:728 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:728 +#: js/js.js:729 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:729 +#: js/js.js:730 msgid "years ago" msgstr "წლის წინ" @@ -535,23 +535,23 @@ msgstr "გამოყენებული იქნება" msgid "Database user" msgstr "მონაცემთა ბაზის მომხმარებელი" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "მონაცემთა ბაზის პაროლი" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "მონაცემთა ბაზის სახელი" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "მონაცემთა ბაზის ჰოსტი" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index fd27bc6ca29..b23917765ca 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:49+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index c0eb489fc80..b1bc0515476 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 14:10+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index c9092e688de..54bce79203f 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 14:30+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 2edbce0e43f..0d46e1c1a5c 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 11:09+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 6e8e37e8184..ec48b3823a7 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:30+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index 77b0ca0d8d5..ecda637d054 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 14:10+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 75c4fc21393..c36273be033 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 11:09+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 29025ab733f..dd0f972d507 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" -"PO-Revision-Date: 2013-04-14 15:20+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index ebde56128d3..69e1df8eac5 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:50+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -19,76 +20,76 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "შეცდომა სერვერის კონფიგურაციის წაშლისას" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "კონფიგურაცია მართებულია და კავშირი დამყარდება!" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები." #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "კონფიგურაცია არ არის მართებული. გთხოვთ ჩაიხედოთ დეტალური ინფორმაციისთვის ownCloud –ის ლოგში." #: js/settings.js:66 msgid "Deletion failed" -msgstr "წაშლის ველი" +msgstr "წაშლა ვერ განხორციელდა" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "დაბრუნდებით სერვერის წინა კონფიგურაციაში?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "დავტოვოთ პარამეტრები?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "სერვერის პარამეტრების დამატება ვერ მოხერხდა" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "კავშირის ტესტირება მოხერხდა" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "კავშირის ტესტირება ვერ მოხერხდა" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "წაშლის დადასტურება" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "გაფრთხილება: აპლიკაციის user_ldap და user_webdavauth არათავსებადია. თქვენ შეიძლება შეეჩეხოთ მოულოდნელ შშედეგებს. თხოვეთ თქვენს ადმინისტრატორს ჩათიშოს ერთერთი." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "გაფრთხილება: PHP LDAP მოდული არ არის ინსტალირებული, ბექენდი არ იმუშავებს. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის." #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "სერვერის პარამეტრები" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "" +msgstr "სერვერის პარამეტრების დამატება" #: templates/settings.php:36 msgid "Host" @@ -97,90 +98,90 @@ msgstr "ჰოსტი" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://" #: templates/settings.php:39 msgid "Base DN" -msgstr "" +msgstr "საწყისი DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "ერთი საწყისი DN ერთ ხაზზე" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში" #: templates/settings.php:43 msgid "User DN" -msgstr "" +msgstr "მომხმარებლის DN" #: templates/settings.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 "" +msgstr "მომხმარებლის DN რომელთანაც უნდა მოხდეს დაკავშირება მოხდება შემდეგნაირად მაგ: uid=agent,dc=example,dc=com. ხოლო ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." #: templates/settings.php:46 msgid "Password" -msgstr "" +msgstr "პაროლი" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." #: templates/settings.php:50 msgid "User Login Filter" -msgstr "" +msgstr "მომხმარებლის ფილტრი" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "როცა შემოსვლა განხორციელდება ასეიძლება მოვახდინოთ გაფილტვრა. %%uid შეიცვლება იუზერნეიმით მომხმარებლის ველში." #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "გამოიყენეთ %%uid დამასრულებელი მაგ: \"uid=%%uid\"" #: templates/settings.php:55 msgid "User List Filter" -msgstr "" +msgstr "მომხმარებლებიის სიის ფილტრი" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "გაფილტვრა განხორციელდება, როცა მომხმარებლების სია ჩამოიტვირთება." #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=person\"." #: templates/settings.php:60 msgid "Group Filter" -msgstr "" +msgstr "ჯგუფის ფილტრი" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "გაფილტვრა განხორციელდება, როცა ჯგუფის სია ჩამოიტვირთება." #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=posixGroup\"." #: templates/settings.php:68 msgid "Connection Settings" -msgstr "" +msgstr "კავშირის პარამეტრები" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "კონფიგურაცია აქტიურია" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "როცა გადანიშნულია, ეს კონფიგურაცია გამოტოვებული იქნება." #: templates/settings.php:71 msgid "Port" @@ -188,145 +189,145 @@ msgstr "პორტი" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "ბექაფ (რეპლიკა) ჰოსტი" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "მიუთითეთ რაიმე ბექაფ ჰოსტი. ის უნდა იყოს ძირითადი LDAP/AD სერვერის რეპლიკა." #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "ბექაფ (რეპლიკა) პორტი" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "" +msgstr "გამორთეთ ძირითადი სერვერი" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "როცა მონიშნულია, ownCloud დაუკავშირდება მხოლოდ რეპლიკა სერვერს." #: templates/settings.php:75 msgid "Use TLS" -msgstr "" +msgstr "გამოიყენეთ TLS" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "არ გამოიყენოთ დამატებით LDAPS კავშირი. ის წარუმატებლად დასრულდება." #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "LDAP server (Windows)" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "გამორთეთ SSL სერთიფიკატის ვალიდაცია." #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "იმ შემთხვევაში თუ მუშაობს მხოლოდ ეს ოფცია, დააიმპორტეთ LDAP სერვერის SSL სერთიფიკატი თქვენს ownCloud სერვერზე." #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "არ არის რეკომენდირებული, გამოიყენეთ მხოლოდ სატესტოდ." #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "ქეშის სიცოცხლის ხანგრძლივობა" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "წამებში. ცვლილება ასუფთავებს ქეშს." #: templates/settings.php:80 msgid "Directory Settings" -msgstr "" +msgstr "დირექტორიის პარამეტრები" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "" +msgstr "მომხმარებლის დისფლეის სახელის ფილდი" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "LDAP ატრიბუტი მომხმარებლის ownCloud სახელის გენერაციისთვის." #: templates/settings.php:83 msgid "Base User Tree" -msgstr "" +msgstr "ძირითად მომხმარებელთა სია" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "ერთი მომხმარებლის საწყისი DN ერთ ხაზზე" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "მომხმარებლის ძებნის ატრიბუტი" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "" +msgstr "ოფციონალური; თითო ატრიბუტი თითო ხაზზე" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "" +msgstr "ჯგუფის დისფლეის სახელის ფილდი" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "LDAP ატრიბუტი ჯგუფის ownCloud სახელის გენერაციისთვის." #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "" +msgstr "ძირითად ჯგუფთა სია" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "ერთი ჯგუფის საწყისი DN ერთ ხაზზე" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "" +msgstr "ჯგუფური ძებნის ატრიბუტი" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "" +msgstr "ჯგუფის წევრობის ასოციაცია" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "" +msgstr "სპეციალური ატრიბუტები" #: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "ქვოტას ველი" #: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "საწყისი ქვოტა" #: templates/settings.php:93 msgid "in bytes" -msgstr "" +msgstr "ბაიტებში" #: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "იმეილის ველი" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი." #: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "კავშირის ტესტირება" #: templates/settings.php:99 msgid "Help" diff --git a/l10n/ka_GE/user_webdavauth.po b/l10n/ka_GE/user_webdavauth.po index f4ffea5b9a7..48f9fba8665 100644 --- a/l10n/ka_GE/user_webdavauth.po +++ b/l10n/ka_GE/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:50+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index cacb6c95963..1a32e4aae26 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,8 +237,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 750b56b6b5f..60c8c634e2c 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index a3a70bbe6e5..13626aad5a4 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index 1b4f92a170c..60bd0f142f0 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index e94682baac0..04f82d2e654 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 649be08ae1a..3547c1bf8bf 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/kn/files_versions.po b/l10n/kn/files_versions.po index 57e19d17851..a8249bb2ba7 100644 --- a/l10n/kn/files_versions.po +++ b/l10n/kn/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 95b4872e94c..dce059b9c80 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 867408992f0..9dbdfea6144 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 777d0e1b974..1b252cb4194 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/user_webdavauth.po b/l10n/kn/user_webdavauth.po index 16b7b5b5621..c4192a2576d 100644 --- a/l10n/kn/user_webdavauth.po +++ b/l10n/kn/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 6e65cc6963d..aa6678269d5 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -165,77 +165,77 @@ msgstr "12월" msgid "Settings" msgstr "설정" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "초 전" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "오늘" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "어제" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "지난 달" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "개월 전" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "작년" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "년 전" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "선택" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "승락" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "취소" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "아니요" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "선택" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "예" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "승락" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "아니요" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -538,23 +538,23 @@ msgstr "사용될 예정" msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "설치 완료" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 3aaacfdd628..454decde7b8 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 79f1c6ae607..874e4832409 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 306e67eeaa4..ceb77ef9772 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -41,13 +41,13 @@ msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오." msgid "Error configuring Google Drive storage" msgstr "Google 드라이브 저장소 설정 오류" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 0190903ffa0..eacbe1a4ebc 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -4,14 +4,15 @@ # # Translators: # 남자사람 , 2012. +# Park Shinjo , 2013. # Shinjo Park , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 06:12+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +28,24 @@ msgstr "암호" msgid "Submit" msgstr "제출" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "다운로드" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index e18e542aaef..4da8a759ef8 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 3598454523d..2e8f8fec0f5 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 16:50+0000\n" -"Last-Translator: Sung Jin Gang \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 3699d0cb0ba..cc102819885 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 542bf452f7b..3ff506d4a95 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:09+0200\n" -"PO-Revision-Date: 2013-04-10 17:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index ad02f58dde8..299a770209a 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index f10bd76454e..b3a842c9f9f 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 08:10+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "WebDAV 인증" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index f015f7cd696..1a5f27625fd 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -161,76 +161,76 @@ msgstr "" msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -534,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "به‌كارهێنه‌ری داتابه‌یس" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "وشه‌ی نهێنی داتا به‌یس" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ناوی داتابه‌یس" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "هۆستی داتابه‌یس" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 1aade6ed34e..8a381380be8 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 25da3eec3af..e8ffbf31f91 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 40a38765f0b..615505f25c1 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index daa1ed36ce9..fc8210c0549 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" -"PO-Revision-Date: 2012-10-07 00:05+0000\n" -"Last-Translator: Hozha Koyi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "تێپه‌ڕه‌وشه" msgid "Submit" msgstr "ناردن" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "داگرتن" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 5329cb538e3..7f649909e07 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index d5bfd4c337f..149ad35dbfe 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 597d8b75096..72e87c63121 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 6a7ca7f418f..0d5a13796ad 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 0e3bf045fa2..89de1afb37c 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "یارمەتی" diff --git a/l10n/ku_IQ/user_webdavauth.po b/l10n/ku_IQ/user_webdavauth.po index 313845a14b2..3acc0982493 100644 --- a/l10n/ku_IQ/user_webdavauth.po +++ b/l10n/ku_IQ/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 1963026ba34..604cdfeb85f 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,77 +162,77 @@ msgstr "Dezember" msgid "Settings" msgstr "Astellungen" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "Läschte Mount" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "vru {months} Méint" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "Méint hier" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "Läscht Joer" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "Joren hier" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Auswielen" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Ofbriechen" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nee" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Auswielen" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jo" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nee" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "wärt benotzt ginn" msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datebank Tabelle-Gréisst" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installatioun ofschléissen" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 149e9933765..96058281e73 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 6705693de91..1eca9f95801 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 4a9bd53d5c2..b923b07ae80 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index f4d8ed5cc8e..972dce02780 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 13:36+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "Passwuert" msgid "Submit" msgstr "" -#: templates/public.php:11 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:16 templates/public.php:32 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:31 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index dca63133d8a..d774d9ccdce 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index c820aa4669e..d28d02613bc 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index ee8465ae6f8..de22578b7ff 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index c49b6ae351e..c80db5e8316 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "Speicheren..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "geläscht" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "réckgängeg man" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppen" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppen Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Läschen" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 8e3b5b7e312..f1d3a5397de 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Passwuert" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hëllef" diff --git a/l10n/lb/user_webdavauth.po b/l10n/lb/user_webdavauth.po index fb53f7bcb24..2b1c6404d5e 100644 --- a/l10n/lb/user_webdavauth.po +++ b/l10n/lb/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index c953a0270a7..7c12af72de2 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,77 +162,77 @@ msgstr "Gruodis" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "šiandien" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "vakar" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "praeitais metais" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "prieš metus" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Pasirinkite" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Gerai" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Atšaukti" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Pasirinkite" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Taip" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Gerai" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "bus naudojama" msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Baigti diegimą" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index b32048b7e66..d2a357328a3 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index 2e398b6292a..34e4264e6c5 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 690cb476226..89e5eb1d39a 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Min2liz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"." msgid "Error configuring Google Drive storage" msgstr "Klaida nustatinėjant Google Drive talpyklą" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index e6c1c3865f0..c4369f8248a 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 9063682e9ad..81179965774 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index f43ae71f842..5530b9feaf2 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 06:10+0000\n" -"Last-Translator: Min2liz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 010c61df3bc..798d9c6cb17 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 3d3f85dbfa5..838d97af346 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -122,44 +122,44 @@ msgstr "" msgid "Saving..." msgstr "Saugoma.." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "anuliuoti" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupės" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Ištrinti" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 28684ff33e6..bf16727734f 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -87,248 +87,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Slaptažodis" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Grupės filtras" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Prievadas" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Naudoti TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "Išjungti SSL sertifikato tikrinimą." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "Nerekomenduojama, naudokite tik testavimui." -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Pagalba" diff --git a/l10n/lt_LT/user_webdavauth.po b/l10n/lt_LT/user_webdavauth.po index 2801133d596..086cccfdd24 100644 --- a/l10n/lt_LT/user_webdavauth.po +++ b/l10n/lt_LT/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 06:00+0000\n" -"Last-Translator: Min2liz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 8e5cc66cb51..a7c8d5630cb 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,77 +162,77 @@ msgstr "Decembris" msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "šodien" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "vakar" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "gadus atpakaļ" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Izvēlieties" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Labi" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Atcelt" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nē" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Izvēlieties" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jā" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Labi" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nē" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "tiks izmantots" msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Pabeigt iestatīšanu" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index ee10faffe10..b59d7a6bfa9 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 845062cf877..cd156c95e83 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index b1227556c32..8e5ca0c8415 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,13 +38,13 @@ msgstr "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu." msgid "Error configuring Google Drive storage" msgstr "Kļūda, konfigurējot Google Drive krātuvi" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 46609775b69..74aca9c22a5 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" -"PO-Revision-Date: 2013-03-15 17:00+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,14 @@ msgstr "%s ar jums dalījās ar mapi %s" msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "jūsu vadībā esošie tīmekļa servisi" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index b3252d40d1a..5cc002eaa11 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index cfbdfa3db8f..095a8a33b59 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 20:50+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,11 +41,11 @@ msgstr "neveiksme" msgid "File %s could not be reverted to version %s" msgstr "Datni %s nevarēja atgriezt uz versiju %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nav pieejamu vecāku versiju" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nav norādīts ceļš" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 6511559d5ed..42c9ad2273d 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 18644f7fb0b..ee26dbf4f4a 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -123,44 +123,44 @@ msgstr "Atjaunināta" msgid "Saving..." msgstr "Saglabā..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "izdzests" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "atsaukt" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nevar izņemt lietotāju" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupas" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupas administrators" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Dzēst" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "pievienot grupu" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Kļūda, veidojot lietotāju" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 442b097a567..5b474e294c6 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/lv/user_webdavauth.po b/l10n/lv/user_webdavauth.po index bac06d9c1e3..0874111e98e 100644 --- a/l10n/lv/user_webdavauth.po +++ b/l10n/lv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 11:30+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index d217e5335d0..d5c1c8cd7d7 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -163,77 +163,77 @@ msgstr "Декември" msgid "Settings" msgstr "Поставки" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "денеска" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "минатиот месец" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "пред месеци" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "минатата година" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "пред години" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Избери" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Во ред" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Не" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Избери" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Во ред" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Не" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "ќе биде користено" msgid "Database user" msgstr "Корисник на база" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Табела во базата на податоци" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Сервер со база" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Заврши го подесувањето" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 438739bdf0d..48c74acdf5b 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 3eab97885bd..4a1a4c47ff5 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 0ea4caf77c3..7326c9f28fe 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -38,13 +38,13 @@ msgstr "Ве молам доставите валиден Dropbox клуч и т msgid "Error configuring Google Drive storage" msgstr "Грешка при конфигурација на Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 51205c77b2c..374577a7443 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 13:31+0000\n" -"Last-Translator: Georgi Stanojevski \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Лозинка" msgid "Submit" msgstr "Прати" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Преземи" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Нема достапно преглед за" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index c053571e8f7..bcda3004eb3 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index f79838b9c07..84dee8dad3c 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 3e18f0b9d01..98e3ad70859 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 9a2115e3197..3235daed114 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -123,44 +123,44 @@ msgstr "" msgid "Saving..." msgstr "Снимам..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "врати" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групи" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Избриши" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index e09b0f24403..a6395bcf5ae 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index 19b5d3df58e..e19772ebc70 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index be9c3022f2d..057c4b98a74 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -163,77 +163,77 @@ msgstr "Disember" msgid "Settings" msgstr "Tetapan" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Batal" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Tidak" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ya" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Tidak" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "akan digunakan" msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Setup selesai" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 80ad8ecc885..0ff8b67f0b0 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index b87b0fa030b..2704af4e7db 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 898cd9062a2..23fe53ff4bc 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 6518fcc4c6b..11553a7aa22 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 60595c6bdd3..78cba637f3a 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index 5694a0b699a..d66a36bc7ab 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 639a4ea571e..a78f7f6af71 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 8be5b5d094a..6dd34bb2841 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -124,44 +124,44 @@ msgstr "" msgid "Saving..." msgstr "Simpan..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "dihapus" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Kumpulan" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Padam" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 1fea18548a7..71e5c5675fb 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Bantuan" diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po index 8e8f74d0a70..51db2d612ec 100644 --- a/l10n/ms_MY/user_webdavauth.po +++ b/l10n/ms_MY/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 011e4893c00..5b10a84f571 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -161,86 +161,88 @@ msgstr "ဒီဇင်ဘာ" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "ယနေ့" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "နှစ် အရင်က" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "ရွေးချယ်" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "အိုကေ" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "မဟုတ်ဘူး" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "ရွေးချယ်" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ဟုတ်" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "အိုကေ" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "မဟုတ်ဘူး" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "Database သုံးစွဲသူ" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Database စကားဝှက်" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Database အမည်" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index b676717879a..5e8bca7fd69 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index e6b714b2cb4..330468c9774 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 9d597dfe545..66757d03280 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index b960c995af1..af1867532c9 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:34+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 191941cf529..86cfe943920 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_versions.po b/l10n/my_MM/files_versions.po index 1bb8d9af220..062c86e62e3 100644 --- a/l10n/my_MM/files_versions.po +++ b/l10n/my_MM/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 8201b63c014..054469003cb 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 9d80882ae47..f4eaf7ebb8d 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 14b74ed4d5c..4bf54c5ddef 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "စကားဝှက်" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "အကူအညီ" diff --git a/l10n/my_MM/user_webdavauth.po b/l10n/my_MM/user_webdavauth.po index 45d8ff660d3..7bd78a09d5c 100644 --- a/l10n/my_MM/user_webdavauth.po +++ b/l10n/my_MM/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 501db5e3a7a..bb7ae5b0cfa 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -167,77 +167,77 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "i dag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "i går" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "forrige måned" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "måneder siden" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "forrige år" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Velg" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Velg" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "vil bli brukt" msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Fullfør oppsetting" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 1e2cffa776b..a3ffbdf4fed 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 50026411075..e584a2b4716 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-07 00:16+0100\n" -"PO-Revision-Date: 2013-03-06 15:13+0000\n" -"Last-Translator: troll \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index a1b53760174..9f22c654ccf 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: troll \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,13 +39,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 8f4798597a0..a34b1e92096 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-31 00:01+0100\n" -"PO-Revision-Date: 2012-10-30 12:47+0000\n" -"Last-Translator: hdalgrav \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Passord" msgid "Submit" msgstr "Send inn" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Last ned" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "web tjenester du kontrollerer" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 5fdfb52c771..41f5263d0d2 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index b918fa61b6b..983a89bf402 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -42,11 +42,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 95403236ecf..30fc6e562ca 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 8c84cd56077..2c505cf1a2f 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -128,44 +128,44 @@ msgstr "" msgid "Saving..." msgstr "Lagrer..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "slettet" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "angre" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppeadministrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Slett" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 4ae7f1b6dde..ce3caf482b8 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: MorphyNOR \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index 915d27dae8f..c11bcf1619a 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 0ef3963546e..f1c0c77ebf6 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 927300ef72b..ed60ef595bc 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index 89230b07489..c6346833fad 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index 5920f250efe..0f0c2811637 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 0019778bcec..2eecd24e2b9 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index e0c8624eb17..aa7b4136e28 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/ne/files_versions.po b/l10n/ne/files_versions.po index a2fa4e1dabc..b318af6e7ee 100644 --- a/l10n/ne/files_versions.po +++ b/l10n/ne/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 59f4b9b2025..c8340a3f31d 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -117,72 +117,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 32d2e429fd3..21112ba3057 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 57664ab3fc1..67b13367777 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ne/user_webdavauth.po b/l10n/ne/user_webdavauth.po index 7b62eb7fe6e..9db1e1b1801 100644 --- a/l10n/ne/user_webdavauth.po +++ b/l10n/ne/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 95513aea350..3238df3e9b2 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -174,77 +174,77 @@ msgstr "december" msgid "Settings" msgstr "Instellingen" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "vandaag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "gisteren" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "vorige maand" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "vorig jaar" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "jaar geleden" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Kies" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Annuleren" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nee" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Kies" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nee" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -547,23 +547,23 @@ msgstr "zal gebruikt worden" msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Database server" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installatie afronden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f5062d9d87c..b551cb1c205 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 21:21+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index c287efb9f79..f716ee20fa5 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 9d227720c68..14fa7898a5b 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -39,13 +39,13 @@ msgstr "Geef een geldige Dropbox key en secret." msgid "Error configuring Google Drive storage" msgstr "Fout tijdens het configureren van Google Drive opslag" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 4ac028d4f84..0bdafc35318 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 14:47+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -27,24 +27,24 @@ msgstr "Wachtwoord" msgid "Submit" msgstr "Verzenden" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Downloaden" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index bc4e1a37cd7..546c51510de 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 87ba278235f..3171f1345a7 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 20:10+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 5f9e61b5754..8240ed69eea 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 3fc9792144b..b7808c80600 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -132,44 +132,44 @@ msgstr "Bijgewerkt" msgid "Saving..." msgstr "Aan het bewaren....." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "verwijderd" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "ongedaan maken" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kon gebruiker niet verwijderen" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Groepen" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Groep beheerder" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "verwijderen" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "toevoegen groep" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Fout bij aanmaken gebruiker" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 22dfb2ddcc9..8955fc084a4 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index 8606d6f3164..e1e3d510ba9 100644 --- a/l10n/nl/user_webdavauth.po +++ b/l10n/nl/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 09:56+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -27,7 +27,7 @@ msgstr "WebDAV authenticatie" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index c5361c17671..83a1b479fa1 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,76 +162,76 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Kanseller" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -535,23 +535,23 @@ msgstr "vil bli nytta" msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Fullfør oppsettet" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index a5bb432c423..b71321ee988 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 5b5ba567938..4c044b70466 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 3ab783c8371..fb03e3cb375 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 6a569d362f5..877f89fbd4b 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index c000ec8f091..43b1a71c81e 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index abcb5fe4f5f..f9421355e4a 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index a21cfaf86b2..f816e938489 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index f6264b6953e..25710dd5297 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -122,44 +122,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Slett" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 33368c43791..96d7ea3e908 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hjelp" diff --git a/l10n/nn_NO/user_webdavauth.po b/l10n/nn_NO/user_webdavauth.po index 42c4c7ed976..aa8db07cf41 100644 --- a/l10n/nn_NO/user_webdavauth.po +++ b/l10n/nn_NO/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 900861203d0..c5edaf4ff0b 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -161,77 +161,77 @@ msgstr "Decembre" msgid "Settings" msgstr "Configuracion" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "uèi" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ièr" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "mes passat" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses a" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "an passat" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "ans a" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Causís" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "D'accòrdi" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anulla" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Non" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Causís" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Òc" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "D'accòrdi" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Non" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -534,23 +534,23 @@ msgstr "serà utilizat" msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Configuracion acabada" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index a18a3d2096b..438e64ed3b3 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index 4db4079a8e0..1d610acbd73 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index b363f8d316d..b41f8d964f3 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 0e83b850761..5d54968662a 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 9e3213d785d..f3ed3d0f412 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index a84be8cd14b..127b1e57b84 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 151a4c2711e..a41273fdd8d 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 699f5212820..e7ec51dfaf1 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "Enregistra..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "escafat" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "defar" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grops" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grop Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Escafa" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 3c1cdc754b3..39a8e2f1c68 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Ajuda" diff --git a/l10n/oc/user_webdavauth.po b/l10n/oc/user_webdavauth.po index 03cdef79eb0..791548b97e6 100644 --- a/l10n/oc/user_webdavauth.po +++ b/l10n/oc/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 3c34f8965fd..dc589ac76de 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -173,77 +173,77 @@ msgstr "Grudzień" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "dziś" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "lat temu" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Wybierz" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anuluj" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nie" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Wybierz" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Tak" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nie" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -546,23 +546,23 @@ msgstr "zostanie użyte" msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Zakończ konfigurowanie" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index f0d3b79dee8..5e8ce661c0f 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 08:40+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index ee5832f42da..bab982698b1 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 09:46+0000\n" -"Last-Translator: bbartlomiej \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 700e621dc7d..6fcbfc009e4 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -41,13 +41,13 @@ msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." msgid "Error configuring Google Drive storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index a355ae067e7..447eac36dc9 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 14:40+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -38,14 +38,14 @@ msgstr "%s współdzieli folder z tobą %s" msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Pobierz" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "Kontrolowane serwisy" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 9d49e7ca92a..2638a60560c 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 54824d793e7..dd854a1b07c 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 07:50+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 799e11c0343..8eddff3fcd2 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index c177780e7e7..2f7a020b48c 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -134,44 +134,44 @@ msgstr "Zaktualizowano" msgid "Saving..." msgstr "Zapisywanie..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "usunięto" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "cofnij" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nie można usunąć użytkownika" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupy" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Administrator grupy" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Usuń" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "dodaj grupę" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index da513b5614f..842e71256c0 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index 44e963a5a43..69bfdc793e0 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 08:54+0000\n" -"Last-Translator: bbartlomiej \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -28,7 +28,7 @@ msgstr "Uwierzytelnienie WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index d0c11ccb995..8fa853d62a5 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,8 +237,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 4c6737a9238..6ce2bbc8b9e 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_encryption.po b/l10n/pl_PL/files_encryption.po index d41a8cb3da5..40ed23e2670 100644 --- a/l10n/pl_PL/files_encryption.po +++ b/l10n/pl_PL/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_external.po b/l10n/pl_PL/files_external.po index abd87d253b8..eb3f6672bd3 100644 --- a/l10n/pl_PL/files_external.po +++ b/l10n/pl_PL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pl_PL/files_sharing.po b/l10n/pl_PL/files_sharing.po index 5735894fdf4..8756f2529d5 100644 --- a/l10n/pl_PL/files_sharing.po +++ b/l10n/pl_PL/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index 03dea5e5995..f5533795739 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 8634a4a3e6a..08069cd9643 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index 4b31d074157..be319828848 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index b92c8f819aa..310263c8cf1 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po index 34b3f1b7157..b6381eee805 100644 --- a/l10n/pl_PL/user_ldap.po +++ b/l10n/pl_PL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/pl_PL/user_webdavauth.po b/l10n/pl_PL/user_webdavauth.po index 2ffe7523c4d..d867ec10d33 100644 --- a/l10n/pl_PL/user_webdavauth.po +++ b/l10n/pl_PL/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 1f2e7e074fb..b1e1b553e1b 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 06:40+0000\n" -"Last-Translator: sedir \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -172,77 +172,77 @@ msgstr "dezembro" msgid "Settings" msgstr "Configurações" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoje" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ontem" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "último mês" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "último ano" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escolha" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Não" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escolha" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Não" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -545,23 +545,23 @@ msgstr "será usado" msgid "Database user" msgstr "Usuário do banco de dados" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host do banco de dados" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Concluir configuração" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 2ead61cd4c5..d28f645f029 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 06:40+0000\n" -"Last-Translator: sedir \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 51cd8db4d81..6318bd58df6 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-14 00:05+0100\n" -"PO-Revision-Date: 2013-02-13 23:00+0000\n" -"Last-Translator: rodrigost23 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index e583eff4749..8fb231323c0 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: dudanogueira \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -40,13 +40,13 @@ msgstr "Por favor forneça um app key e secret válido do Dropbox" msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar armazenamento do Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index f6e8856cc62..ac7a37a6b8d 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-14 00:05+0100\n" -"PO-Revision-Date: 2013-02-13 22:01+0000\n" -"Last-Translator: sedir \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,24 +26,24 @@ msgstr "Senha" msgid "Submit" msgstr "Submeter" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Baixar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "web services sob seu controle" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index c4add70410c..617c6ff2626 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 88db88761f5..f2f07af012d 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 12:10+0000\n" -"Last-Translator: dudanogueira \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 2bc542837e9..8f730781c81 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: fboaventura \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 483d81c08ac..ac98a99c4a0 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -131,44 +131,44 @@ msgstr "Atualizado" msgid "Saving..." msgstr "Guardando..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "excluído" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desfazer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Impossível remover usuário" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Administrativo" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Excluir" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "adicionar grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Erro ao criar usuário" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 8d7cd4367bf..bc50282a095 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: dudanogueira \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/pt_BR/user_webdavauth.po b/l10n/pt_BR/user_webdavauth.po index be539b59a8a..beb981284a1 100644 --- a/l10n/pt_BR/user_webdavauth.po +++ b/l10n/pt_BR/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 16:22+0000\n" -"Last-Translator: rodrigost23 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -27,7 +27,7 @@ msgstr "Autenticação WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 4c86c04f2a8..40b04bc4f7c 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -168,77 +168,77 @@ msgstr "Dezembro" msgid "Settings" msgstr "Definições" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoje" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ontem" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "ultímo mês" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "ano passado" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escolha" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Não" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escolha" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Não" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -541,23 +541,23 @@ msgstr "vai ser usada" msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Acabar instalação" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 8a0017cf6d9..0f1a9e59873 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -136,7 +136,7 @@ msgstr "A enviar 1 ficheiro" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "A enviar os ficheiros" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 461a5030b77..d6acdfd0e5d 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 00:03+0100\n" -"PO-Revision-Date: 2013-02-10 14:21+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index d0394c6efd7..5190b300f3a 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas." msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar o armazenamento do Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index b3df0a72fac..263e69dd587 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Duarte Velez Grilo , 2012. +# Helder Meneses , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-01 02:04+0200\n" -"PO-Revision-Date: 2012-09-30 22:25+0000\n" -"Last-Translator: Duarte Velez Grilo \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,30 +21,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Palavra-Passe" +msgstr "Password" #: templates/authenticate.php:6 msgid "Submit" msgstr "Submeter" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Descarregar" +msgstr "Transferir" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Não há pré-visualização para" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "serviços web sob o seu controlo" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 9ea47473c7c..16bda151758 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -4,12 +4,13 @@ # # Translators: # Daniel Pinto , 2013. +# Helder Meneses , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -30,7 +31,7 @@ msgstr "Não foi possível restaurar %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "Restaurar" +msgstr "executar a operação de restauro" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" @@ -70,7 +71,7 @@ msgstr "{count} ficheiros" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Não ha ficheiros. O lixo está vazio" +msgstr "Não hà ficheiros. O lixo está vazio!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 54018e45527..bf398be73b2 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 11:40+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 83ab77f051f..4584e98139b 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ce7f716bd84..a82084a8f3f 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -128,44 +128,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "A guardar..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "apagado" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desfazer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Apagar" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Adicionar grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 7a2318cd44f..27ad5c0cee7 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_PT/user_webdavauth.po b/l10n/pt_PT/user_webdavauth.po index 6f6d78b3df7..27a6435e85c 100644 --- a/l10n/pt_PT/user_webdavauth.po +++ b/l10n/pt_PT/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-18 00:03+0100\n" -"PO-Revision-Date: 2013-01-17 00:54+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "Autenticação WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ro/core.po b/l10n/ro/core.po index d6102ef27c1..ff67fb854e4 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -166,77 +166,77 @@ msgstr "Decembrie" msgid "Settings" msgstr "Configurări" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "astăzi" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ieri" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "ultima lună" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "ultimul an" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "ani în urmă" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Alege" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anulare" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nu" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Alege" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nu" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -539,23 +539,23 @@ msgstr "vor fi folosite" msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Finalizează instalarea" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 329d55aeb05..59df2ce6f83 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index ba27a3e08d2..0178c344057 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 3a46aaedfb9..3dd7b1f334e 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -39,13 +39,13 @@ msgstr "Prezintă te rog o cheie de Dropbox validă și parola" msgid "Error configuring Google Drive storage" msgstr "Eroare la configurarea mediului de stocare Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 7966d650dad..54f7f154913 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 13:27+0000\n" -"Last-Translator: g.ciprian \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Parolă" msgid "Submit" msgstr "Trimite" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descarcă" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "servicii web controlate de tine" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 35bf6a8679e..ba7c983acd0 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 9a6c076a43c..1a1e9ab27d0 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 8d99123b223..34b7915c681 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 3db3f86beba..bff150ffa8a 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -127,44 +127,44 @@ msgstr "" msgid "Saving..." msgstr "Salvez..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "șters" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupuri" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupul Admin " -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Șterge" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 57370aee7d8..44e5fa0d0be 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_webdavauth.po b/l10n/ro/user_webdavauth.po index 1f11c76068b..6109a77f94f 100644 --- a/l10n/ro/user_webdavauth.po +++ b/l10n/ro/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 00:09+0000\n" -"Last-Translator: Dimon Pockemon <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "Autentificare WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ru/core.po b/l10n/ru/core.po index c62ba9f9fc2..127eea8e44d 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -172,77 +172,77 @@ msgstr "Декабрь" msgid "Settings" msgstr "Настройки" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "сегодня" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "в прошлом году" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "несколько лет назад" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Выбрать" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ок" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Отмена" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Нет" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Выбрать" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ок" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Нет" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -545,23 +545,23 @@ msgstr "будет использовано" msgid "Database user" msgstr "Имя пользователя для базы данных" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Пароль для базы данных" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завершить установку" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 1f81049a589..11afccd3a66 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 1244183e43b..10d0dee2c7a 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 26f68be9545..51708e8373b 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,13 +41,13 @@ msgstr "Пожалуйста, предоставьте действующий к msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 425b0ed2591..f63d64a4a08 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 13:24+0000\n" -"Last-Translator: skoptev \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,24 +29,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Отправить" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Скачать" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Предпросмотр недоступен для" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 7ab8779e1f2..ef193b63245 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index 8709b06612f..304ee7eaccf 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 05:30+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 785b626c879..241423458fc 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index bb845c09a23..32b4ecffafe 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -135,44 +135,44 @@ msgstr "Обновлено" msgid "Saving..." msgstr "Сохранение..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "удален" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "отмена" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Невозможно удалить пользователя" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Группы" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Группа Администраторы" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Удалить" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "добавить группу" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Предоставте подходящее имя пользователя" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Предоставте подходящий пароль" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index c58d7a5f3a7..1cdc528b1f4 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ru/user_webdavauth.po b/l10n/ru/user_webdavauth.po index c66ccc74b99..cb9787729a8 100644 --- a/l10n/ru/user_webdavauth.po +++ b/l10n/ru/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 10:43+0000\n" -"Last-Translator: Denis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 9bbd48bd6a3..78a7e92ad42 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -163,77 +163,77 @@ msgstr "Декабрь" msgid "Settings" msgstr "Настройки" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "секунд назад" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr " 1 минуту назад" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{минуты} минут назад" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 час назад" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{часы} часов назад" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "сегодня" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{дни} дней назад" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{месяцы} месяцев назад" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "месяц назад" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "в прошлом году" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "лет назад" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Выбрать" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Да" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Отмена" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Нет" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Выбрать" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Да" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Нет" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "будет использоваться" msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Имя базы данных" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Табличная область базы данных" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Сервер базы данных" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завершение настройки" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index a742a13ade7..e0b7ef7d14a 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po index cd0001f8dac..475cc21624b 100644 --- a/l10n/ru_RU/files_encryption.po +++ b/l10n/ru_RU/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index 20a27154a72..f0db491af62 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "Пожалуйста представьте допустимый клю msgid "Error configuring Google Drive storage" msgstr "Ошибка настройки хранилища Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Предупреждение: \"smbclient\" не установлен. Подключение общих папок CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ru_RU/files_sharing.po b/l10n/ru_RU/files_sharing.po index 7f31cb63091..b2e253d777d 100644 --- a/l10n/ru_RU/files_sharing.po +++ b/l10n/ru_RU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-12 02:03+0200\n" -"PO-Revision-Date: 2012-10-11 10:54+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Передать" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s имеет общий с Вами доступ к папке %s " -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s имеет общий с Вами доступ к файлу %s " -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Загрузка" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Предварительный просмотр недоступен" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "веб-сервисы под Вашим контролем" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index f5351c3c646..88f31b8ae78 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index 202ace6ab3c..c61d6b50a30 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 51909e1d816..b230b541d5f 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index cc82d2d3a7e..f8ec1a9f654 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -122,44 +122,44 @@ msgstr "" msgid "Saving..." msgstr "Сохранение" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "удалено" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "отменить действие" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Группы" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Группа Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Удалить" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 8ebddb604b8..8d689953482 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po index 48ae554ac04..c7942c0aacc 100644 --- a/l10n/ru_RU/user_webdavauth.po +++ b/l10n/ru_RU/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 10:01+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "WebDAV аутентификация" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index f251c59c318..5d59a87c19f 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -163,77 +163,77 @@ msgstr "දෙසැම්බර්" msgid "Settings" msgstr "සැකසුම්" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "අද" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "තෝරන්න" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "හරි" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "එපා" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "නැහැ" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "තෝරන්න" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ඔව්" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "හරි" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "නැහැ" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "භාවිතා වනු ඇත" msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 51ff5363523..b3eb4cde336 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 7af077ac2a7..7eac34c9bad 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index cafe37e2a68..105ab59caba 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -38,13 +38,13 @@ msgstr "කරුණාකර වලංගු Dropbox යෙදුම් යත msgid "Error configuring Google Drive storage" msgstr "Google Drive ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 6308f9a772f..b2714042dd3 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-23 02:02+0200\n" -"PO-Revision-Date: 2012-10-22 05:59+0000\n" -"Last-Translator: Anushke Guneratne \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "මුරපදය" msgid "Submit" msgstr "යොමු කරන්න" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "භාගත කරන්න" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 74223174167..8d505239eb2 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index 66e6bcb8f64..4c83ca1d0e6 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index db9dcb3fcd2..11a0c7fff20 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 3f13c351de8..0812e022750 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -123,44 +123,44 @@ msgstr "" msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "සමූහය" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "කාණ්ඩ පරිපාලක" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "මකා දමනවා" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index bec52d2d483..b9faaaba983 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_webdavauth.po b/l10n/si_LK/user_webdavauth.po index a6141d359c9..ada80e75d6b 100644 --- a/l10n/si_LK/user_webdavauth.po +++ b/l10n/si_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 7afee22acfc..bc430f23eeb 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 312a9144bf8..85c7273021c 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index eb687048cab..dfa8be5d6ed 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 685594af3ea..efcc8422942 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 942e60b0498..609ac22383d 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-09 00:12+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 9e904b87618..b616563274d 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/sk/files_versions.po b/l10n/sk/files_versions.po index c273fd68fbd..3d146dfb02c 100644 --- a/l10n/sk/files_versions.po +++ b/l10n/sk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 68541eae87d..45bcc4a9598 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:36+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -117,72 +117,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 0c10073e8f9..5eeac0348ea 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index a22107c718c..a5f757920a0 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/sk/user_webdavauth.po b/l10n/sk/user_webdavauth.po index eb6e13c58c0..3b571279803 100644 --- a/l10n/sk/user_webdavauth.po +++ b/l10n/sk/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-09 00:12+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 4977691c438..00ea6d66330 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -167,77 +167,77 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Pred 1 hodinou." -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "dnes" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "včera" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "minulý rok" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "pred rokmi" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Výber" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Zrušiť" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nie" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Výber" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Áno" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nie" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "bude použité" msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Dokončiť inštaláciu" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index a02bd8e2843..4f956583edd 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 12:51+0000\n" -"Last-Translator: martin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 232ee99f2fe..9ce3732a072 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 15:39+0100\n" -"PO-Revision-Date: 2013-02-11 13:10+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 457ddf4a038..a6f07d27d03 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -40,13 +40,13 @@ msgstr "Zadajte platný kľúč aplikácie a heslo Dropbox" msgid "Error configuring Google Drive storage" msgstr "Chyba pri konfigurácii úložiska Google drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index b964369a8b0..07ea96d641a 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 02:02+0200\n" -"PO-Revision-Date: 2012-10-01 08:36+0000\n" -"Last-Translator: martinb \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -27,24 +27,24 @@ msgstr "Heslo" msgid "Submit" msgstr "Odoslať" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Stiahnuť" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 8611677a171..29989ed5b38 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 0face773183..51261b891f3 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 15:20+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -43,11 +43,11 @@ msgstr "chyba" msgid "File %s could not be reverted to version %s" msgstr "Súbor %s nemohol byť obnovený na verziu %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nie sú dostupné žiadne staršie verzie" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nevybrali ste cestu" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 516153711f5..d1b68734549 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 7d1cd89b189..fe292fb38b3 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -126,44 +126,44 @@ msgstr "Aktualizované" msgid "Saving..." msgstr "Ukladám..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "zmazané" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "vrátiť" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nemožno odobrať používateľa" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Skupiny" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Správca skupiny" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Odstrániť" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "pridať skupinu" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Chyba pri vytváraní používateľa" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 5c221f7f073..9724c535247 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index b3a30b89ca6..a0dcc47ceb2 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 08:31+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -27,7 +27,7 @@ msgstr "WebDAV overenie" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 6a4197b8c3e..80c8dccfbda 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -166,77 +166,77 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "pred 1 uro" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "danes" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "včeraj" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "lansko leto" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "let nazaj" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Izbor" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "V redu" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Prekliči" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Izbor" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "V redu" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -539,23 +539,23 @@ msgstr "bo uporabljen" msgid "Database user" msgstr "Uporabnik podatkovne zbirke" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Končaj namestitev" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 17385d0ac99..252f7b513ee 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 18:00+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 05ce9505eb2..94bd86897ee 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 14:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 581315d1d25..87d9dc110e0 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -40,13 +40,13 @@ msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" msgid "Error configuring Google Drive storage" msgstr "Napaka nastavljanja shrambe Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index fe6f3a246d3..bfe11652174 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2013-04-05 17:50+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index e84784368ba..77048dd7501 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 5810bb0297c..5a32b4db172 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 14:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index ab2c6877553..9938dc9c025 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2013-04-05 17:40+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index fef896bdd84..f8062dc3318 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -126,44 +126,44 @@ msgstr "Posodobljeno" msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "izbrisano" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "razveljavi" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Uporabnika ni mogoče odstraniti" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Skupine" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Skrbnik skupine" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Izbriši" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "dodaj skupino" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Napaka ustvarjanja uporabnika" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index aaaefb8647c..b35519eed40 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index 829fe4d8a16..57c43401285 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 19:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 66f2ea88ad3..27820eb8b11 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 13:20+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,77 +161,77 @@ msgstr "Dhjetor" msgid "Settings" msgstr "Parametrat" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "sot" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "dje" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "vite më parë" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Zgjidh" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Në rregull" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anulo" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Jo" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Zgjidh" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Po" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Në rregull" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Jo" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -534,23 +534,23 @@ msgstr "do të përdoret" msgid "Database user" msgstr "Përdoruesi i database-it" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Kodi i database-it" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Emri i database-it" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespace-i i database-it" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Pozicioni (host) i database-it" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Mbaro setup-in" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index abcbe9a312e..887642ef410 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 09:20+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index 4cb262b3e8b..e077f5e19bd 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 5a989cbebc1..494a58ba3b3 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index ec38c14f36d..69b90c903da 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-04 00:05+0200\n" -"PO-Revision-Date: 2013-04-03 14:00+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index b576868130f..faad2478b9d 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 09:00+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_versions.po b/l10n/sq/files_versions.po index a5a97e9bdb6..82daa820ba3 100644 --- a/l10n/sq/files_versions.po +++ b/l10n/sq/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 2ea2562cf94..0461910a062 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 13:20+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 9fe3e67ef43..c4e2ddab226 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 16:20+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index d0436434a5c..e9472845722 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-03 00:03+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/user_webdavauth.po b/l10n/sq/user_webdavauth.po index 1324665d52b..b3bb1e16258 100644 --- a/l10n/sq/user_webdavauth.po +++ b/l10n/sq/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 1d0f0b51937..46dda51aa20 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -163,77 +163,77 @@ msgstr "Децембар" msgid "Settings" msgstr "Подешавања" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "данас" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "јуче" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "месеци раније" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "прошле године" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "година раније" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Одабери" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "У реду" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Не" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Одабери" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "У реду" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Не" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "ће бити коришћен" msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Заврши подешавање" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 779a126355d..0eff71bb2c4 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 4f38bb711f9..a27a28465f5 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index f9dec54fe8b..800176734ad 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index d2e787a42cd..9181ca9a56a 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 17:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,24 +25,24 @@ msgstr "Лозинка" msgid "Submit" msgstr "Пошаљи" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Преузми" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index d187778db81..2a417b2ea6a 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index 402e0c7165b..ec43d448dad 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index bda81308e91..733b5938e2f 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index c6dcf5bad7f..e49c51e90e2 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -122,44 +122,44 @@ msgstr "" msgid "Saving..." msgstr "Чување у току..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "опозови" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групе" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Управник групе" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Обриши" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index cf42fd65731..71831e3ed86 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_webdavauth.po b/l10n/sr/user_webdavauth.po index 764d45ef408..e16ddc80702 100644 --- a/l10n/sr/user_webdavauth.po +++ b/l10n/sr/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 22:10+0000\n" -"Last-Translator: Rancher \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "WebDAV провера идентитета" msgid "URL: http://" msgstr "Адреса: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 44ec0fad2ab..c1307364cba 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:12+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -161,76 +161,76 @@ msgstr "Decembar" msgid "Settings" msgstr "Podešavanja" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Otkaži" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,8 +238,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -532,23 +534,23 @@ msgstr "će biti korišćen" msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Završi podešavanje" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index d28e72bf260..43356ea3f88 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index a34c90f6c0d..4ed26d55415 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index ccf11b6140c..74194db3c87 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index cd27899cfcb..fd4664a6ee4 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 51104cc42d8..a2456c9bf81 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index 53af96aaac6..a73c400c085 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 5af0bde8e2f..0c0e851bf59 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index d7de36047b7..6304ccc06c8 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -101,6 +101,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -109,10 +113,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupe" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Obriši" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 05f0229b2ed..b3a83e48283 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Pomoć" diff --git a/l10n/sr@latin/user_webdavauth.po b/l10n/sr@latin/user_webdavauth.po index 246116723c6..ce7bf86e0b3 100644 --- a/l10n/sr@latin/user_webdavauth.po +++ b/l10n/sr@latin/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sv/core.po b/l10n/sv/core.po index cc1e60450c1..f06b83da0a2 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -167,77 +167,77 @@ msgstr "December" msgid "Settings" msgstr "Inställningar" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "i dag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "i går" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "förra månaden" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "månader sedan" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "förra året" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "år sedan" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Välj" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nej" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Välj" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nej" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "kommer att användas" msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Avsluta installation" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 4ba1e273285..46f06f3a61c 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index b401db609de..4f03c0ca4ea 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index e5cb8e70b64..2c3ed5c2cfa 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -39,13 +39,13 @@ msgstr "Ange en giltig Dropbox nyckel och hemlighet." msgid "Error configuring Google Drive storage" msgstr "Fel vid konfigurering av Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 8b3fffa7392..83540b196bd 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 11:37+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,24 +26,24 @@ msgstr "Lösenord" msgid "Submit" msgstr "Skicka" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "webbtjänster under din kontroll" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 4215aa66abb..6e330464230 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 7570670aefe..088b1f902d1 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-04-01 08:30+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index da947e167c7..5b3a2089404 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index e5846829b28..599768c9e4c 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -129,44 +129,44 @@ msgstr "Uppdaterad" msgid "Saving..." msgstr "Sparar..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "raderad" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "ångra" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kan inte ta bort användare" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppadministratör" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Radera" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "lägg till grupp" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Fel vid skapande av användare" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index cec721691d7..7473df8242d 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-04-01 08:20+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index 98475a8bd97..bf35caa2cf8 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-21 15:25+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "WebDAV Autentisering" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index f5cc1f2d3e8..e548cb04e30 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 65f750efc7e..b58c07e5cb5 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 210f1a04556..62ef25444ca 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 2054bbb707e..1edf9425c61 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index adbbc6c0f03..65a3fc50bd6 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index 2b45347348c..a07e5dce97e 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/sw_KE/files_versions.po b/l10n/sw_KE/files_versions.po index e8849bf702f..cef9f7b3274 100644 --- a/l10n/sw_KE/files_versions.po +++ b/l10n/sw_KE/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 8dbccab4ab3..cdaf7c7f079 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:36+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -117,72 +117,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index a4e6f450aa2..c074b9bf1ab 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index 4715c3b41d2..4aaba2fca23 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/sw_KE/user_webdavauth.po b/l10n/sw_KE/user_webdavauth.po index 1e07c21030d..953de1d9f76 100644 --- a/l10n/sw_KE/user_webdavauth.po +++ b/l10n/sw_KE/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 545101af6a9..55a61f9b59b 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,77 +162,77 @@ msgstr "மார்கழி" msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "இன்று" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "தெரிவுசெய்க " +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "சரி" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "இரத்து செய்க" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "இல்லை" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "தெரிவுசெய்க " -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ஆம்" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "சரி" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "இல்லை" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "பயன்படுத்தப்படும்" msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 615b1ae5ce6..5098c48575f 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index fbd878dfe56..3bb249d6a9c 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 200c2bbb18d..99c63811074 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -38,13 +38,13 @@ msgstr "தயவுசெய்து ஒரு செல்லுபடிய msgid "Error configuring Google Drive storage" msgstr "Google இயக்க சேமிப்பகத்தை தகமைப்பதில் வழு" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index cdb761631d3..59ced6d1e73 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-20 00:01+0100\n" -"PO-Revision-Date: 2012-11-19 09:00+0000\n" -"Last-Translator: suganthi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "கடவுச்சொல்" msgid "Submit" msgstr "சமர்ப்பிக்குக" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 0e5ba275f20..11fca381d55 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index abba80ba96b..7006e4048cd 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 0a55ae9ad64..cdd1610d33f 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 23da61ca182..b67cf68c461 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "இயலுமைப்படுத்துக" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "குழுக்கள்" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "குழு நிர்வாகி" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "அழிக்க" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index ed69b01b568..38edbdb01c3 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_webdavauth.po b/l10n/ta_LK/user_webdavauth.po index 59edf0b378a..855cd95e8d5 100644 --- a/l10n/ta_LK/user_webdavauth.po +++ b/l10n/ta_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/te/core.po b/l10n/te/core.po index ec30ff10867..417137fc05e 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: వీవెన్ \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,77 +161,77 @@ msgstr "డిసెంబర్" msgid "Settings" msgstr "అమరికలు" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "ఈరోజు" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "సరే" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "రద్దుచేయి" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "కాదు" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "అవును" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "సరే" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "కాదు" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -534,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index 5a869684be6..4f3c5fed3d8 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 4490c006c82..27ac36937f3 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 443334d1537..87acb28ef9a 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index fbc5e47d934..73b662b6182 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index db028a5f733..7e768f37fdb 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_versions.po b/l10n/te/files_versions.po index 5f1b874d450..0cd31615b5a 100644 --- a/l10n/te/files_versions.po +++ b/l10n/te/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index dc5288920b4..e1190a20590 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 932912ae69a..b2685193b7e 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "తొలగించు" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 0688209cb16..2516171f5f3 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/user_webdavauth.po b/l10n/te/user_webdavauth.po index 9719a079784..038f4caab95 100644 --- a/l10n/te/user_webdavauth.po +++ b/l10n/te/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 3e46392ef00..55f9fb37e95 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index f754c8bd8df..44c5115e9f7 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:09+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index ebfd7e5e2eb..fe492121d65 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:09+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 69055bd18e2..5a2772ef4c7 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 08b36f4b3ae..4375f2c9028 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 14a6c5ad958..fab03d30279 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index bea3f2884f9..b720108dae4 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index b4549431ec3..85e30cdc482 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a433f3acbcc..04cd0098866 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 1e78f874e49..54fab0b1c06 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 25991dd3289..c55257e01c9 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index ff90a064255..a2644ea12fa 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,77 +162,77 @@ msgstr "ธันวาคม" msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "วันนี้" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "เลือก" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "ตกลง" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "ยกเลิก" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "ไม่ตกลง" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "เลือก" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ตกลง" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "ตกลง" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "ไม่ตกลง" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "จะถูกใช้" msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Database host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index e88ab59f410..89f195428df 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index 0f055b572fb..83ddf27b1aa 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 6b7ff0b4d4d..fc56f1a61f4 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -38,13 +38,13 @@ msgstr "กรุณากรอกรหัส app key ของ Dropbox แล msgid "Error configuring Google Drive storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "คำเตือน: \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index ca52d4c4449..60d528993bf 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 11:10+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "รหัสผ่าน" msgid "Submit" msgstr "ส่ง" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index fdca6cdab3e..3f3d84363f8 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 1abe7bfdb5e..f1cc8cb847d 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index b467ff8d622..1c9f395a0c3 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 7d8053ea080..9f174d2d497 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -123,44 +123,44 @@ msgstr "อัพเดทแล้ว" msgid "Saving..." msgstr "กำลังบันทึุกข้อมูล..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "ลบแล้ว" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "เลิกทำ" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "กลุ่ม" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "ผู้ดูแลกลุ่ม" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "ลบ" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index f4b4608ec5e..9fa0376fdd9 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_webdavauth.po b/l10n/th_TH/user_webdavauth.po index 3493831b2c1..7f71ac8bb71 100644 --- a/l10n/th_TH/user_webdavauth.po +++ b/l10n/th_TH/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 00:54+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "WebDAV Authentication" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 4d50d6acf21..ff355f91091 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: otefenli \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -167,77 +167,77 @@ msgstr "Aralık" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "bugün" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "dün" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "geçen ay" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "ay önce" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "geçen yıl" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "yıl önce" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "seç" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Tamam" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "İptal" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Hayır" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "seç" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Evet" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Tamam" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Hayır" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "kullanılacak" msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Kurulumu tamamla" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 739b2b604d2..9f10cf606c7 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 13:30+0000\n" -"Last-Translator: ismail yenigül \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 52609fb3a4e..b3b4061663b 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 20:10+0000\n" -"Last-Translator: atakan96 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 83ae30ab691..a7551418be3 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-05 00:21+0200\n" -"PO-Revision-Date: 2013-04-04 10:00+0000\n" -"Last-Translator: Caner Başaran \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -40,13 +40,13 @@ msgstr "Lütfen Dropbox app key ve secret temin ediniz" msgid "Error configuring Google Drive storage" msgstr "Google Drive depo yapılandırma hatası" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 5cef16c9263..014db5a4d54 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 11:33+0000\n" -"Last-Translator: alpere \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,24 +26,24 @@ msgstr "Şifre" msgid "Submit" msgstr "Gönder" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "İndir" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "Bilgileriniz güvenli ve şifreli" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 53600dc03d6..a16869ebad6 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 59ad4923c43..80519b54e34 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-25 10:20+0000\n" -"Last-Translator: otefenli \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 1bd6591c2e7..f744fc9eb94 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 9affb093ec9..bca687cb5c3 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Fatih Aşıcı \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -129,44 +129,44 @@ msgstr "Güncellendi" msgid "Saving..." msgstr "Kaydediliyor..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "silindi" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "geri al" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kullanıcı kaldırılamıyor" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruplar" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Yönetici Grubu " -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Sil" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "grup ekle" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Kullanıcı oluşturulurken hata" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 1cfb5d5aca8..a01974a08c4 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index f5f060e198c..d746306ebaa 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 20:10+0000\n" -"Last-Translator: atakan96 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings.php:3 msgid "WebDAV Authentication" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 6058358be3b..70297156676 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -166,77 +166,77 @@ msgstr "Грудень" msgid "Settings" msgstr "Налаштування" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "сьогодні" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчора" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "минулого місяця" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "місяці тому" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "минулого року" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "роки тому" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Обрати" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Відмінити" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ні" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Обрати" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Так" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ні" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -482,11 +482,11 @@ msgstr "Попередження про небезпеку" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Будь ласка, оновіть інсталяцію PHP для безпечного використання ownCloud." #: templates/installation.php:32 msgid "" @@ -539,23 +539,23 @@ msgstr "буде використано" msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завершити налаштування" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index fb93b18e8a7..bb94b31982e 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -132,7 +132,7 @@ msgstr "1 файл завантажується" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "файли завантажуються" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index f0341a7e32c..89a68a1fb4b 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 16:40+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index a8da037d328..cf8a838af05 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Будь ласка, надайте дійсний ключ та пар msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index a087b632037..849069fb73a 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-22 00:01+0100\n" -"PO-Revision-Date: 2012-11-21 13:21+0000\n" -"Last-Translator: skoptev \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Submit" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Завантажити" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 8219dfe45a1..586f719a338 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 57d0fd1f10c..149735a38eb 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 12:40+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index f6a6018b773..72255a69858 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 88056cf548a..d2414ba5892 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -124,44 +124,44 @@ msgstr "Оновлено" msgid "Saving..." msgstr "Зберігаю..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "видалені" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "відмінити" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Неможливо видалити користувача" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групи" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Адміністратор групи" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Видалити" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "додати групу" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Помилка при створенні користувача" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index ef03d4d64b8..16bb5c6e062 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/uk/user_webdavauth.po b/l10n/uk/user_webdavauth.po index 59983e50209..95d0199df1f 100644 --- a/l10n/uk/user_webdavauth.po +++ b/l10n/uk/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 16:40+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index df2a26e8af3..a8adb13732d 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -161,77 +161,77 @@ msgstr "دسمبر" msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "منتخب کریں" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "اوکے" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "منسوخ کریں" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "نہیں" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "منتخب کریں" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ہاں" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "اوکے" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "نہیں" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -534,23 +534,23 @@ msgstr "استعمال ہو گا" msgid "Database user" msgstr "ڈیٹابیس یوزر" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "ڈیٹابیس پاسورڈ" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ڈیٹابیس کا نام" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "ڈیٹابیس ٹیبل سپیس" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "ڈیٹابیس ہوسٹ" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "سیٹ اپ ختم کریں" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 437154841ed..8e63ad73eec 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index d945e7ba70d..6e1fdab3de0 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-26 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index e9bdbedc119..4f5bbffec5c 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index bf96aabc459..cf84d773fae 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 08c1f2bd3e1..63603253078 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_versions.po b/l10n/ur_PK/files_versions.po index f2a9b38da54..4cf1d8a1076 100644 --- a/l10n/ur_PK/files_versions.po +++ b/l10n/ur_PK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 128d7972a7e..7e41ed94b62 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index fc20d3d7282..350e4d1f2be 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 67a700b6057..9d1a468e4df 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "پاسورڈ" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "مدد" diff --git a/l10n/ur_PK/user_webdavauth.po b/l10n/ur_PK/user_webdavauth.po index 31e16092c88..fafd0150a68 100644 --- a/l10n/ur_PK/user_webdavauth.po +++ b/l10n/ur_PK/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-26 00:04+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 7c716b72bd5..0cb405774bc 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -166,77 +166,77 @@ msgstr "Tháng 12" msgid "Settings" msgstr "Cài đặt" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hôm nay" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "tháng trước" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "tháng trước" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "năm trước" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "năm trước" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Chọn" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Đồng ý" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Hủy" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Không" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Chọn" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Có" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Đồng ý" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Không" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -539,23 +539,23 @@ msgstr "được sử dụng" msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Database host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Cài đặt hoàn tất" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 6661db587b9..6343a227df0 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index af199ade990..967123b7f50 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index b26197d819f..1040172df2c 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -40,13 +40,13 @@ msgstr "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã b msgid "Error configuring Google Drive storage" msgstr "Lỗi cấu hình lưu trữ Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 792d5fe671b..ff474f2b344 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-21 00:01+0100\n" -"PO-Revision-Date: 2012-11-20 04:39+0000\n" -"Last-Translator: Sơn Nguyễn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Mật khẩu" msgid "Submit" msgstr "Xác nhận" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Tải về" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Không có xem trước cho" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 3a57c2b1c0e..446a3fa7ffc 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index df14039e114..71e7d41d001 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -43,11 +43,11 @@ msgstr "Thất bại" msgid "File %s could not be reverted to version %s" msgstr "File %s không thể khôi phục về phiên bản %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Không có phiên bản cũ nào" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Không chỉ ra đường dẫn rõ ràng" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index cf168b55ae1..857d1e20726 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 5fe54cdb368..5bb3e7db74e 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -127,44 +127,44 @@ msgstr "Đã cập nhật" msgid "Saving..." msgstr "Đang tiến hành lưu ..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "đã xóa" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "lùi lại" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Nhóm" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Nhóm quản trị" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Xóa" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index b74bd68ddc1..a1cbe868b3b 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_webdavauth.po b/l10n/vi/user_webdavauth.po index 57c796e00db..9d0eaeeec65 100644 --- a/l10n/vi/user_webdavauth.po +++ b/l10n/vi/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 18:30+0000\n" -"Last-Translator: saosangm \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index c9afe154bc9..fea478dc809 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: kopisee \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,77 +163,77 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "秒前" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "今天" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "昨天" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "上个月" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "月前" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "去年" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "选择" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "好的" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "否" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "选择" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "好的" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "否" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "将会使用" msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "数据库用户名" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "数据库表格空间" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "完成安装" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index e3c99fef5de..cf4bcdf218e 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 262bed13b59..76fc7835470 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 59e25024219..7d18a87a7a9 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-06 21:20+0000\n" -"Last-Translator: kopisee \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index a25727470d6..41d1ad16b3d 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-12 02:03+0200\n" -"PO-Revision-Date: 2012-10-11 23:45+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 与您分享了文件夹 %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下载" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "没有预览可用于" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "您控制的网络服务" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index ae46e1b0c3a..e06718232a1 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index d91537b916b..3d9d46cf1b7 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-06 21:00+0000\n" -"Last-Translator: kopisee \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 65f7a8c6cee..cfcb1e3765b 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-06 22:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index d84e4e89423..d43cd0d75d3 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: kopisee \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,44 +123,44 @@ msgstr "已升级" msgid "Saving..." msgstr "保存中..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "删除" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "撤销" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "组" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "群组管理员" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "删除" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "添加群组" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "请填写有效用户名" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "新增用户时出现错误" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "请填写有效密码" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index e3448eda1cc..00b1e4b2c7f 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po index e9984fbe007..8c6808debdb 100644 --- a/l10n/zh_CN.GB2312/user_webdavauth.po +++ b/l10n/zh_CN.GB2312/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 706b244ae54..0bee1ece20a 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: leonfeng \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,77 +167,77 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "秒前" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "今天" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "昨天" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "上月" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "月前" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "去年" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "选择(&C)..." +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "好" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "否" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "选择(&C)..." -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "好" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "否" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "将被使用" msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "安装完成" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 01d92183301..24121e4bace 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 1807d6a5f39..bebc5c7fd26 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 08:40+0000\n" -"Last-Translator: ccb \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index f942b184755..9f24f4e3014 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "请提供有效的Dropbox应用key和secret" msgid "Error configuring Google Drive storage" msgstr "配置Google Drive存储时出错" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 149353d1100..d7b991be4a7 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" -"PO-Revision-Date: 2012-09-27 14:41+0000\n" -"Last-Translator: waterone \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下载" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "没有预览" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "您控制的web服务" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 8a6a3581afc..1358aeb2053 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index ada0de78abe..bbcc7504a78 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 09:00+0000\n" -"Last-Translator: bzdk \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 18d284576a1..f293f42d192 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 9e74b665917..8802053d5ce 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -128,44 +128,44 @@ msgstr "已更新" msgid "Saving..." msgstr "正在保存" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "已经删除" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "撤销" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "组" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "组管理员" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "删除" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "添加组" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "创建用户出错" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "必须提供合法的密码" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index baa62ccec8b..75ce640640e 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index a642c9b21d8..78d193c789c 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-21 23:23+0000\n" -"Last-Translator: Xuetian Weng \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +29,7 @@ msgstr "WebDAV 认证" msgid "URL: http://" msgstr "URL:http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 8050a6cf0e1..20ecbff0aad 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+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" @@ -162,77 +162,77 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "今日" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "昨日" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "前一月" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "個月之前" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Yes" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "將被使用" msgid "Database user" msgstr "資料庫帳戶" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 1b5ca2bcccf..87bfb878285 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index c1002a17a4f..7353c0a7222 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 09:10+0000\n" -"Last-Translator: dtsang29 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index f5a0dad8428..e911c33540d 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2013-03-13 02:10+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 792810587f7..7897ca5dc28 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下載" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 451321361d1..aa3beee2e5f 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index 9d6dd7c46ee..c93a812b1ec 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 09:10+0000\n" -"Last-Translator: dtsang29 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 0cb6877d5a3..b52486be8aa 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 8b848731351..07a86e15270 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+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" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "群組" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "刪除" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index dfcf588c574..ae499e40988 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 02:50+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_webdavauth.po b/l10n/zh_HK/user_webdavauth.po index 5a2c43c09ce..35347a3f0d6 100644 --- a/l10n/zh_HK/user_webdavauth.po +++ b/l10n/zh_HK/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 4572c6498d5..671369c693f 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" -"PO-Revision-Date: 2013-04-14 13:40+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 40b8f90c02c..de181406e29 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:09+0200\n" -"PO-Revision-Date: 2013-04-14 13:40+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 09a9812a652..308523e0050 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-20 00:02+0100\n" -"PO-Revision-Date: 2013-03-19 03:40+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 500db5751db..4d01f33d123 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,13 +39,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 7f76a26ec7e..04a1a496523 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" -"PO-Revision-Date: 2013-04-14 13:30+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 2e28f7947c8..478343be7db 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 21a6ddbdf6e..04ed7abf13a 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-20 00:02+0100\n" -"PO-Revision-Date: 2013-03-19 03:30+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 5059ed80d01..a17785e4f59 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index e52516abc1a..28cf8f8f6fd 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" -"PO-Revision-Date: 2013-04-14 13:20+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index e5f5c2a0e98..3e5dc03d7a2 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 1cf83460715..607dc386a89 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 12:10+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 529eec3ac52..5906c7f7a1e 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -37,7 +37,7 @@ "MS SQL username and/or password not valid: %s" => "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", "Please double check the installation guides." => "インストールガイドをよく確認してください。", -"seconds ago" => "秒前", +"seconds ago" => "数秒前", "1 minute ago" => "1分前", "%d minutes ago" => "%d 分前", "1 hour ago" => "1 時間前", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index af3cdc9aeb0..132b4ee437a 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -68,7 +68,7 @@ "More" => "詳細", "Less" => "閉じる", "Version" => "バージョン", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。", "Add your App" => "アプリを追加", "More Apps" => "さらにアプリを表示", "Select an App" => "アプリを選択してください", @@ -82,8 +82,8 @@ "Bugtracker" => "バグトラッカー", "Commercial Support" => "コマーシャルサポート", "You have used %s of the available %s" => "現在、%s / %s を利用しています", -"Get the apps to sync your files" => "あなたのファイルを同期するためのアプリを取得", -"Show First Run Wizard again" => "初回実行ウィザードを再度表示する", +"Get the apps to sync your files" => "ファイルを同期するためのアプリを取得", +"Show First Run Wizard again" => "初回ウィザードを再表示する", "Password" => "パスワード", "Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", -- cgit v1.2.3 From 606b672a3d8fbd7af02c773a64680c0fc32bea7a Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Tue, 16 Apr 2013 13:07:55 +0200 Subject: always connect file cache updater hooks first --- apps/files/appinfo/app.php | 7 +++++++ lib/files/filesystem.php | 5 ----- 2 files changed, 7 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 6535a9b7baa..703b1c7cb6c 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -12,3 +12,10 @@ OCP\App::addNavigationEntry( array( "id" => "files_index", "name" => $l->t("Files") )); OC_Search::registerProvider('OC_Search_Provider_File'); + +// cache hooks must be connected before all other apps. +// since 'files' is always loaded first the hooks need to be connected here +\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); +\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); +\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); +\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); \ No newline at end of file diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index c8e62956f19..c0e9d215fb5 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -665,9 +665,4 @@ class Filesystem { } } -\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); -\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); -\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); -\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); - \OC_Util::setupFS(); -- cgit v1.2.3 From 8a504592230bbe97971ddefe69377669aa276898 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 17 Apr 2013 01:08:27 +0200 Subject: Fix OC_User::getDisplaynames when using numeric user id's fixes #2948 --- lib/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/user.php b/lib/user.php index b19af940795..226b716188d 100644 --- a/lib/user.php +++ b/lib/user.php @@ -527,7 +527,7 @@ class OC_User { foreach (self::$_usedBackends as $backend) { $backendDisplayNames = $backend->getDisplayNames($search, $limit, $offset); if (is_array($backendDisplayNames)) { - $displayNames = array_merge($displayNames, $backendDisplayNames); + $displayNames = $displayNames + $backendDisplayNames; } } asort($displayNames); -- cgit v1.2.3 From 37868818ffdb2e37de99bf342eeb1b3665fbb611 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 17 Apr 2013 02:29:17 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/cy_GB.php | 4 + apps/files/l10n/sr.php | 22 +- apps/files_external/l10n/cy_GB.php | 3 + apps/files_sharing/l10n/cy_GB.php | 4 + apps/files_trashbin/l10n/cy_GB.php | 3 + apps/files_trashbin/l10n/sr.php | 1 + apps/user_ldap/l10n/cy_GB.php | 4 + apps/user_ldap/l10n/el.php | 22 ++ core/l10n/cy_GB.php | 117 +++++++ l10n/af_ZA/core.po | 4 +- l10n/af_ZA/files.po | 4 +- l10n/af_ZA/files_encryption.po | 4 +- l10n/af_ZA/files_external.po | 4 +- l10n/af_ZA/files_sharing.po | 4 +- l10n/af_ZA/files_trashbin.po | 4 +- l10n/af_ZA/files_versions.po | 4 +- l10n/af_ZA/lib.po | 4 +- l10n/af_ZA/settings.po | 6 +- l10n/af_ZA/user_ldap.po | 4 +- l10n/af_ZA/user_webdavauth.po | 4 +- l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_encryption.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/files_versions.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 6 +- l10n/ar/user_ldap.po | 4 +- l10n/ar/user_webdavauth.po | 4 +- l10n/be/core.po | 4 +- l10n/be/files.po | 4 +- l10n/be/files_encryption.po | 4 +- l10n/be/files_external.po | 4 +- l10n/be/files_sharing.po | 4 +- l10n/be/files_trashbin.po | 4 +- l10n/be/files_versions.po | 4 +- l10n/be/lib.po | 4 +- l10n/be/settings.po | 6 +- l10n/be/user_ldap.po | 4 +- l10n/be/user_webdavauth.po | 4 +- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_encryption.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/files_versions.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 6 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bg_BG/user_webdavauth.po | 4 +- l10n/bn_BD/core.po | 4 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_encryption.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/files_versions.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 6 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bn_BD/user_webdavauth.po | 4 +- l10n/ca/core.po | 4 +- l10n/ca/files.po | 4 +- l10n/ca/files_encryption.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/files_versions.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 6 +- l10n/ca/user_ldap.po | 4 +- l10n/ca/user_webdavauth.po | 4 +- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_encryption.po | 4 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/files_versions.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 6 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cs_CZ/user_webdavauth.po | 4 +- l10n/cy_GB/core.po | 606 ++++++++++++++++++++++++++++++++++ l10n/cy_GB/files.po | 314 ++++++++++++++++++ l10n/cy_GB/files_encryption.po | 38 +++ l10n/cy_GB/files_external.po | 116 +++++++ l10n/cy_GB/files_sharing.po | 48 +++ l10n/cy_GB/files_trashbin.po | 84 +++++ l10n/cy_GB/files_versions.po | 57 ++++ l10n/cy_GB/lib.po | 258 +++++++++++++++ l10n/cy_GB/settings.po | 500 ++++++++++++++++++++++++++++ l10n/cy_GB/user_ldap.po | 333 +++++++++++++++++++ l10n/cy_GB/user_webdavauth.po | 33 ++ l10n/da/core.po | 4 +- l10n/da/files.po | 4 +- l10n/da/files_encryption.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/files_versions.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 6 +- l10n/da/user_ldap.po | 4 +- l10n/da/user_webdavauth.po | 4 +- l10n/de/core.po | 4 +- l10n/de/files.po | 4 +- l10n/de/files_encryption.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/files_versions.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 6 +- l10n/de/user_ldap.po | 4 +- l10n/de/user_webdavauth.po | 4 +- l10n/de_DE/core.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_encryption.po | 4 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/files_versions.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 6 +- l10n/de_DE/user_ldap.po | 4 +- l10n/de_DE/user_webdavauth.po | 4 +- l10n/el/core.po | 4 +- l10n/el/files.po | 4 +- l10n/el/files_encryption.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/files_versions.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 6 +- l10n/el/user_ldap.po | 49 +-- l10n/el/user_webdavauth.po | 4 +- l10n/eo/core.po | 4 +- l10n/eo/files.po | 4 +- l10n/eo/files_encryption.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/files_versions.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 6 +- l10n/eo/user_ldap.po | 4 +- l10n/eo/user_webdavauth.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files.po | 4 +- l10n/es/files_encryption.po | 4 +- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/files_versions.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 6 +- l10n/es/user_ldap.po | 4 +- l10n/es/user_webdavauth.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_encryption.po | 4 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/files_versions.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 6 +- l10n/es_AR/user_ldap.po | 4 +- l10n/es_AR/user_webdavauth.po | 4 +- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_encryption.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/files_versions.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 6 +- l10n/et_EE/user_ldap.po | 4 +- l10n/et_EE/user_webdavauth.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files.po | 4 +- l10n/eu/files_encryption.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/files_versions.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 6 +- l10n/eu/user_ldap.po | 4 +- l10n/eu/user_webdavauth.po | 4 +- l10n/fa/core.po | 4 +- l10n/fa/files.po | 4 +- l10n/fa/files_encryption.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/files_versions.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 6 +- l10n/fa/user_ldap.po | 4 +- l10n/fa/user_webdavauth.po | 4 +- l10n/fi/core.po | 4 +- l10n/fi/files.po | 4 +- l10n/fi/lib.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_encryption.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/files_versions.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 6 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fi_FI/user_webdavauth.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files.po | 4 +- l10n/fr/files_encryption.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/files_versions.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 6 +- l10n/fr/user_ldap.po | 4 +- l10n/fr/user_webdavauth.po | 4 +- l10n/gl/core.po | 4 +- l10n/gl/files.po | 4 +- l10n/gl/files_encryption.po | 4 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/files_versions.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 6 +- l10n/gl/user_ldap.po | 4 +- l10n/gl/user_webdavauth.po | 4 +- l10n/he/core.po | 4 +- l10n/he/files.po | 4 +- l10n/he/files_encryption.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/files_versions.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 6 +- l10n/he/user_ldap.po | 4 +- l10n/he/user_webdavauth.po | 4 +- l10n/hi/core.po | 4 +- l10n/hi/files.po | 4 +- l10n/hi/files_encryption.po | 4 +- l10n/hi/files_external.po | 4 +- l10n/hi/files_sharing.po | 4 +- l10n/hi/files_trashbin.po | 4 +- l10n/hi/files_versions.po | 4 +- l10n/hi/lib.po | 4 +- l10n/hi/settings.po | 6 +- l10n/hi/user_ldap.po | 4 +- l10n/hi/user_webdavauth.po | 4 +- l10n/hr/core.po | 4 +- l10n/hr/files.po | 4 +- l10n/hr/files_encryption.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/files_versions.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 6 +- l10n/hr/user_ldap.po | 4 +- l10n/hr/user_webdavauth.po | 4 +- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_encryption.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/files_versions.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 6 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hu_HU/user_webdavauth.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 4 +- l10n/hy/files_trashbin.po | 4 +- l10n/hy/settings.po | 6 +- l10n/ia/core.po | 4 +- l10n/ia/files.po | 4 +- l10n/ia/files_encryption.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/files_versions.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 6 +- l10n/ia/user_ldap.po | 4 +- l10n/ia/user_webdavauth.po | 4 +- l10n/id/core.po | 4 +- l10n/id/files.po | 4 +- l10n/id/files_encryption.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/files_versions.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 6 +- l10n/id/user_ldap.po | 4 +- l10n/id/user_webdavauth.po | 4 +- l10n/is/core.po | 4 +- l10n/is/files.po | 4 +- l10n/is/files_encryption.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/files_versions.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 6 +- l10n/is/user_ldap.po | 4 +- l10n/is/user_webdavauth.po | 4 +- l10n/it/core.po | 4 +- l10n/it/files.po | 4 +- l10n/it/files_encryption.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/files_versions.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 6 +- l10n/it/user_ldap.po | 4 +- l10n/it/user_webdavauth.po | 4 +- l10n/ja_JP/core.po | 4 +- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_encryption.po | 4 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/files_versions.po | 4 +- l10n/ja_JP/lib.po | 4 +- l10n/ja_JP/settings.po | 6 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ja_JP/user_webdavauth.po | 4 +- l10n/ka/core.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_encryption.po | 4 +- l10n/ka/files_external.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka/files_trashbin.po | 4 +- l10n/ka/files_versions.po | 4 +- l10n/ka/lib.po | 4 +- l10n/ka/settings.po | 6 +- l10n/ka/user_ldap.po | 4 +- l10n/ka/user_webdavauth.po | 4 +- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_encryption.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/files_versions.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 6 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/ka_GE/user_webdavauth.po | 4 +- l10n/kn/core.po | 4 +- l10n/kn/files.po | 4 +- l10n/kn/files_encryption.po | 4 +- l10n/kn/files_external.po | 4 +- l10n/kn/files_sharing.po | 4 +- l10n/kn/files_trashbin.po | 4 +- l10n/kn/files_versions.po | 4 +- l10n/kn/lib.po | 4 +- l10n/kn/settings.po | 6 +- l10n/kn/user_ldap.po | 4 +- l10n/kn/user_webdavauth.po | 4 +- l10n/ko/core.po | 4 +- l10n/ko/files.po | 4 +- l10n/ko/files_encryption.po | 4 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/files_versions.po | 4 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 6 +- l10n/ko/user_ldap.po | 4 +- l10n/ko/user_webdavauth.po | 4 +- l10n/ku_IQ/core.po | 4 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_encryption.po | 4 +- l10n/ku_IQ/files_external.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/files_versions.po | 4 +- l10n/ku_IQ/lib.po | 4 +- l10n/ku_IQ/settings.po | 6 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/ku_IQ/user_webdavauth.po | 4 +- l10n/lb/core.po | 4 +- l10n/lb/files.po | 4 +- l10n/lb/files_encryption.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/files_versions.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 6 +- l10n/lb/user_ldap.po | 4 +- l10n/lb/user_webdavauth.po | 4 +- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_encryption.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/files_versions.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 6 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lt_LT/user_webdavauth.po | 4 +- l10n/lv/core.po | 4 +- l10n/lv/files.po | 4 +- l10n/lv/files_encryption.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/files_versions.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 6 +- l10n/lv/user_ldap.po | 4 +- l10n/lv/user_webdavauth.po | 4 +- l10n/mk/core.po | 4 +- l10n/mk/files.po | 4 +- l10n/mk/files_encryption.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/files_versions.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 6 +- l10n/mk/user_ldap.po | 4 +- l10n/mk/user_webdavauth.po | 4 +- l10n/ms_MY/core.po | 4 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_encryption.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/files_versions.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 6 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/ms_MY/user_webdavauth.po | 4 +- l10n/my_MM/core.po | 4 +- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_encryption.po | 4 +- l10n/my_MM/files_external.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/files_trashbin.po | 4 +- l10n/my_MM/files_versions.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/my_MM/settings.po | 6 +- l10n/my_MM/user_ldap.po | 4 +- l10n/my_MM/user_webdavauth.po | 4 +- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_encryption.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/files_versions.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 6 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/nb_NO/user_webdavauth.po | 4 +- l10n/ne/core.po | 4 +- l10n/ne/files.po | 4 +- l10n/ne/files_encryption.po | 4 +- l10n/ne/files_external.po | 4 +- l10n/ne/files_sharing.po | 4 +- l10n/ne/files_trashbin.po | 4 +- l10n/ne/files_versions.po | 4 +- l10n/ne/lib.po | 4 +- l10n/ne/settings.po | 6 +- l10n/ne/user_ldap.po | 4 +- l10n/ne/user_webdavauth.po | 4 +- l10n/nl/core.po | 4 +- l10n/nl/files.po | 4 +- l10n/nl/files_encryption.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/files_versions.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 6 +- l10n/nl/user_ldap.po | 4 +- l10n/nl/user_webdavauth.po | 4 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_encryption.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/files_versions.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 6 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/nn_NO/user_webdavauth.po | 4 +- l10n/oc/core.po | 4 +- l10n/oc/files.po | 4 +- l10n/oc/files_encryption.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/files_versions.po | 4 +- l10n/oc/lib.po | 4 +- l10n/oc/settings.po | 6 +- l10n/oc/user_ldap.po | 4 +- l10n/oc/user_webdavauth.po | 4 +- l10n/pl/core.po | 4 +- l10n/pl/files.po | 4 +- l10n/pl/files_encryption.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/files_versions.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 6 +- l10n/pl/user_ldap.po | 4 +- l10n/pl/user_webdavauth.po | 4 +- l10n/pl_PL/core.po | 4 +- l10n/pl_PL/files.po | 4 +- l10n/pl_PL/files_encryption.po | 4 +- l10n/pl_PL/files_external.po | 4 +- l10n/pl_PL/files_sharing.po | 4 +- l10n/pl_PL/files_trashbin.po | 4 +- l10n/pl_PL/files_versions.po | 4 +- l10n/pl_PL/lib.po | 4 +- l10n/pl_PL/settings.po | 6 +- l10n/pl_PL/user_ldap.po | 4 +- l10n/pl_PL/user_webdavauth.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_encryption.po | 4 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/files_versions.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 6 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_BR/user_webdavauth.po | 4 +- l10n/pt_PT/core.po | 4 +- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_encryption.po | 4 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/files_versions.po | 4 +- l10n/pt_PT/lib.po | 4 +- l10n/pt_PT/settings.po | 6 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/pt_PT/user_webdavauth.po | 4 +- l10n/ro/core.po | 4 +- l10n/ro/files.po | 4 +- l10n/ro/files_encryption.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/files_versions.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 6 +- l10n/ro/user_ldap.po | 4 +- l10n/ro/user_webdavauth.po | 4 +- l10n/ru/core.po | 4 +- l10n/ru/files.po | 4 +- l10n/ru/files_encryption.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/files_versions.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 6 +- l10n/ru/user_ldap.po | 4 +- l10n/ru/user_webdavauth.po | 4 +- l10n/ru_RU/core.po | 4 +- l10n/ru_RU/files.po | 4 +- l10n/ru_RU/files_encryption.po | 4 +- l10n/ru_RU/files_external.po | 4 +- l10n/ru_RU/files_sharing.po | 4 +- l10n/ru_RU/files_trashbin.po | 4 +- l10n/ru_RU/files_versions.po | 4 +- l10n/ru_RU/lib.po | 4 +- l10n/ru_RU/settings.po | 6 +- l10n/ru_RU/user_ldap.po | 4 +- l10n/ru_RU/user_webdavauth.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_encryption.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/files_versions.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 6 +- l10n/si_LK/user_ldap.po | 4 +- l10n/si_LK/user_webdavauth.po | 4 +- l10n/sk/core.po | 4 +- l10n/sk/files.po | 4 +- l10n/sk/files_encryption.po | 4 +- l10n/sk/files_external.po | 4 +- l10n/sk/files_sharing.po | 4 +- l10n/sk/files_trashbin.po | 4 +- l10n/sk/files_versions.po | 4 +- l10n/sk/lib.po | 4 +- l10n/sk/settings.po | 6 +- l10n/sk/user_ldap.po | 4 +- l10n/sk/user_webdavauth.po | 4 +- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_encryption.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/files_versions.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 6 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sk_SK/user_webdavauth.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files.po | 4 +- l10n/sl/files_encryption.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/files_versions.po | 4 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 6 +- l10n/sl/user_ldap.po | 4 +- l10n/sl/user_webdavauth.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files.po | 4 +- l10n/sq/files_encryption.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/files_versions.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 6 +- l10n/sq/user_ldap.po | 4 +- l10n/sq/user_webdavauth.po | 4 +- l10n/sr/core.po | 4 +- l10n/sr/files.po | 45 +-- l10n/sr/files_encryption.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 6 +- l10n/sr/files_versions.po | 4 +- l10n/sr/lib.po | 8 +- l10n/sr/settings.po | 123 +++---- l10n/sr/user_ldap.po | 4 +- l10n/sr/user_webdavauth.po | 4 +- l10n/sr@latin/core.po | 4 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_encryption.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/files_versions.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 6 +- l10n/sr@latin/user_ldap.po | 4 +- l10n/sr@latin/user_webdavauth.po | 4 +- l10n/sv/core.po | 4 +- l10n/sv/files.po | 4 +- l10n/sv/files_encryption.po | 4 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/files_versions.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 6 +- l10n/sv/user_ldap.po | 4 +- l10n/sv/user_webdavauth.po | 4 +- l10n/sw_KE/core.po | 4 +- l10n/sw_KE/files.po | 4 +- l10n/sw_KE/files_encryption.po | 4 +- l10n/sw_KE/files_external.po | 4 +- l10n/sw_KE/files_sharing.po | 4 +- l10n/sw_KE/files_trashbin.po | 4 +- l10n/sw_KE/files_versions.po | 4 +- l10n/sw_KE/lib.po | 4 +- l10n/sw_KE/settings.po | 6 +- l10n/sw_KE/user_ldap.po | 4 +- l10n/sw_KE/user_webdavauth.po | 4 +- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_encryption.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/files_versions.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 6 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/ta_LK/user_webdavauth.po | 4 +- l10n/te/core.po | 4 +- l10n/te/files.po | 4 +- l10n/te/files_encryption.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_sharing.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/files_versions.po | 4 +- l10n/te/lib.po | 4 +- l10n/te/settings.po | 6 +- l10n/te/user_ldap.po | 4 +- l10n/te/user_webdavauth.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 4 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_encryption.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/files_versions.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 6 +- l10n/th_TH/user_ldap.po | 4 +- l10n/th_TH/user_webdavauth.po | 4 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 4 +- l10n/tr/files_encryption.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/files_versions.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 6 +- l10n/tr/user_ldap.po | 4 +- l10n/tr/user_webdavauth.po | 4 +- l10n/uk/core.po | 4 +- l10n/uk/files.po | 4 +- l10n/uk/files_encryption.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/files_versions.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 6 +- l10n/uk/user_ldap.po | 4 +- l10n/uk/user_webdavauth.po | 4 +- l10n/ur_PK/core.po | 4 +- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_encryption.po | 4 +- l10n/ur_PK/files_external.po | 4 +- l10n/ur_PK/files_sharing.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/files_versions.po | 4 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 6 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/ur_PK/user_webdavauth.po | 4 +- l10n/vi/core.po | 4 +- l10n/vi/files.po | 4 +- l10n/vi/files_encryption.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/files_versions.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 6 +- l10n/vi/user_ldap.po | 4 +- l10n/vi/user_webdavauth.po | 4 +- l10n/zh_CN.GB2312/core.po | 4 +- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_encryption.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/files_versions.po | 4 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 6 +- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN.GB2312/user_webdavauth.po | 4 +- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_encryption.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/files_versions.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 6 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_CN/user_webdavauth.po | 4 +- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_encryption.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/files_versions.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 6 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_HK/user_webdavauth.po | 4 +- l10n/zh_TW/core.po | 4 +- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_encryption.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/files_versions.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 6 +- l10n/zh_TW/user_ldap.po | 4 +- l10n/zh_TW/user_webdavauth.po | 4 +- lib/l10n/cy_GB.php | 16 + lib/l10n/sr.php | 2 + settings/l10n/cy_GB.php | 6 + settings/l10n/sr.php | 60 +++- 834 files changed, 4438 insertions(+), 1788 deletions(-) create mode 100644 apps/files/l10n/cy_GB.php create mode 100644 apps/files_external/l10n/cy_GB.php create mode 100644 apps/files_sharing/l10n/cy_GB.php create mode 100644 apps/files_trashbin/l10n/cy_GB.php create mode 100644 apps/user_ldap/l10n/cy_GB.php create mode 100644 core/l10n/cy_GB.php create mode 100644 l10n/cy_GB/core.po create mode 100644 l10n/cy_GB/files.po create mode 100644 l10n/cy_GB/files_encryption.po create mode 100644 l10n/cy_GB/files_external.po create mode 100644 l10n/cy_GB/files_sharing.po create mode 100644 l10n/cy_GB/files_trashbin.po create mode 100644 l10n/cy_GB/files_versions.po create mode 100644 l10n/cy_GB/lib.po create mode 100644 l10n/cy_GB/settings.po create mode 100644 l10n/cy_GB/user_ldap.po create mode 100644 l10n/cy_GB/user_webdavauth.po create mode 100644 lib/l10n/cy_GB.php create mode 100644 settings/l10n/cy_GB.php (limited to 'lib') diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php new file mode 100644 index 00000000000..762c958f128 --- /dev/null +++ b/apps/files/l10n/cy_GB.php @@ -0,0 +1,4 @@ + "Gwall", +"Unshare" => "Dad-rannu" +); diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index ff0733e211b..50d587ebb26 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -1,4 +1,8 @@ "Не могу да преместим %s – датотека с овим именом већ постоји", +"Could not move %s" => "Не могу да преместим %s", +"Unable to rename file" => "Не могу да преименујем датотеку", +"No file was uploaded. Unknown error" => "Ниједна датотека није отпремљена услед непознате грешке", "There is no error, the file uploaded with success" => "Није дошло до грешке. Датотека је успешно отпремљена.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу", @@ -6,7 +10,10 @@ "No file was uploaded" => "Датотека није отпремљена", "Missing a temporary folder" => "Недостаје привремена фасцикла", "Failed to write to disk" => "Не могу да пишем на диск", +"Not enough storage available" => "Нема довољно простора", +"Invalid directory." => "неисправна фасцикла.", "Files" => "Датотеке", +"Delete permanently" => "Обриши за стално", "Delete" => "Обриши", "Rename" => "Преименуј", "Pending" => "На чекању", @@ -16,11 +23,21 @@ "cancel" => "откажи", "replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}", "undo" => "опозови", +"perform delete operation" => "обриши", "1 file uploading" => "Отпремам 1 датотеку", +"files uploading" => "датотеке се отпремају", +"'.' is an invalid file name." => "Датотека „.“ је неисправног имена.", +"File name cannot be empty." => "Име датотеке не може бити празно.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *.", +"Your storage is full, files can not be updated or synced anymore!" => "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване.", +"Your storage is almost full ({usedSpacePercent}%)" => "Ваше складиште је скоро па пуно ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Припремам преузимање. Ово може да потраје ако су датотеке велике.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова", +"Not enough space available" => "Нема довољно простора", "Upload cancelled." => "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", +"URL cannot be empty." => "Адреса не може бити празна.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud.", "Error" => "Грешка", "Name" => "Назив", "Size" => "Величина", @@ -42,12 +59,15 @@ "Text file" => "текстуална датотека", "Folder" => "фасцикла", "From link" => "Са везе", +"Deleted files" => "Обрисане датотеке", "Cancel upload" => "Прекини отпремање", +"You don’t have write permissions here." => "Овде немате дозволу за писање.", "Nothing in here. Upload something!" => "Овде нема ничег. Отпремите нешто!", "Download" => "Преузми", "Unshare" => "Укини дељење", "Upload too large" => "Датотека је превелика", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеке које желите да отпремите прелазе ограничење у величини.", "Files are being scanned, please wait." => "Скенирам датотеке…", -"Current scanning" => "Тренутно скенирање" +"Current scanning" => "Тренутно скенирање", +"Upgrading filesystem cache..." => "Дограђујем кеш система датотека…" ); diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php new file mode 100644 index 00000000000..a0e1efd4a86 --- /dev/null +++ b/apps/files_external/l10n/cy_GB.php @@ -0,0 +1,3 @@ + "Defnyddwyr" +); diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php new file mode 100644 index 00000000000..00f0b162047 --- /dev/null +++ b/apps/files_sharing/l10n/cy_GB.php @@ -0,0 +1,4 @@ + "Cyfrinair", +"web services under your control" => "gwasanaethau gwe a reolir gennych" +); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php new file mode 100644 index 00000000000..4a264eb936c --- /dev/null +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -0,0 +1,3 @@ + "Gwall" +); diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 81a65b819f6..280c2b02820 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -1,6 +1,7 @@ "врати у претходно стање", "Error" => "Грешка", +"Delete permanently" => "Обриши за стално", "Name" => "Име", "Deleted" => "Обрисано", "1 folder" => "1 фасцикла", diff --git a/apps/user_ldap/l10n/cy_GB.php b/apps/user_ldap/l10n/cy_GB.php new file mode 100644 index 00000000000..da107789fb8 --- /dev/null +++ b/apps/user_ldap/l10n/cy_GB.php @@ -0,0 +1,4 @@ + "Cyfrinair", +"Help" => "Cymorth" +); diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 96ec8180437..e5fe6b6da7e 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -4,6 +4,7 @@ "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια.", "The configuration is invalid. Please look in the ownCloud log for further details." => "Μη έγκυρες ρυθμίσεις. Παρακαλώ ελέγξτε τις καταγραφές του ownCloud για περισσότερες λεπτομέρειες.", "Deletion failed" => "Η διαγραφή απέτυχε", +"Take over settings from recent server configuration?" => "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?", "Keep settings?" => "Διατήρηση ρυθμίσεων;", "Cannot add server configuration" => "Αδυναμία προσθήκης ρυθμίσεων διακομιστή", "Connection test succeeded" => "Επιτυχημένη δοκιμαστική σύνδεση", @@ -17,6 +18,7 @@ "Host" => "Διακομιστής", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://", "Base DN" => "Base DN", +"One Base DN per line" => "Ένα DN Βάσης ανά γραμμή ", "You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις", "User DN" => "User DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά.", @@ -32,22 +34,42 @@ "Defines the filter to apply, when retrieving groups." => "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση ομάδων.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=ΟμάδαPosix\".", "Connection Settings" => "Ρυθμίσεις Σύνδεσης", +"Configuration Active" => "Ενεργοποιηση ρυθμισεων", +"When unchecked, this configuration will be skipped." => "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. ", "Port" => "Θύρα", +"Backup (Replica) Host" => "Δημιουργία αντιγράφων ασφαλείας (Replica) Host ", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Δώστε μια προαιρετική εφεδρική υποδοχή. Πρέπει να είναι ένα αντίγραφο του κύριου LDAP / AD διακομιστη.", +"Backup (Replica) Port" => "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη", +"Disable Main Server" => "Απενεργοποιηση του κεντρικου διακομιστη", +"When switched on, ownCloud will only connect to the replica server." => "Όταν ενεργοποιηθεί, με το ownCloud θα συνδεθείτε με το διακομιστή ρεπλίκα.", "Use TLS" => "Χρήση TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "Μην το χρησιμοποιήσετε επιπροσθέτως, για LDAPS συνδέσεις , θα αποτύχει.", "Case insensitve LDAP server (Windows)" => "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ", "Turn off SSL certificate validation." => "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Εάν η σύνδεση δουλεύει μόνο με αυτή την επιλογή, εισάγετε το LDAP SSL πιστοποιητικό του διακομιστή στον ownCloud server σας.", "Not recommended, use for testing only." => "Δεν προτείνεται, χρήση μόνο για δοκιμές.", +"Cache Time-To-Live" => "Cache Time-To-Live", "in seconds. A change empties the cache." => "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache.", "Directory Settings" => "Ρυθμίσεις Καταλόγου", "User Display Name Field" => "Πεδίο Ονόματος Χρήστη", "The LDAP attribute to use to generate the user`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος χρήστη του ownCloud.", "Base User Tree" => "Base User Tree", +"One User Base DN per line" => "Ένα DN βάσης χρηστών ανά γραμμή", +"User Search Attributes" => "Χαρακτηριστικά αναζήτησης των χρηστών ", +"Optional; one attribute per line" => "Προαιρετικά? Ένα χαρακτηριστικό ανά γραμμή ", "Group Display Name Field" => "Group Display Name Field", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος ομάδας του ownCloud.", "Base Group Tree" => "Base Group Tree", +"One Group Base DN per line" => "Μια ομαδικη Βάση DN ανά γραμμή", +"Group Search Attributes" => "Ομάδα Χαρακτηριστικων Αναζήτηση", "Group-Member association" => "Group-Member association", +"Special Attributes" => "Ειδικά Χαρακτηριστικά ", +"Quota Field" => "Ποσοσταση πεδιου", +"Quota Default" => "Προκαθισμενο πεδιο", "in bytes" => "σε bytes", +"Email Field" => "Email τυπος", +"User Home Folder Naming Rule" => "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας ", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD.", +"Test Configuration" => "Δοκιμαστικες ρυθμισεις", "Help" => "Βοήθεια" ); diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php new file mode 100644 index 00000000000..6698ce77a3e --- /dev/null +++ b/core/l10n/cy_GB.php @@ -0,0 +1,117 @@ + "Math o gategori heb ei ddarparu.", +"No category to add?" => "Dim categori i'w ychwanegu?", +"Object type not provided." => "Math o wrthrych heb ei ddarparu.", +"%s ID not provided." => "%s ID heb ei ddarparu.", +"Error adding %s to favorites." => "Gwall wrth ychwanegu %s at ffefrynnau.", +"No categories selected for deletion." => "Ni ddewiswyd categorïau i'w dileu.", +"Error removing %s from favorites." => "Gwall wrth dynnu %s o ffefrynnau.", +"Sunday" => "Sul", +"Monday" => "Llun", +"Tuesday" => "Mawrth", +"Wednesday" => "Mercher", +"Thursday" => "Iau", +"Friday" => "Gwener", +"Saturday" => "Sadwrn", +"January" => "Ionawr", +"February" => "Chwefror", +"March" => "Mawrth", +"April" => "Ebrill", +"May" => "Mai", +"June" => "Mehefin", +"July" => "Gorffennaf", +"August" => "Awst", +"September" => "Medi", +"October" => "Hydref", +"November" => "Tachwedd", +"December" => "Rhagfyr", +"Settings" => "Gosodiadau", +"seconds ago" => "eiliad yn ôl", +"1 minute ago" => "1 munud yn ôl", +"{minutes} minutes ago" => "{minutes} munud yn ôl", +"1 hour ago" => "1 awr yn ôl", +"{hours} hours ago" => "{hours} awr yn ôl", +"today" => "heddiw", +"yesterday" => "ddoe", +"{days} days ago" => "{days} diwrnod yn ôl", +"last month" => "mis diwethaf", +"{months} months ago" => "{months} mis yn ôl", +"months ago" => "misoedd yn ôl", +"last year" => "y llynedd", +"years ago" => "blwyddyn yn ôl", +"Ok" => "Iawn", +"Cancel" => "Diddymu", +"Choose" => "Dewisiwch", +"Yes" => "Ie", +"No" => "Na", +"Error" => "Gwall", +"Error while sharing" => "Gwall wrth rannu", +"Error while unsharing" => "Gwall wrth ddad-rannu", +"Error while changing permissions" => "Gwall wrth newid caniatâd", +"Shared with you and the group {group} by {owner}" => "Rhannwyd â chi a'r grŵp {group} gan {owner}", +"Shared with you by {owner}" => "Rhannwyd â chi gan {owner}", +"Share with" => "Rhannu gyda", +"Share with link" => "Dolen ar gyfer rhannu", +"Password protect" => "Diogelu cyfrinair", +"Password" => "Cyfrinair", +"Set expiration date" => "Gosod dyddiad dod i ben", +"Expiration date" => "Dyddiad dod i ben", +"Share via email:" => "Rhannu drwy e-bost:", +"No people found" => "Heb ganfod pobl", +"Resharing is not allowed" => "Does dim hawl ail-rannu", +"Shared in {item} with {user}" => "Rhannwyd yn {item} â {user}", +"Unshare" => "Dad-rannu", +"can edit" => "yn gallu golygu", +"access control" => "rheolaeth mynediad", +"create" => "creu", +"update" => "diweddaru", +"delete" => "dileu", +"share" => "rhannu", +"Password protected" => "Diogelwyd â chyfrinair", +"Error unsetting expiration date" => "Gwall wrth ddad-osod dyddiad dod i ben", +"Error setting expiration date" => "Gwall wrth osod dyddiad dod i ben", +"ownCloud password reset" => "ailosod cyfrinair ownCloud", +"Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", +"You will receive a link to reset your password via Email." => "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair.", +"Reset email send." => "Ailosod anfon e-bost.", +"Request failed!" => "Methodd y cais!", +"Username" => "Enw defnyddiwr", +"Request reset" => "Gwneud cais i ailosod", +"Your password was reset" => "Ailosodwyd eich cyfrinair", +"To login page" => "I'r dudalen mewngofnodi", +"New password" => "Cyfrinair newydd", +"Reset password" => "Ailosod cyfrinair", +"Personal" => "Personol", +"Users" => "Defnyddwyr", +"Apps" => "Pecynnau", +"Admin" => "Gweinyddu", +"Help" => "Cymorth", +"Access forbidden" => "Mynediad wedi'i wahardd", +"Cloud not found" => "Methwyd canfod cwmwl", +"Edit categories" => "Golygu categorïau", +"Add" => "Ychwanegu", +"Security Warning" => "Rhybudd Diogelwch", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif.", +"Create an admin account" => "Crewch gyfrif gweinyddol", +"Advanced" => "Uwch", +"Data folder" => "Plygell data", +"Configure the database" => "Cyflunio'r gronfa ddata", +"will be used" => "ddefnyddir", +"Database user" => "Defnyddiwr cronfa ddata", +"Database password" => "Cyfrinair cronfa ddata", +"Database name" => "Enw cronfa ddata", +"Database tablespace" => "Tablespace cronfa ddata", +"Database host" => "Gwesteiwr cronfa ddata", +"Finish setup" => "Gorffen sefydlu", +"web services under your control" => "gwasanaethau gwe a reolir gennych", +"Log out" => "Allgofnodi", +"Automatic logon rejected!" => "Gwrthodwyd mewngofnodi awtomatig!", +"If you did not change your password recently, your account may be compromised!" => "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif fod yn anniogel!", +"Please change your password to secure your account again." => "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto.", +"Lost your password?" => "Wedi colli'ch cyfrinair?", +"remember" => "cofio", +"Log in" => "Mewngofnodi", +"prev" => "blaenorol", +"next" => "nesaf" +); diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index b9ebff745f9..0cee119c30b 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index fb1d471b2ea..46e77a89fa1 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 56d117f64f7..ad2760165af 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index b1a81514a9a..c832854e86b 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index a4346ebad6d..395e310b0b3 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 4519a23f0f8..d71f287f72e 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_versions.po b/l10n/af_ZA/files_versions.po index b7815be858a..b27e22d90aa 100644 --- a/l10n/af_ZA/files_versions.po +++ b/l10n/af_ZA/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 6d9fd425b11..1bcdf367fe9 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index bb6e67d13c1..83b7447a278 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 3f61a263ae8..c08ce22f8b6 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/user_webdavauth.po b/l10n/af_ZA/user_webdavauth.po index 74d884a8bbb..bb29159478c 100644 --- a/l10n/af_ZA/user_webdavauth.po +++ b/l10n/af_ZA/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index e5064b501d6..487be693009 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index d0eb037a69a..56662a6ad73 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index ca3f1fda57d..8ebdd5b0b95 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index a9e752fed06..3a0cbd39490 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 2652c5fdb63..909d047e146 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index c4b191857f3..be9ba851699 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index 47c00fd32d9..0ef6f3e755e 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 9fb10d06367..47401163dfa 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 9e1ddcce833..125a7520415 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -121,7 +121,7 @@ msgstr "حصل خطأ أثناء تحديث التطبيق" msgid "Updated" msgstr "تم التحديث بنجاح" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "حفظ" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 1c8adac39b9..71c1e62994b 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index 72d0d26fea1..7defa1d4b06 100644 --- a/l10n/ar/user_webdavauth.po +++ b/l10n/ar/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index fa6af285a8d..daa1be716a7 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/be/files.po b/l10n/be/files.po index b29349ac812..ec67242474b 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index a9b0bfec81b..f0897fc482e 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index dda0365cad4..05c52d24758 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index efb3d2fd91e..2fb3fa7b5c3 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index 2deeee0f870..cd40cf486ae 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/be/files_versions.po b/l10n/be/files_versions.po index 42178f677d0..a04f5ae5a23 100644 --- a/l10n/be/files_versions.po +++ b/l10n/be/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 989a95417e6..3a15991192b 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 5446ea05fe5..cf375596130 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index 97fbac3107d..9ff31d5c454 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/be/user_webdavauth.po b/l10n/be/user_webdavauth.po index b0ef05091d4..9e0304b10bc 100644 --- a/l10n/be/user_webdavauth.po +++ b/l10n/be/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index df29a3b97c6..73f65ac1434 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 250844d1fbe..1e12a345fe6 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index ac98af1b674..5f2bd2b9f5d 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index d2292c3a604..0e80e601f24 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index b34ed53ec9e..18f3a9f6d7a 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 937d1ebd8a9..cf61ec83cae 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index 6ddabfb2532..b88246549b4 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 2c6b87cd766..ae1ec0aeea2 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 9a7e81c827b..c6d607a17e7 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "Обновено" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Записване..." diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 090b9a91139..8ec4f3ffdbe 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index a237daa76ee..606fb7fe9c7 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 12dcdc5e3b6..47cccfcd632 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 5657516e13e..9a39dab1c15 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 1aee47b45e9..0bcc04a1797 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 352cfa41910..a277faf0648 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 4e14b78c0fe..00d132cd17a 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 95ea7946c45..5327ace1423 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 062b9605095..72d49d3c8c7 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 2d465cdd0de..a46f18de27d 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 5512ff0009e..f70b3f4d8d3 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 5c9f48d8703..34a3a9d16c5 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index cdc95646c24..e5c329e580b 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index aef1d1ecfe6..a619724318e 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index cd41e26dfed..ae6109e30ff 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 239900b0738..951708dd523 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 90d62bfd1c7..bd05bbeecc7 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index cc9c28a8068..d4394d00f77 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 33d6a484faf..e06aadb4b68 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 6e6a97f8978..9b325d09663 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 7b9fbee414e..13628a3af42 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 450e44b5ea7..57ef354d7cb 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -122,7 +122,7 @@ msgstr "Error en actualitzar l'aplicació" msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "S'està desant..." diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 703a2caaf51..bf2d7adf141 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index 4c7bf62ffe4..bcde4299fd4 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 8b85d622a87..d9d28259e33 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index f94603ad39a..d5d74b7b838 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index ac3415a0725..cf291239f34 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 9ad584ba1fa..fe3dea1568f 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 33206ef2bd8..c68599b2ae8 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 305933ee010..48adf5d966f 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 3b0f8c58b41..1425b506984 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 17804f61f99..c9a543b6ec5 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index e70ffa9107f..7cf113bc598 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -122,7 +122,7 @@ msgstr "Chyba při aktualizaci aplikace" msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Ukládám..." diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 12fe24c77ac..228f59ec1c7 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index f2e2d7c56ce..a7466ca6bf1 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po new file mode 100644 index 00000000000..d72aedca2e7 --- /dev/null +++ b/l10n/cy_GB/core.po @@ -0,0 +1,606 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Owen Llywelyn , 2013. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/share.php:97 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:99 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:101 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:104 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "Math o gategori heb ei ddarparu." + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "Dim categori i'w ychwanegu?" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "Math o wrthrych heb ei ddarparu." + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "%s ID heb ei ddarparu." + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "Gwall wrth ychwanegu %s at ffefrynnau." + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "Ni ddewiswyd categorïau i'w dileu." + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "Gwall wrth dynnu %s o ffefrynnau." + +#: js/config.php:34 +msgid "Sunday" +msgstr "Sul" + +#: js/config.php:35 +msgid "Monday" +msgstr "Llun" + +#: js/config.php:36 +msgid "Tuesday" +msgstr "Mawrth" + +#: js/config.php:37 +msgid "Wednesday" +msgstr "Mercher" + +#: js/config.php:38 +msgid "Thursday" +msgstr "Iau" + +#: js/config.php:39 +msgid "Friday" +msgstr "Gwener" + +#: js/config.php:40 +msgid "Saturday" +msgstr "Sadwrn" + +#: js/config.php:45 +msgid "January" +msgstr "Ionawr" + +#: js/config.php:46 +msgid "February" +msgstr "Chwefror" + +#: js/config.php:47 +msgid "March" +msgstr "Mawrth" + +#: js/config.php:48 +msgid "April" +msgstr "Ebrill" + +#: js/config.php:49 +msgid "May" +msgstr "Mai" + +#: js/config.php:50 +msgid "June" +msgstr "Mehefin" + +#: js/config.php:51 +msgid "July" +msgstr "Gorffennaf" + +#: js/config.php:52 +msgid "August" +msgstr "Awst" + +#: js/config.php:53 +msgid "September" +msgstr "Medi" + +#: js/config.php:54 +msgid "October" +msgstr "Hydref" + +#: js/config.php:55 +msgid "November" +msgstr "Tachwedd" + +#: js/config.php:56 +msgid "December" +msgstr "Rhagfyr" + +#: js/js.js:286 +msgid "Settings" +msgstr "Gosodiadau" + +#: js/js.js:718 +msgid "seconds ago" +msgstr "eiliad yn ôl" + +#: js/js.js:719 +msgid "1 minute ago" +msgstr "1 munud yn ôl" + +#: js/js.js:720 +msgid "{minutes} minutes ago" +msgstr "{minutes} munud yn ôl" + +#: js/js.js:721 +msgid "1 hour ago" +msgstr "1 awr yn ôl" + +#: js/js.js:722 +msgid "{hours} hours ago" +msgstr "{hours} awr yn ôl" + +#: js/js.js:723 +msgid "today" +msgstr "heddiw" + +#: js/js.js:724 +msgid "yesterday" +msgstr "ddoe" + +#: js/js.js:725 +msgid "{days} days ago" +msgstr "{days} diwrnod yn ôl" + +#: js/js.js:726 +msgid "last month" +msgstr "mis diwethaf" + +#: js/js.js:727 +msgid "{months} months ago" +msgstr "{months} mis yn ôl" + +#: js/js.js:728 +msgid "months ago" +msgstr "misoedd yn ôl" + +#: js/js.js:729 +msgid "last year" +msgstr "y llynedd" + +#: js/js.js:730 +msgid "years ago" +msgstr "blwyddyn yn ôl" + +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Iawn" + +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 +msgid "Cancel" +msgstr "Diddymu" + +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Dewisiwch" + +#: js/oc-dialogs.js:215 +msgid "Yes" +msgstr "Ie" + +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Na" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 +msgid "Error" +msgstr "Gwall" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:125 js/share.js:617 +msgid "Error while sharing" +msgstr "Gwall wrth rannu" + +#: js/share.js:136 +msgid "Error while unsharing" +msgstr "Gwall wrth ddad-rannu" + +#: js/share.js:143 +msgid "Error while changing permissions" +msgstr "Gwall wrth newid caniatâd" + +#: js/share.js:152 +msgid "Shared with you and the group {group} by {owner}" +msgstr "Rhannwyd â chi a'r grŵp {group} gan {owner}" + +#: js/share.js:154 +msgid "Shared with you by {owner}" +msgstr "Rhannwyd â chi gan {owner}" + +#: js/share.js:159 +msgid "Share with" +msgstr "Rhannu gyda" + +#: js/share.js:164 +msgid "Share with link" +msgstr "Dolen ar gyfer rhannu" + +#: js/share.js:167 +msgid "Password protect" +msgstr "Diogelu cyfrinair" + +#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +msgid "Password" +msgstr "Cyfrinair" + +#: js/share.js:173 +msgid "Email link to person" +msgstr "" + +#: js/share.js:174 +msgid "Send" +msgstr "" + +#: js/share.js:178 +msgid "Set expiration date" +msgstr "Gosod dyddiad dod i ben" + +#: js/share.js:179 +msgid "Expiration date" +msgstr "Dyddiad dod i ben" + +#: js/share.js:211 +msgid "Share via email:" +msgstr "Rhannu drwy e-bost:" + +#: js/share.js:213 +msgid "No people found" +msgstr "Heb ganfod pobl" + +#: js/share.js:251 +msgid "Resharing is not allowed" +msgstr "Does dim hawl ail-rannu" + +#: js/share.js:287 +msgid "Shared in {item} with {user}" +msgstr "Rhannwyd yn {item} â {user}" + +#: js/share.js:308 +msgid "Unshare" +msgstr "Dad-rannu" + +#: js/share.js:320 +msgid "can edit" +msgstr "yn gallu golygu" + +#: js/share.js:322 +msgid "access control" +msgstr "rheolaeth mynediad" + +#: js/share.js:325 +msgid "create" +msgstr "creu" + +#: js/share.js:328 +msgid "update" +msgstr "diweddaru" + +#: js/share.js:331 +msgid "delete" +msgstr "dileu" + +#: js/share.js:334 +msgid "share" +msgstr "rhannu" + +#: js/share.js:368 js/share.js:564 +msgid "Password protected" +msgstr "Diogelwyd â chyfrinair" + +#: js/share.js:577 +msgid "Error unsetting expiration date" +msgstr "Gwall wrth ddad-osod dyddiad dod i ben" + +#: js/share.js:589 +msgid "Error setting expiration date" +msgstr "Gwall wrth osod dyddiad dod i ben" + +#: js/share.js:604 +msgid "Sending ..." +msgstr "" + +#: js/share.js:615 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:48 +msgid "ownCloud password reset" +msgstr "ailosod cyfrinair ownCloud" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "Ailosod anfon e-bost." + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "Methodd y cais!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 +#: templates/login.php:28 +msgid "Username" +msgstr "Enw defnyddiwr" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Gwneud cais i ailosod" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ailosodwyd eich cyfrinair" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "I'r dudalen mewngofnodi" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Cyfrinair newydd" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Ailosod cyfrinair" + +#: strings.php:5 +msgid "Personal" +msgstr "Personol" + +#: strings.php:6 +msgid "Users" +msgstr "Defnyddwyr" + +#: strings.php:7 +msgid "Apps" +msgstr "Pecynnau" + +#: strings.php:8 +msgid "Admin" +msgstr "Gweinyddu" + +#: strings.php:9 +msgid "Help" +msgstr "Cymorth" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "Mynediad wedi'i wahardd" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Methwyd canfod cwmwl" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "Golygu categorïau" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "Ychwanegu" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "Rhybudd Diogelwch" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +msgid "Please update your PHP installation to use ownCloud securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL." + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif." + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:44 +msgid "Create an admin account" +msgstr "Crewch gyfrif gweinyddol" + +#: templates/installation.php:62 +msgid "Advanced" +msgstr "Uwch" + +#: templates/installation.php:64 +msgid "Data folder" +msgstr "Plygell data" + +#: templates/installation.php:73 +msgid "Configure the database" +msgstr "Cyflunio'r gronfa ddata" + +#: templates/installation.php:78 templates/installation.php:90 +#: templates/installation.php:101 templates/installation.php:112 +#: templates/installation.php:124 +msgid "will be used" +msgstr "ddefnyddir" + +#: templates/installation.php:136 +msgid "Database user" +msgstr "Defnyddiwr cronfa ddata" + +#: templates/installation.php:143 +msgid "Database password" +msgstr "Cyfrinair cronfa ddata" + +#: templates/installation.php:148 +msgid "Database name" +msgstr "Enw cronfa ddata" + +#: templates/installation.php:158 +msgid "Database tablespace" +msgstr "Tablespace cronfa ddata" + +#: templates/installation.php:165 +msgid "Database host" +msgstr "Gwesteiwr cronfa ddata" + +#: templates/installation.php:171 +msgid "Finish setup" +msgstr "Gorffen sefydlu" + +#: templates/layout.guest.php:40 +msgid "web services under your control" +msgstr "gwasanaethau gwe a reolir gennych" + +#: templates/layout.user.php:58 +msgid "Log out" +msgstr "Allgofnodi" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "Gwrthodwyd mewngofnodi awtomatig!" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif fod yn anniogel!" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto." + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "Wedi colli'ch cyfrinair?" + +#: templates/login.php:41 +msgid "remember" +msgstr "cofio" + +#: templates/login.php:43 +msgid "Log in" +msgstr "Mewngofnodi" + +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "blaenorol" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "nesaf" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po new file mode 100644 index 00000000000..d631320c9ef --- /dev/null +++ b/l10n/cy_GB/files.po @@ -0,0 +1,314 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:30 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:31 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:32 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:33 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:51 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:12 +msgid "Files" +msgstr "" + +#: js/fileactions.js:125 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:193 +msgid "Rename" +msgstr "" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +msgid "Pending" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "replace" +msgstr "" + +#: js/filelist.js:252 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "cancel" +msgstr "" + +#: js/filelist.js:299 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:299 +msgid "undo" +msgstr "" + +#: js/filelist.js:324 +msgid "perform delete operation" +msgstr "" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:226 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:259 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" + +#: js/files.js:312 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:408 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:481 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:486 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Gwall" + +#: js/files.js:872 templates/index.php:70 +msgid "Name" +msgstr "" + +#: js/files.js:873 templates/index.php:81 +msgid "Size" +msgstr "" + +#: js/files.js:874 templates/index.php:83 +msgid "Modified" +msgstr "" + +#: js/files.js:893 +msgid "1 folder" +msgstr "" + +#: js/files.js:895 +msgid "{count} folders" +msgstr "" + +#: js/files.js:903 +msgid "1 file" +msgstr "" + +#: js/files.js:905 +msgid "{count} files" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:42 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:48 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:55 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:62 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:76 +msgid "Download" +msgstr "" + +#: templates/index.php:88 templates/index.php:89 +msgid "Unshare" +msgstr "Dad-rannu" + +#: templates/index.php:108 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:110 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:115 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:118 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po new file mode 100644 index 00000000000..6ffe72043a4 --- /dev/null +++ b/l10n/cy_GB/files_encryption.po @@ -0,0 +1,38 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po new file mode 100644 index 00000000000..e6060e38d5e --- /dev/null +++ b/l10n/cy_GB/files_external.po @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:66 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:36 js/google.js:93 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:424 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:427 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "Defnyddwyr" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po new file mode 100644 index 00000000000..42530fe4a72 --- /dev/null +++ b/l10n/cy_GB/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "Cyfrinair" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:10 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:13 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:19 templates/public.php:43 +msgid "Download" +msgstr "" + +#: templates/public.php:40 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:50 +msgid "web services under your control" +msgstr "gwasanaethau gwe a reolir gennych" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po new file mode 100644 index 00000000000..22b562fc3ce --- /dev/null +++ b/l10n/cy_GB/files_trashbin.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:96 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Gwall" + +#: js/trash.js:34 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:121 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:174 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:175 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:184 +msgid "1 folder" +msgstr "" + +#: js/trash.js:186 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:194 +msgid "1 file" +msgstr "" + +#: js/trash.js:196 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/cy_GB/files_versions.po b/l10n/cy_GB/files_versions.po new file mode 100644 index 00000000000..0f19e914bb4 --- /dev/null +++ b/l10n/cy_GB/files_versions.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:69 +msgid "No old versions available" +msgstr "" + +#: history.php:74 +msgid "No path specified" +msgstr "" + +#: js/versions.js:6 +msgid "Versions" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po new file mode 100644 index 00000000000..0b2d290f879 --- /dev/null +++ b/l10n/cy_GB/lib.po @@ -0,0 +1,258 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: app.php:349 +msgid "Help" +msgstr "Cymorth" + +#: app.php:362 +msgid "Personal" +msgstr "Personol" + +#: app.php:373 +msgid "Settings" +msgstr "Gosodiadau" + +#: app.php:385 +msgid "Users" +msgstr "Defnyddwyr" + +#: app.php:398 +msgid "Apps" +msgstr "Pecynnau" + +#: app.php:406 +msgid "Admin" +msgstr "Gweinyddu" + +#: files.php:209 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:210 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:211 files.php:244 +msgid "Back to Files" +msgstr "" + +#: files.php:241 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup.php:34 +msgid "Set an admin username." +msgstr "" + +#: setup.php:37 +msgid "Set an admin password." +msgstr "" + +#: setup.php:40 +msgid "Specify a data folder." +msgstr "" + +#: setup.php:55 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup.php:58 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup.php:61 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup.php:64 +#, php-format +msgid "%s set the database host." +msgstr "" + +#: setup.php:132 setup.php:324 setup.php:369 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:133 setup.php:156 setup.php:233 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup.php:155 setup.php:457 setup.php:524 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup.php:232 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup.php:303 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:304 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup.php:309 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup.php:310 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:583 setup.php:615 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup.php:635 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup.php:853 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:854 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "eiliad yn ôl" + +#: template.php:114 +msgid "1 minute ago" +msgstr "1 munud yn ôl" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "1 awr yn ôl" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "heddiw" + +#: template.php:119 +msgid "yesterday" +msgstr "ddoe" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "mis diwethaf" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "y llynedd" + +#: template.php:124 +msgid "years ago" +msgstr "blwyddyn yn ôl" + +#: updater.php:78 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:81 +msgid "up to date" +msgstr "" + +#: updater.php:84 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po new file mode 100644 index 00000000000..dc9b6f6a09c --- /dev/null +++ b/l10n/cy_GB/settings.po @@ -0,0 +1,500 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:32 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Gwall" + +#: js/apps.js:90 +msgid "Updating...." +msgstr "" + +#: js/apps.js:93 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:96 +msgid "Updated" +msgstr "" + +#: js/personal.js:109 +msgid "Saving..." +msgstr "" + +#: js/users.js:43 +msgid "deleted" +msgstr "" + +#: js/users.js:43 +msgid "undo" +msgstr "" + +#: js/users.js:75 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:88 templates/users.php:26 templates/users.php:80 +#: templates/users.php:105 +msgid "Groups" +msgstr "" + +#: js/users.js:91 templates/users.php:82 templates/users.php:119 +msgid "Group Admin" +msgstr "" + +#: js/users.js:111 templates/users.php:161 +msgid "Delete" +msgstr "" + +#: js/users.js:262 +msgid "add group" +msgstr "" + +#: js/users.js:414 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:415 js/users.js:421 js/users.js:436 +msgid "Error creating user" +msgstr "" + +#: js/users.js:420 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:29 personal.php:30 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "Rhybudd Diogelwch" + +#: templates/admin.php:18 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"This ownCloud server can't set system locale to %s. This means that there " +"might be problems with certain characters in file names. We strongly suggest" +" to install the required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"This ownCloud server has no working internet connection. This means that " +"some of the features like mounting of external storage, notifications about " +"updates or installation of 3rd party apps don´t work. Accessing files from " +"remote and sending of notification emails might also not work. We suggest to" +" enable internet connection for this server if you want to have all features" +" of ownCloud." +msgstr "" + +#: templates/admin.php:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:101 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:111 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:121 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:128 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:134 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:142 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:150 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:151 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:158 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:161 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:168 +msgid "Security" +msgstr "" + +#: templates/admin.php:181 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:182 +msgid "" +"Enforces the clients to connect to ownCloud via an encrypted connection." +msgstr "" + +#: templates/admin.php:185 +msgid "" +"Please connect to this ownCloud instance via HTTPS to enable or disable the " +"SSL enforcement." +msgstr "" + +#: templates/admin.php:195 +msgid "Log" +msgstr "" + +#: templates/admin.php:196 +msgid "Log level" +msgstr "" + +#: templates/admin.php:223 +msgid "More" +msgstr "" + +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 +msgid "Version" +msgstr "" + +#: templates/admin.php:234 templates/personal.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:11 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:12 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:28 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:34 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:36 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:38 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:15 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:26 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:37 templates/users.php:23 templates/users.php:79 +msgid "Password" +msgstr "Cyfrinair" + +#: templates/personal.php:38 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:39 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:40 +msgid "Current password" +msgstr "" + +#: templates/personal.php:42 +msgid "New password" +msgstr "Cyfrinair newydd" + +#: templates/personal.php:44 +msgid "Change password" +msgstr "" + +#: templates/personal.php:56 templates/users.php:78 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:57 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:58 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:61 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:70 +msgid "Email" +msgstr "" + +#: templates/personal.php:72 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:73 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:79 templates/personal.php:80 +msgid "Language" +msgstr "" + +#: templates/personal.php:86 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:91 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:93 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:77 +msgid "Login Name" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:41 templates/users.php:139 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:59 templates/users.php:154 +msgid "Other" +msgstr "" + +#: templates/users.php:84 +msgid "Storage" +msgstr "" + +#: templates/users.php:95 +msgid "change display name" +msgstr "" + +#: templates/users.php:99 +msgid "set new password" +msgstr "" + +#: templates/users.php:134 +msgid "Default" +msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po new file mode 100644 index 00000000000..9d260f933ea --- /dev/null +++ b/l10n/cy_GB/user_ldap.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +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:15 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:31 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:36 +msgid "Host" +msgstr "" + +#: templates/settings.php:38 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:39 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:40 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:41 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:43 +msgid "User DN" +msgstr "" + +#: templates/settings.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/settings.php:46 +msgid "Password" +msgstr "Cyfrinair" + +#: templates/settings.php:49 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:50 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:53 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:55 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:58 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:59 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:60 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:63 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:64 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:68 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:70 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:70 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:71 +msgid "Port" +msgstr "" + +#: templates/settings.php:72 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:72 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:74 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:74 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:75 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:75 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:76 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:77 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:77 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:77 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:78 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:78 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:80 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:82 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:82 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:83 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:83 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:84 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:84 templates/settings.php:87 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:85 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:85 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:86 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:86 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:87 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:88 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:90 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:92 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:93 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:94 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:95 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:95 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:99 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:99 +msgid "Help" +msgstr "Cymorth" diff --git a/l10n/cy_GB/user_webdavauth.po b/l10n/cy_GB/user_webdavauth.po new file mode 100644 index 00000000000..38625a8e005 --- /dev/null +++ b/l10n/cy_GB/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 23125c78c51..3b03eb966da 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index 00f0e194f08..c43e600f79f 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 11ad02b829f..8c8605731d3 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index c95d8c7f596..e8c3c21931e 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index b00e3af3fda..95f966c2f2a 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 8d9f7324397..d0728a8d9c0 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index ca8cb9848de..7ceccbf2615 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 43d95936cda..0e2d43d17f9 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 4381377afec..47340bcdeed 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -128,7 +128,7 @@ msgstr "Der opstod en fejl under app opgraderingen" msgid "Updated" msgstr "Opdateret" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Gemmer..." diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index e08e81e933f..98e5a1e4f05 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 3ca1e0bfc83..0590c136e92 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index e2d6e7adb3b..e5f6b5d5795 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 478a17ef0eb..6075d0eff7f 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 22a2714c2d5..9e734d80a38 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index ea0bfa1134e..3bd88c78ecd 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 88ae0661675..d3e9a367638 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 1a4ec5faa23..7484373ee04 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 629272de0a4..fd4ea22a0ec 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index f3919bae2ad..991f7008d7e 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 141407e5190..4c6065c5522 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "Fehler beim Aktualisieren der App" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 5c5672e57a9..c76b328283a 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po index 3291e0d7af5..a756a0d8570 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 260be366437..b9a6d98b594 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 914ae61dd58..d1d67461d38 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -34,8 +34,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index c9fc29bee5d..cb549f90fd2 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index e2ff7d2b24f..3b72b5747dd 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index acb0e4b391a..0f52dc9f53f 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 982b0767507..00c1b90925e 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 9ff7bc637c6..341c1a1b007 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index a8a37f9f197..de5340c6b56 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 91dc723e691..ee05c494b91 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -141,7 +141,7 @@ msgstr "Es ist ein Fehler während des Updates aufgetreten" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 6e5351670d4..d35dff49314 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index ef77fdbbd58..05ec894d85d 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 3bfd3322dd9..17bdcf4ca72 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index f41bc5e8546..6d69eade9c5 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index a274a691c30..657368cb3f4 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 13a2353cb92..ee870240424 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index b6fd051aa38..5f558cf1183 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index bac8c7a3fb0..b3db2cb3725 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 0891a90b782..d87bcb7f29d 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index ecbe4952347..7fd7a14dfd6 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 4cbc650486e..f80aa6d8584 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -130,7 +130,7 @@ msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογή msgid "Updated" msgstr "Ενημερώθηκε" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Αποθήκευση..." diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 063a5a85901..0685878dc00 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -9,12 +9,13 @@ # Efstathios Iosifidis , 2013. # Konstantinos Tzanidis , 2012. # Marios Bekatoros <>, 2012. +# Wasilis Mandratzis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -49,7 +50,7 @@ msgstr "Η διαγραφή απέτυχε" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?" #: js/settings.js:83 msgid "Keep settings?" @@ -111,7 +112,7 @@ msgstr "Base DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "Ένα DN Βάσης ανά γραμμή " #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -182,11 +183,11 @@ msgstr "Ρυθμίσεις Σύνδεσης" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "Ενεργοποιηση ρυθμισεων" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. " #: templates/settings.php:71 msgid "Port" @@ -194,25 +195,25 @@ msgstr "Θύρα" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Host " #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Δώστε μια προαιρετική εφεδρική υποδοχή. Πρέπει να είναι ένα αντίγραφο του κύριου LDAP / AD διακομιστη." #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "" +msgstr "Απενεργοποιηση του κεντρικου διακομιστη" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "Όταν ενεργοποιηθεί, με το ownCloud θα συνδεθείτε με το διακομιστή ρεπλίκα." #: templates/settings.php:75 msgid "Use TLS" @@ -220,7 +221,7 @@ msgstr "Χρήση TLS" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Μην το χρησιμοποιήσετε επιπροσθέτως, για LDAPS συνδέσεις , θα αποτύχει." #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" @@ -242,7 +243,7 @@ msgstr "Δεν προτείνεται, χρήση μόνο για δοκιμές #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache Time-To-Live" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." @@ -266,15 +267,15 @@ msgstr "Base User Tree" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "Ένα DN βάσης χρηστών ανά γραμμή" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "Χαρακτηριστικά αναζήτησης των χρηστών " #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Προαιρετικά? Ένα χαρακτηριστικό ανά γραμμή " #: templates/settings.php:85 msgid "Group Display Name Field" @@ -290,11 +291,11 @@ msgstr "Base Group Tree" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "Μια ομαδικη Βάση DN ανά γραμμή" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "" +msgstr "Ομάδα Χαρακτηριστικων Αναζήτηση" #: templates/settings.php:88 msgid "Group-Member association" @@ -302,15 +303,15 @@ msgstr "Group-Member association" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "" +msgstr "Ειδικά Χαρακτηριστικά " #: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Ποσοσταση πεδιου" #: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Προκαθισμενο πεδιο" #: templates/settings.php:93 msgid "in bytes" @@ -318,11 +319,11 @@ msgstr "σε bytes" #: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "Email τυπος" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας " #: templates/settings.php:95 msgid "" @@ -332,7 +333,7 @@ msgstr "Αφήστε το κενό για το όνομα χρήστη (προε #: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Δοκιμαστικες ρυθμισεις" #: templates/settings.php:99 msgid "Help" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index 12b784c7f84..370f455b114 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index c97c765e9c4..fd104b957cc 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 7b9ca1937bd..fb3dd94df15 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index 48e48cd33de..e909ea87bff 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index c9695b57bf5..97fd9187fc7 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index b2d00538f1a..e8fc61e3282 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 8d0d618725c..ef1aba79f48 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index a9bf35481ce..03a9d97ec3a 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 9fc0db90fd9..4208458ba0b 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index c623ce092fb..5ad89620f39 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Konservante..." diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 6aeb3085b6c..ae0cd9b8392 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index c18903205ff..8217ee0e2b9 100644 --- a/l10n/eo/user_webdavauth.po +++ b/l10n/eo/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 72132b21e08..4eaac95f2cf 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index a448b5bc8a3..711f2bc0864 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 5c90271db37..3300c20e3c2 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index b6fbbbeafc6..57448b496cc 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 46b4d66f10b..8f976d5650c 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 28a3cb9ded1..6467cca4813 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index a69a1d1a87a..61295e5517a 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index cb2a9143726..ca016657416 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index e9959550b20..13236df5dc7 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -134,7 +134,7 @@ msgstr "Error mientras se actualizaba" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 25a063bf8fb..3043a993129 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index 8104595c79e..305a875650d 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index cf82c5251a6..7a134d06ce6 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 4f2ae470853..c7d4671e9a0 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index a63950a8023..e51d601c61b 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index c2c6a9eb635..a5b2316b329 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 4c7375e8da7..bf0799a2226 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 4f423c89d34..b3f0b5a9fd4 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index af1d74768e6..b880bde3d92 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 6105dc68ffa..6be90480b4b 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index d9e27509356..6d8d5180772 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -120,7 +120,7 @@ msgstr "Error al actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index b539d42812b..a0f13250f44 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index 3b62ceea0b7..2d5007b68ea 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index e0224d580e9..73d7534b613 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 757224d8702..9bfc400f497 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 99746b2373e..8487c07b9f9 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 69d1f03a4c2..23cd4c8a18a 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 9174858925e..5f470a04c3e 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index e8b7bd59bc5..46f8a4c56d7 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index 88597f1f9b2..de587021590 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index fc470493906..d515bf9a160 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index c603999f22e..3532232094f 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -119,7 +119,7 @@ msgstr "Viga rakenduse uuendamisel" msgid "Updated" msgstr "Uuendatud" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Salvestamine..." diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 588eb01cbbc..9da3698683d 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index 11ee7102531..a25893ddd1c 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 3573993e1ce..6fa4ebaaf0f 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 0442ccce913..0f710284f4f 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index fdab73a5348..eea7795bbc1 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index cb7fd45b34e..4cb0843ae5d 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index c42f25913a3..89c6272ac74 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index cacd96becd8..0aea8466bd5 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 7e42b6733a3..7fdbf14c0dd 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index c65e98a9a9f..593856272c1 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index d9c6759ac5f..4f70111c6ec 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -120,7 +120,7 @@ msgstr "Errorea aplikazioa eguneratzen zen bitartean" msgid "Updated" msgstr "Eguneratuta" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Gordetzen..." diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 4f94b7dbd47..5dbd26541bc 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index 8fc10281ae9..7128f70cb6a 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index a0d1c5ffb0c..9178afa9063 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index d3e345434f9..6e2cacffc31 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 2d471bafeb6..a4b3d25d08e 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index fa5dc5f9d0b..b881ebe5588 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index f305fac0e0b..c4814707286 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 028245cdc3b..56b1199bd60 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 64c3439a0b3..2e38afda4e7 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 89ee6970916..d1d5f566ef2 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 4d3cc0f53bf..a39dc9e68bb 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -122,7 +122,7 @@ msgstr "خطا در هنگام بهنگام سازی برنامه" msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "درحال ذخیره ..." diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 4d69ed86dae..be344210e59 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_webdavauth.po b/l10n/fa/user_webdavauth.po index 62631e8bd8e..5b69bafee6b 100644 --- a/l10n/fa/user_webdavauth.po +++ b/l10n/fa/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi/core.po b/l10n/fi/core.po index 9199f7cff20..4a0b4df42ef 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index a6abbe1b1a1..ccb82381a2d 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/fi/lib.po b/l10n/fi/lib.po index 81257271c6f..ced780d1ce7 100644 --- a/l10n/fi/lib.po +++ b/l10n/fi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 55b80921b6c..80f0f53b37d 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 2df6a15b42b..d68085e9641 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 76cae2f156f..606ba38b82d 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 6a21eb6ee3e..87b5f4c115f 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index bef0c84fd17..5abc5ffddc7 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 83e0e9bc922..6f3b5b27085 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index e05cdfb6e56..1dbda293039 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 220c28eae66..fc77066a99c 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index f86a50967d0..dbaeb194030 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -119,7 +119,7 @@ msgstr "Virhe sovellusta päivittäessä" msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Tallennetaan..." diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index ed63037a2ec..a72be9f1640 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index 4ed8a2e5a71..ef62c35b8a0 100644 --- a/l10n/fi_FI/user_webdavauth.po +++ b/l10n/fi_FI/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 8051f8813bc..07437d66137 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index ac62cd46adb..e694e546156 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 0a04e493c6a..3483ba97829 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 1eabea7ca22..ed1652d85ad 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 4c4dc7b4089..9959bf5b5c2 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index f37b15a7d8d..f49412eee38 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index 734bfa8efd2..e997c199e0f 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 0d82367ff6d..24cf1be8ed5 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 4e5add285aa..564e045b53e 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -135,7 +135,7 @@ msgstr "Erreur lors de la mise à jour de l'application" msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Sauvegarde..." diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 0328aff362d..dafca62301c 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index efb5ef69b38..8fdd18d7e53 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 7b320635e62..2424c7626c2 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 13580aacf54..b257aba1734 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 96058d128cf..d25b1b2d5ab 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 8e665aecdf8..f000f907280 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index f515b3253a7..657f1da63e8 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 8530c4e1579..64cdc9dbdc4 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index 695f30a3d3d..0744649b036 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index c17f8ea6ee0..b20f32fff27 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 5d24c3a4926..2230f6a0de9 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -122,7 +122,7 @@ msgstr "Produciuse un erro mentres actualizaba o aplicativo" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Gardando..." diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 1d1c0ab36a3..44b41641e2b 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index 301b089dd7a..89f599a0be8 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index ee87e77344a..742b5ad8730 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 2e5a6663f6c..6880b3e051f 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 78810288118..538cffbef36 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index dbb5147ed93..b8639454e1a 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 1201adaf600..a559adcb011 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 9b28a90b86b..40c11b05969 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index 6dc80633be2..d3d2624d333 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 37d481fbb35..de9c88104c2 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 621702ce0bc..afbda925dee 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "שומר.." diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 0b189621453..c2c294c997a 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_webdavauth.po b/l10n/he/user_webdavauth.po index b93834a9e1d..a1956eff5da 100644 --- a/l10n/he/user_webdavauth.po +++ b/l10n/he/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 9f34c9b87f7..b352ad12880 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 55cc3a81f34..058c4dc6c9c 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 1d58cb0d5c7..429b94708dc 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index 42d8715e7bc..0bae5719b49 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 232619dab62..1691691d5db 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index b963b8a8806..dccfd5206e1 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index 6f18e09abbc..48dc088aa1c 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 010b36e7420..454e8e165e8 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 0ba86498403..ce178a2bac8 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 157f5a55247..7ed6220d5fa 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/user_webdavauth.po b/l10n/hi/user_webdavauth.po index ac6b020e078..c6cb2a24135 100644 --- a/l10n/hi/user_webdavauth.po +++ b/l10n/hi/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 36ffbbaa918..6aa351f1a2c 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 84b9539ca8d..d1184dcf607 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 49ffacda4ed..a4e8af9c560 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 57ba61e83d2..af0395beada 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 965254276bf..f3d4834e760 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 7a1edc31fc3..152f07f3684 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 72c7f48a4cb..12e83d69fbb 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 6ad791925ed..ccd75c2b9e8 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 6577be3e2b4..e6e8a045211 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Spremanje..." diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index aa5d9446e95..5f2540a6106 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_webdavauth.po b/l10n/hr/user_webdavauth.po index 78b5589c2be..c9f410b1ad0 100644 --- a/l10n/hr/user_webdavauth.po +++ b/l10n/hr/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 9706d55d511..be7a4699313 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ef50be8ac51..c9c6e0609ee 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index b358c1d440b..4bf863c88dc 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index f9b482fd6ce..0f4348a55cc 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 5ec7cac7630..7897dc58ce5 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index bf38caacad5..dafccd8911a 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index 2202da640bb..ef316affe76 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 4251d9809fc..9bb5b3ab640 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 61bef740752..b1e991aa40a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -120,7 +120,7 @@ msgstr "Hiba történt a programfrissítés közben" msgid "Updated" msgstr "Frissítve" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Mentés..." diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 7e833a65226..804a0fd48f7 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po index d7f60e3f905..535e53af331 100644 --- a/l10n/hu_HU/user_webdavauth.po +++ b/l10n/hu_HU/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 6548eb6fba7..2bb63c0f9e1 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 262948abfc9..2b6464945dc 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 2cde2eb10a2..fe5d782b2ae 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index afe7a748499..55dedea9bea 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 25be34611fc..234d6e2961b 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index bd599c7c1b7..db3b51415e7 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 1fae34d8cc0..075ccfc669c 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index f840fe05c1b..51c38dce126 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 9c831a86e56..2648b60d7a9 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index e64cfd2633d..711ce68f351 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 3717ffc9d49..236cc1eb797 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 318fe7a9c63..8c460ce15e4 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 41b5e193ab1..0c7beb23e9a 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -118,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 456021e477b..5098a66b476 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_webdavauth.po b/l10n/ia/user_webdavauth.po index dde76722d67..5b5b3f33472 100644 --- a/l10n/ia/user_webdavauth.po +++ b/l10n/ia/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index c45ad98fd2b..0a94ad4da84 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index 998d6e50064..cd5200faba8 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 6adbc04ba96..752d0d3fa58 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 8ee624833af..64d7c1ec65e 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 0efab864e76..2fb4cd8cb0c 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index fde2b7d5cb9..03ff55760c6 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index f63611d434d..a886cd30377 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index d014bc056ea..2da890b5eec 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 2dcd31a4c75..d9e12876584 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -122,7 +122,7 @@ msgstr "Gagal ketika memperbarui aplikasi" msgid "Updated" msgstr "Diperbarui" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Menyimpan..." diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index b2e46704a2b..f972150841b 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_webdavauth.po b/l10n/id/user_webdavauth.po index 0ac81cebe68..89a9bc5bcd3 100644 --- a/l10n/id/user_webdavauth.po +++ b/l10n/id/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 7fffb7d1dce..ba97904bd6c 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index 3b6c150aeb0..f2748bea441 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index e5df846e8bb..d1357c26c4b 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index f3914d98cff..f4a26d339d6 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 89c5f2cc2af..cab803385d0 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index ca786d8b1c0..8955f0bf364 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index 5717e05eff9..00eb5c1b8c6 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index e64d4205299..3d8e511ed13 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index eea0a0b3e9b..7a60fd8a20d 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Er að vista ..." diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 6b6e486032b..fa68224263f 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po index d87d79fafbb..66194d2dae2 100644 --- a/l10n/is/user_webdavauth.po +++ b/l10n/is/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 9abf2d1c045..6eb124460f5 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/it/files.po b/l10n/it/files.po index e4a9e38f1df..dc9bdc115b9 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index 3839ab13a98..22da6ecfe7b 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 5743de999b7..fb50f4d4d86 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 38971183ab9..86370c04eab 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 4a03d9e7359..a585ede3939 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 1acb6a0db02..24390f266e1 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 4daad98778f..178f9da6cc0 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 06ec6749b51..4e47bbc088f 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -123,7 +123,7 @@ msgstr "Errore durante l'aggiornamento" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Salvataggio in corso..." diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 780bc6319cd..4cc1f418266 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index 3dca23310fc..f88d74e447e 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index ebe76b82ec0..fd5f9d065cb 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 8ea8587439c..8348f354bdf 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 4d2e89a2591..474babe04a7 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index b084e4a0664..ad9c4adb747 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 876ebabb366..443064306d4 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index f16dc84de56..2130acb86f6 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index d052012496b..480fb5e1fef 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 8d6bc8df10b..047e7df7cbf 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 265d861a3de..2cb5b86b575 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -121,7 +121,7 @@ msgstr "アプリの更新中にエラーが発生" msgid "Updated" msgstr "更新済み" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "保存中..." diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 75cc31572a6..d5116ad2263 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 3b17802d245..2341b9f95c7 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index cb2aaf68fff..63d4dff145e 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 93cf94b26ab..6dcd0b94c0b 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index adea9e1d6f3..357e27ab92d 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_external.po b/l10n/ka/files_external.po index 5a7c8676410..1d2bb5cb2b0 100644 --- a/l10n/ka/files_external.po +++ b/l10n/ka/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 3d6704f80be..622310cbd5b 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index f1f26c53ddd..e26f005489c 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_versions.po b/l10n/ka/files_versions.po index 55ea3250c21..302be1bdbfa 100644 --- a/l10n/ka/files_versions.po +++ b/l10n/ka/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index c401f407ac9..299b3686fb2 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index 1d2ec64e034..0a85ca4431c 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index 0dfd81d2bb1..1396bede36a 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/user_webdavauth.po b/l10n/ka/user_webdavauth.po index 9cc3db2b602..5433bc595c7 100644 --- a/l10n/ka/user_webdavauth.po +++ b/l10n/ka/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 8da06db4327..ea4a85683bd 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index b23917765ca..d0e564db200 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index b1bc0515476..538122996f9 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 54bce79203f..29e278e6e52 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 0d46e1c1a5c..968899752de 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index ec48b3823a7..3ed31fdce60 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index ecda637d054..13de4c38f4e 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index c36273be033..87dbc9fbb62 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index dd0f972d507..46d26abbd50 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -118,7 +118,7 @@ msgstr "შეცდომა აპლიკაციის განახლ msgid "Updated" msgstr "განახლებულია" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "შენახვა..." diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 69e1df8eac5..6931493d23f 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_webdavauth.po b/l10n/ka_GE/user_webdavauth.po index 48f9fba8665..a6662b7e112 100644 --- a/l10n/ka_GE/user_webdavauth.po +++ b/l10n/ka_GE/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 1a32e4aae26..481dd8e0bb7 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 60c8c634e2c..1345b2d0fea 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index 13626aad5a4..dba23393eab 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index 60bd0f142f0..ed14ed557d6 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index 04f82d2e654..e561733a106 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 3547c1bf8bf..12ddf3ce859 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/kn/files_versions.po b/l10n/kn/files_versions.po index a8249bb2ba7..c15d71b56c3 100644 --- a/l10n/kn/files_versions.po +++ b/l10n/kn/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index dce059b9c80..b921bdf20dc 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 9dbdfea6144..c49b26512b3 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 1b252cb4194..76ed5e5bc50 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/kn/user_webdavauth.po b/l10n/kn/user_webdavauth.po index c4192a2576d..1dde34b41e3 100644 --- a/l10n/kn/user_webdavauth.po +++ b/l10n/kn/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index aa6678269d5..a4c7b6bbb9d 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 454decde7b8..08e22f63b54 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 874e4832409..9a2fc1b35bd 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index ceb77ef9772..b2dbdea9bd8 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index eacbe1a4ebc..9810e11baf7 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 4da8a759ef8..fae4215410b 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 2e8f8fec0f5..101de33dbe4 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index cc102819885..c70b3eeb9e6 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 3ff506d4a95..098a8eef8f2 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -121,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "저장 중..." diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 299a770209a..12de201d716 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index b3a842c9f9f..02c3920ceba 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 1a5f27625fd..214b67e0c49 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 8a381380be8..1ea4fe01e85 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index e8ffbf31f91..afa8a7eff00 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 615505f25c1..0ebebe40748 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index fc8210c0549..5294fa10422 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 7f649909e07..466bf259a35 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index 149ad35dbfe..8f2cdbd21e8 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 72e87c63121..4a9acfed363 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 0d5a13796ad..2c83b2fbbfe 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 89de1afb37c..cc74bf7a413 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_webdavauth.po b/l10n/ku_IQ/user_webdavauth.po index 3acc0982493..e623bd161b4 100644 --- a/l10n/ku_IQ/user_webdavauth.po +++ b/l10n/ku_IQ/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 604cdfeb85f..f7fd0855757 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 96058281e73..8aa5780abdf 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 1eca9f95801..0632e6b5ab9 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index b923b07ae80..e0bf824f956 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 972dce02780..a8c12d1704a 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index d774d9ccdce..046e687bd2e 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index d28d02613bc..0daea383b9d 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index de22578b7ff..39159b7fc20 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index c80db5e8316..c657f9b7287 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Speicheren..." diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index f1d3a5397de..43ff3ad1b16 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_webdavauth.po b/l10n/lb/user_webdavauth.po index 2b1c6404d5e..093341b3d26 100644 --- a/l10n/lb/user_webdavauth.po +++ b/l10n/lb/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 7c12af72de2..ad04a7e8c8c 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index d2a357328a3..7bc5f5a3e2e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index 34e4264e6c5..a3629e2cc4f 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 89e5eb1d39a..de18742d785 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index c4369f8248a..a2553793fbd 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 81179965774..f427f0e01f6 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index 5530b9feaf2..15720277429 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 798d9c6cb17..766f8e06e9b 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 838d97af346..79929cea325 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -118,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Saugoma.." diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index bf16727734f..a27f44400d6 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_webdavauth.po b/l10n/lt_LT/user_webdavauth.po index 086cccfdd24..9f842d85396 100644 --- a/l10n/lt_LT/user_webdavauth.po +++ b/l10n/lt_LT/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index a7c8d5630cb..921311120e4 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b59d7a6bfa9..de2375feaab 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index cd156c95e83..2b049a1c7e1 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 8e5ca0c8415..0c6f6526303 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 74aca9c22a5..eba98a874e5 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 5cc002eaa11..66670fca8c4 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index 095a8a33b59..9c9098fdd98 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 42c9ad2273d..1d47fb37934 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index ee26dbf4f4a..fd7f24987d9 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -119,7 +119,7 @@ msgstr "Kļūda, atjauninot lietotni" msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Saglabā..." diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 5b474e294c6..d90ac74dcb7 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_webdavauth.po b/l10n/lv/user_webdavauth.po index 0874111e98e..d866091dc06 100644 --- a/l10n/lv/user_webdavauth.po +++ b/l10n/lv/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index d5c1c8cd7d7..81face26f61 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 48c74acdf5b..f6c46aea44b 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 4a1a4c47ff5..2d19fc17650 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 7326c9f28fe..fe3c3493235 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 374577a7443..8f8d15bd33d 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index bcda3004eb3..5b9f5e38cac 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index 84dee8dad3c..0f47e5a9dd9 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 98e3ad70859..6ee33715829 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 3235daed114..6294b438afc 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Снимам..." diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index a6395bcf5ae..bf3591d3a7c 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index e19772ebc70..f396468a5d5 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 057c4b98a74..f15ffdc57f2 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 0ff8b67f0b0..e6c9a00ff36 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 2704af4e7db..9515dfd0de7 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 23fe53ff4bc..8ecc367a1e5 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 11553a7aa22..db23a1af3fe 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 78cba637f3a..8c4564ff8db 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index d66a36bc7ab..6f1366cd610 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index a78f7f6af71..fb311e81a8f 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 6dd34bb2841..53d5141ad2a 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Simpan..." diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 71e5c5675fb..f99ce5db090 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po index 51db2d612ec..c2284a13600 100644 --- a/l10n/ms_MY/user_webdavauth.po +++ b/l10n/ms_MY/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 5b10a84f571..86a5d60cc6b 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 5e8bca7fd69..1c3bdb90876 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 330468c9774..8187a95657c 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 66757d03280..3eb55f030a6 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index af1867532c9..548c22898bd 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 86cfe943920..dbf87258462 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_versions.po b/l10n/my_MM/files_versions.po index 062c86e62e3..a2ba5e272de 100644 --- a/l10n/my_MM/files_versions.po +++ b/l10n/my_MM/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 054469003cb..e6d187a22f6 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index f4eaf7ebb8d..3b64f4963b7 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 4bf54c5ddef..11909d9de18 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/user_webdavauth.po b/l10n/my_MM/user_webdavauth.po index 7bd78a09d5c..bfba4e1cd6e 100644 --- a/l10n/my_MM/user_webdavauth.po +++ b/l10n/my_MM/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index bb7ae5b0cfa..3a4eaba426a 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index a3ffbdf4fed..270f2a77d93 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index e584a2b4716..a4f3b39ecb1 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 9f22c654ccf..24d044818d0 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index a34b1e92096..aab4069ed7a 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 41f5263d0d2..dde092aba96 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index 983a89bf402..5f9387a60ff 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 30fc6e562ca..ac2d472e3aa 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 2c505cf1a2f..4f57396323f 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -124,7 +124,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Lagrer..." diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index ce3caf482b8..3102274ae54 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index c11bcf1619a..0bdc4ebc7b0 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index f1c0c77ebf6..fb5ac097bd4 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index ed60ef595bc..186deace5c6 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index c6346833fad..adf3985dab2 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index 0f0c2811637..bacdd213350 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 2eecd24e2b9..e18a1db2d77 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index aa7b4136e28..16034c1cb48 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ne/files_versions.po b/l10n/ne/files_versions.po index b318af6e7ee..234a1c0d8f3 100644 --- a/l10n/ne/files_versions.po +++ b/l10n/ne/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index c8340a3f31d..3a91dd5e2d7 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 21112ba3057..90251cee265 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 67b13367777..a589c8483df 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/ne/user_webdavauth.po b/l10n/ne/user_webdavauth.po index 9db1e1b1801..64e025a6bec 100644 --- a/l10n/ne/user_webdavauth.po +++ b/l10n/ne/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 3238df3e9b2..391f1ef71eb 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index b551cb1c205..a3c69c4f2d4 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index f716ee20fa5..76bec865680 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 14fa7898a5b..f1fefe88e17 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 0bdafc35318..e64ffbe44bf 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 546c51510de..c80e748b44b 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 3171f1345a7..9254c97a290 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 8240ed69eea..cddcc754693 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index b7808c80600..34b223ac45c 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -128,7 +128,7 @@ msgstr "Fout bij bijwerken app" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Aan het bewaren....." diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 8955fc084a4..2e4e387628c 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index e1e3d510ba9..90490f9dd96 100644 --- a/l10n/nl/user_webdavauth.po +++ b/l10n/nl/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 83a1b479fa1..40265bd47a4 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index b71321ee988..ff7697f86e9 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 4c044b70466..ef0923d2a48 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index fb03e3cb375..88b567ae902 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 877f89fbd4b..296e7f5ae10 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 43b1a71c81e..1924d58a153 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index f9421355e4a..3ab98c30537 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index f816e938489..483f3ee52eb 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 25710dd5297..a273c96f065 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -118,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 96d7ea3e908..f15d6449f35 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_webdavauth.po b/l10n/nn_NO/user_webdavauth.po index aa8db07cf41..1b5e93f18ca 100644 --- a/l10n/nn_NO/user_webdavauth.po +++ b/l10n/nn_NO/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index c5edaf4ff0b..9414d1bcf44 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 438e64ed3b3..1a86e26f564 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index 1d610acbd73..a7fbf592350 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index b41f8d964f3..ea558c0a4fc 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 5d54968662a..f250912c1ee 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index f3ed3d0f412..a631653516f 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index 127b1e57b84..eea377d1837 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index a41273fdd8d..8ac687287d2 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index e7ec51dfaf1..df9e0929594 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Enregistra..." diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 39a8e2f1c68..00048980bfd 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_webdavauth.po b/l10n/oc/user_webdavauth.po index 791548b97e6..28e19ba92c0 100644 --- a/l10n/oc/user_webdavauth.po +++ b/l10n/oc/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index dc589ac76de..91dcac0d464 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 5e8ce661c0f..3361b9741f6 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index bab982698b1..c2357401d81 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 6fcbfc009e4..7b747f0ed54 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 447eac36dc9..4007f347ff0 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 2638a60560c..284ff04071a 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index dd854a1b07c..28ab5a893ce 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 8eddff3fcd2..195db79fa64 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 2f7a020b48c..ff5ed02f9b6 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Błąd podczas aktualizacji aplikacji" msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Zapisywanie..." diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 842e71256c0..48697cda32f 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index 69bfdc793e0..437dc1175da 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 8fa853d62a5..59dba278777 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 6ce2bbc8b9e..6c5cbd655cb 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_encryption.po b/l10n/pl_PL/files_encryption.po index 40ed23e2670..13ec81b2fa5 100644 --- a/l10n/pl_PL/files_encryption.po +++ b/l10n/pl_PL/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_external.po b/l10n/pl_PL/files_external.po index eb3f6672bd3..63786d6b427 100644 --- a/l10n/pl_PL/files_external.po +++ b/l10n/pl_PL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_sharing.po b/l10n/pl_PL/files_sharing.po index 8756f2529d5..6bd035fa98c 100644 --- a/l10n/pl_PL/files_sharing.po +++ b/l10n/pl_PL/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index f5533795739..7920003d18c 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 08069cd9643..f20407f561a 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index be319828848..9f3e48faf18 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 310263c8cf1..038b200e8ea 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po index b6381eee805..9d3f142fb47 100644 --- a/l10n/pl_PL/user_ldap.po +++ b/l10n/pl_PL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/user_webdavauth.po b/l10n/pl_PL/user_webdavauth.po index d867ec10d33..8056a470e99 100644 --- a/l10n/pl_PL/user_webdavauth.po +++ b/l10n/pl_PL/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index b1e1b553e1b..69739f01cb5 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index d28f645f029..1347204dd4b 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 6318bd58df6..66f9c4e0299 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 8fb231323c0..9b0ff93c3cc 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index ac7a37a6b8d..52bc451ea0c 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 617c6ff2626..728344416d1 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index f2f07af012d..72744963485 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 8f730781c81..7cb95935495 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index ac98a99c4a0..c7c53c3952a 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -127,7 +127,7 @@ msgstr "Erro ao atualizar aplicativo" msgid "Updated" msgstr "Atualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index bc50282a095..54d37d885bc 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_webdavauth.po b/l10n/pt_BR/user_webdavauth.po index beb981284a1..c68169faea4 100644 --- a/l10n/pt_BR/user_webdavauth.po +++ b/l10n/pt_BR/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 40b04bc4f7c..cde8bb61899 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 0f1a9e59873..6794c27ed34 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index d6acdfd0e5d..5b7f52b3712 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 5190b300f3a..583bb3bfaf3 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 263e69dd587..913b52dd574 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 16bda151758..187d7ecf917 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index bf398be73b2..102a1060df2 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 4584e98139b..6e5fe1eea2f 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index a82084a8f3f..a0be25c84ba 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -124,7 +124,7 @@ msgstr "Erro enquanto actualizava a aplicação" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "A guardar..." diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 27ad5c0cee7..a5106e4055f 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_webdavauth.po b/l10n/pt_PT/user_webdavauth.po index 27a6435e85c..ba3adcee864 100644 --- a/l10n/pt_PT/user_webdavauth.po +++ b/l10n/pt_PT/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index ff67fb854e4..35676e96cfe 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 59df2ce6f83..e15f6abff90 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index 0178c344057..a4aa0e05dfe 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 3dd7b1f334e..104dee15326 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 54f7f154913..6dfb5310d78 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index ba7c983acd0..1c2d7260a9b 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 1a1e9ab27d0..0648c9a78ca 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 34b7915c681..1453bbf7543 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index bff150ffa8a..942cb3c8edc 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -123,7 +123,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Salvez..." diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 44e5fa0d0be..7d04a5cc4f0 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_webdavauth.po b/l10n/ro/user_webdavauth.po index 6109a77f94f..637e3bf0269 100644 --- a/l10n/ro/user_webdavauth.po +++ b/l10n/ro/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 127eea8e44d..6f4f8a3c681 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 11afccd3a66..d532da2e90a 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 10d0dee2c7a..414201060bd 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 51708e8373b..5054c5c61d2 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index f63d64a4a08..1278347ec84 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index ef193b63245..45af8ef8130 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index 304ee7eaccf..da5a0e02283 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 241423458fc..50cad3c909f 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 32b4ecffafe..2b06278427c 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -131,7 +131,7 @@ msgstr "Ошибка в процессе обновления приложени msgid "Updated" msgstr "Обновлено" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Сохранение..." diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 1cdc528b1f4..96e71415b22 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_webdavauth.po b/l10n/ru/user_webdavauth.po index cb9787729a8..c402a174582 100644 --- a/l10n/ru/user_webdavauth.po +++ b/l10n/ru/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 78a7e92ad42..b6aa78f2ae7 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index e0b7ef7d14a..4e3eddace56 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po index 475cc21624b..e9f3e4b2039 100644 --- a/l10n/ru_RU/files_encryption.po +++ b/l10n/ru_RU/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index f0db491af62..43604ee0162 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_sharing.po b/l10n/ru_RU/files_sharing.po index b2e253d777d..2f1f872d545 100644 --- a/l10n/ru_RU/files_sharing.po +++ b/l10n/ru_RU/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index 88f31b8ae78..dd27b348b3b 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index c61d6b50a30..8931ebb796c 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index b230b541d5f..5903c5b4edf 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index f8ec1a9f654..09c56fb8284 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Сохранение" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 8d689953482..3ee3d471450 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po index c7942c0aacc..8223c3dc9ba 100644 --- a/l10n/ru_RU/user_webdavauth.po +++ b/l10n/ru_RU/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 5d59a87c19f..bd225017a61 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b3eb4cde336..3b5c8990fbb 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 7eac34c9bad..3e1361874ca 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 105ab59caba..13c3bd6a621 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index b2714042dd3..d4a15ed8444 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 8d505239eb2..bc2af0ccec8 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index 4c83ca1d0e6..eb2829745c7 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 11a0c7fff20..6a13f369cf0 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 0812e022750..ecb6a7c40f7 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index b9faaaba983..3fdeae7d3a3 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_webdavauth.po b/l10n/si_LK/user_webdavauth.po index ada80e75d6b..cb5a2e879d3 100644 --- a/l10n/si_LK/user_webdavauth.po +++ b/l10n/si_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index bc430f23eeb..585de750f26 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 85c7273021c..858044fcb80 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index dfa8be5d6ed..0e065e27956 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index efcc8422942..f99201a5587 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 609ac22383d..1b12c173860 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index b616563274d..725fce01267 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sk/files_versions.po b/l10n/sk/files_versions.po index 3d146dfb02c..7157752d710 100644 --- a/l10n/sk/files_versions.po +++ b/l10n/sk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 45bcc4a9598..63f7ea5ee0c 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 5eeac0348ea..d9b345699cf 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index a5f757920a0..37edfc8d9f7 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/sk/user_webdavauth.po b/l10n/sk/user_webdavauth.po index 3b571279803..4a5a83a1eab 100644 --- a/l10n/sk/user_webdavauth.po +++ b/l10n/sk/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 00ea6d66330..6ec59a28f0b 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 4f956583edd..e5dac9f9653 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 9ce3732a072..69c0359cc18 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index a6f07d27d03..3603bda557e 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 07ea96d641a..d792bd55d10 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 29989ed5b38..4c53d28f017 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 51261b891f3..6bb0cb836c8 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index d1b68734549..bf8820e425a 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index fe292fb38b3..84eb780da7c 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -122,7 +122,7 @@ msgstr "chyba pri aktualizácii aplikácie" msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Ukladám..." diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 9724c535247..dcfe6e11b1d 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index a0dcc47ceb2..e20d8617a6c 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 80c8dccfbda..59dca9a91a4 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 252f7b513ee..70bc018b177 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 94bd86897ee..32f913f2622 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 87d9dc110e0..d7930595bc2 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index bfe11652174..cce37540707 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 77048dd7501..3a134b8b187 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 5a32b4db172..154d0ce0887 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 9938dc9c025..9814f3e9332 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index f8062dc3318..957fabe7472 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -122,7 +122,7 @@ msgstr "Prišlo je do napake med posodabljanjem programa." msgid "Updated" msgstr "Posodobljeno" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Poteka shranjevanje ..." diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index b35519eed40..d291effd858 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index 57c43401285..dc42b6b1564 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 27820eb8b11..1179d65ec7c 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 887642ef410..3915e153101 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index e077f5e19bd..7dbf902707e 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 494a58ba3b3..bb92141f3eb 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 69b90c903da..9b729426c31 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index faad2478b9d..a2e6c8176af 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_versions.po b/l10n/sq/files_versions.po index 82daa820ba3..a2ce9ffe2b5 100644 --- a/l10n/sq/files_versions.po +++ b/l10n/sq/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 0461910a062..6e59fdb660e 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index c4e2ddab226..0ea938feaf7 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index e9472845722..ff91215d0aa 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_webdavauth.po b/l10n/sq/user_webdavauth.po index b3bb1e16258..9449bd231d5 100644 --- a/l10n/sq/user_webdavauth.po +++ b/l10n/sq/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 46dda51aa20..e9760003433 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 0eff71bb2c4..18eacafc8b0 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -5,13 +5,14 @@ # Translators: # Ivan Petrović , 2012. # Slobodan Terzić , 2011, 2012. +# , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -23,20 +24,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Не могу да преместим %s – датотека с овим именом већ постоји" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Не могу да преместим %s" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "Не могу да преименујем датотеку" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ниједна датотека није отпремљена услед непознате грешке" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -71,11 +72,11 @@ msgstr "Не могу да пишем на диск" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Нема довољно простора" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "неисправна фасцикла." #: appinfo/app.php:12 msgid "Files" @@ -83,7 +84,7 @@ msgstr "Датотеке" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "Обриши за стално" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" @@ -123,7 +124,7 @@ msgstr "опозови" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "обриши" #: js/filelist.js:406 msgid "1 file uploading" @@ -131,15 +132,15 @@ msgstr "Отпремам 1 датотеку" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "датотеке се отпремају" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "Датотека „.“ је неисправног имена." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "Име датотеке не може бити празно." #: js/files.js:64 msgid "" @@ -149,17 +150,17 @@ msgstr "Неисправан назив. Следећи знакови нису #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване." #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -167,7 +168,7 @@ msgstr "Не могу да отпремим датотеку као фасцик #: js/files.js:272 msgid "Not enough space available" -msgstr "" +msgstr "Нема довољно простора" #: js/files.js:312 msgid "Upload cancelled." @@ -180,11 +181,11 @@ msgstr "Отпремање датотеке је у току. Ако сада н #: js/files.js:481 msgid "URL cannot be empty." -msgstr "" +msgstr "Адреса не може бити празна." #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud." #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" @@ -272,7 +273,7 @@ msgstr "Са везе" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Обрисане датотеке" #: templates/index.php:48 msgid "Cancel upload" @@ -280,7 +281,7 @@ msgstr "Прекини отпремање" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Овде немате дозволу за писање." #: templates/index.php:62 msgid "Nothing in here. Upload something!" @@ -314,4 +315,4 @@ msgstr "Тренутно скенирање" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Дограђујем кеш система датотека…" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index a27a28465f5..2eae48fdc6c 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 800176734ad..476522e9fbd 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 9181ca9a56a..8c455cac474 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 2a417b2ea6a..69d8ab3bf2a 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "Обриши за стално" #: js/trash.js:174 templates/index.php:17 msgid "Name" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index ec43d448dad..b878bee5636 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 733b5938e2f..6032504b5b9 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -183,12 +183,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Погледајте водиче за инсталацију." #: template.php:113 msgid "seconds ago" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index e49c51e90e2..4faad27c2ff 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -5,12 +5,13 @@ # Translators: # , 2012. # Slobodan Terzić , 2011, 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -30,7 +31,7 @@ msgstr "Грешка при аутентификацији" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" -msgstr "" +msgstr "Не могу да променим име за приказ" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -84,11 +85,11 @@ msgstr "Не могу да уклоним корисника из групе %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Не могу да ажурирам апликацију." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "Ажурирај на {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -100,7 +101,7 @@ msgstr "Укључи" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Сачекајте…" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" @@ -108,23 +109,23 @@ msgstr "Грешка" #: js/apps.js:90 msgid "Updating...." -msgstr "" +msgstr "Ажурирам…" #: js/apps.js:93 msgid "Error while updating app" -msgstr "" +msgstr "Грешка при ажурирању апликације" #: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "Ажурирано" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Чување у току..." #: js/users.js:43 msgid "deleted" -msgstr "" +msgstr "обрисано" #: js/users.js:43 msgid "undo" @@ -132,7 +133,7 @@ msgstr "опозови" #: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "Не могу да уклоним корисника" #: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 @@ -149,19 +150,19 @@ msgstr "Обриши" #: js/users.js:262 msgid "add group" -msgstr "" +msgstr "додај групу" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "" +msgstr "Морате унети исправно корисничко име" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "" +msgstr "Грешка при прављењу корисника" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "" +msgstr "Морате унети исправну лозинку" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -182,32 +183,32 @@ msgstr "Тренутно су ваши подаци и датотеке дост #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Упозорење о подешавању" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Погледајте водиче за инсталацију." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Недостаје модул „fileinfo“" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "Локализација не ради" #: templates/admin.php:63 #, php-format @@ -219,7 +220,7 @@ msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "Веза с интернетом не ради" #: templates/admin.php:78 msgid "" @@ -237,7 +238,7 @@ msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Изврши један задатак са сваком учитаном страницом" #: templates/admin.php:111 msgid "" @@ -253,52 +254,52 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Дељење" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Омогући API Share" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Дозвољава апликацијама да користе API Share" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Дозволи везе" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Дозволи корисницима да деле ставке с другима путем веза" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "Дозволи поновно дељење" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Дозволи корисницима да поновно деле ставке с другима" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Дозволи корисницима да деле са било ким" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "Безбедност" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "Наметни HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе." #: templates/admin.php:185 msgid "" @@ -308,23 +309,23 @@ msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "Бележење" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "Ниво бележења" #: templates/admin.php:223 msgid "More" -msgstr "" +msgstr "Више" #: templates/admin.php:224 msgid "Less" -msgstr "" +msgstr "Мање" #: templates/admin.php:231 templates/personal.php:102 msgid "Version" -msgstr "" +msgstr "Верзија" #: templates/admin.php:234 templates/personal.php:105 msgid "" @@ -362,27 +363,27 @@ msgstr "Ажурирај" #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "Корисничка документација" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "Администраторска документација" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "Мрежна документација" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Форум" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Праћење грешака" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "Комерцијална подршка" #: templates/personal.php:8 #, php-format @@ -391,7 +392,7 @@ msgstr "Искористили сте %s од дозвољен #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Преузмите апликације ради синхронизовања датотека" #: templates/personal.php:26 msgid "Show First Run Wizard again" @@ -423,19 +424,19 @@ msgstr "Измени лозинку" #: templates/personal.php:56 templates/users.php:78 msgid "Display Name" -msgstr "" +msgstr "Име за приказ" #: templates/personal.php:57 msgid "Your display name was changed" -msgstr "" +msgstr "Ваше име за приказ је промењено" #: templates/personal.php:58 msgid "Unable to change your display name" -msgstr "" +msgstr "Не могу да променим ваше име за приказ" #: templates/personal.php:61 msgid "Change display name" -msgstr "" +msgstr "Промени име за приказ" #: templates/personal.php:70 msgid "Email" @@ -459,15 +460,15 @@ msgstr " Помозите у превођењу" #: templates/personal.php:91 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" #: templates/users.php:21 templates/users.php:77 msgid "Login Name" -msgstr "" +msgstr "Корисничко име" #: templates/users.php:32 msgid "Create" @@ -475,11 +476,11 @@ msgstr "Направи" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Подразумевано складиште" #: templates/users.php:41 templates/users.php:139 msgid "Unlimited" -msgstr "" +msgstr "Неограничено" #: templates/users.php:59 templates/users.php:154 msgid "Other" @@ -487,16 +488,16 @@ msgstr "Друго" #: templates/users.php:84 msgid "Storage" -msgstr "" +msgstr "Складиште" #: templates/users.php:95 msgid "change display name" -msgstr "" +msgstr "промени име за приказ" #: templates/users.php:99 msgid "set new password" -msgstr "" +msgstr "постави нову лозинку" #: templates/users.php:134 msgid "Default" -msgstr "" +msgstr "Подразумевано" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 71831e3ed86..5ab18046b0c 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_webdavauth.po b/l10n/sr/user_webdavauth.po index e16ddc80702..c72a84c03cb 100644 --- a/l10n/sr/user_webdavauth.po +++ b/l10n/sr/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index c1307364cba..e3b9468ad2f 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 43356ea3f88..20a4cf13bce 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 4ed26d55415..9eb93b9f938 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 74194db3c87..fbfb36951c0 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index fd4664a6ee4..778a78eb8c0 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index a2456c9bf81..5743501ec1f 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index a73c400c085..7e54c05a933 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 0c0e851bf59..7e046b92c5a 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 6304ccc06c8..6b6e5528039 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index b3a83e48283..19f25b81a02 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/user_webdavauth.po b/l10n/sr@latin/user_webdavauth.po index ce7bf86e0b3..44c82fe664f 100644 --- a/l10n/sr@latin/user_webdavauth.po +++ b/l10n/sr@latin/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index f06b83da0a2..a176c33235e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 46f06f3a61c..f18dad22146 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 4f03c0ca4ea..a1c717ce9fc 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 2c3ed5c2cfa..e58feaa6ceb 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 83540b196bd..c8e79bb65df 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 6e330464230..c917c8bda19 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 088b1f902d1..ada122d58b1 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 5b3a2089404..e2d94586525 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 599768c9e4c..78e13f62c26 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -125,7 +125,7 @@ msgstr "Fel uppstod vid uppdatering av appen" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Sparar..." diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 7473df8242d..f75fdc8da00 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index bf35caa2cf8..0cb54a97da1 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index e548cb04e30..8a88331b365 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index b58c07e5cb5..5dd812bc1b0 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 62ef25444ca..2d586daf24e 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 1edf9425c61..f61afed3306 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 65a3fc50bd6..324fbf714d8 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index a07e5dce97e..dd07e322699 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sw_KE/files_versions.po b/l10n/sw_KE/files_versions.po index cef9f7b3274..d0251e6a978 100644 --- a/l10n/sw_KE/files_versions.po +++ b/l10n/sw_KE/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index cdaf7c7f079..3c517fee567 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index c074b9bf1ab..f85fcdca122 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index 4aaba2fca23..7c6391cdc5c 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/sw_KE/user_webdavauth.po b/l10n/sw_KE/user_webdavauth.po index 953de1d9f76..426f5e30721 100644 --- a/l10n/sw_KE/user_webdavauth.po +++ b/l10n/sw_KE/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 55a61f9b59b..50d6af9b6bb 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 5098c48575f..f26efe92171 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 3bb249d6a9c..59fde5c4fe1 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 99c63811074..678e681c2da 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 59ced6d1e73..1aef2d28b22 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 11fca381d55..924bbb462ad 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index 7006e4048cd..7c7a4eee0b3 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index cdd1610d33f..591f805af94 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index b67cf68c461..7d988829d05 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "இயலுமைப்படுத்துக" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 38edbdb01c3..6a582a0329e 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_webdavauth.po b/l10n/ta_LK/user_webdavauth.po index 855cd95e8d5..e75db9cc3f9 100644 --- a/l10n/ta_LK/user_webdavauth.po +++ b/l10n/ta_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 417137fc05e..3077ce28a04 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index 4f3c5fed3d8..47cac8cd8ae 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 27ac36937f3..cf1d6e37e15 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 87acb28ef9a..0ad4883fc5a 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 73b662b6182..8d26d12e939 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 7e768f37fdb..c7d0a59bc5e 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_versions.po b/l10n/te/files_versions.po index 0cd31615b5a..d69922bf833 100644 --- a/l10n/te/files_versions.po +++ b/l10n/te/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index e1190a20590..b08e968dc7a 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index b2685193b7e..3fe64246815 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 2516171f5f3..4dceae35766 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_webdavauth.po b/l10n/te/user_webdavauth.po index 038f4caab95..bfa7e06be6f 100644 --- a/l10n/te/user_webdavauth.po +++ b/l10n/te/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 55f9fb37e95..5b3e4c48452 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 44c5115e9f7..c6e0d93c3dd 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index fe492121d65..eb97fdc9e42 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 5a2772ef4c7..2325f2f5c6d 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 4375f2c9028..1e66c6470d5 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index fab03d30279..f16cf7e4171 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b720108dae4..717570feb21 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 85e30cdc482..dd874d694a2 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 04cd0098866..a46287856f4 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 54fab0b1c06..958a16c10c0 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index c55257e01c9..9188e8d5cf8 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index a2644ea12fa..a5d768f9caf 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 89f195428df..76c99829ca3 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index 83ddf27b1aa..ffe62d25988 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index fc56f1a61f4..8ad035271a3 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 60d528993bf..4d2deef16b2 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 3f3d84363f8..9c184200fec 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index f1cc8cb847d..4abcac4e0d8 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 1c9f395a0c3..782b27555dd 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 9f174d2d497..c239256ebec 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -119,7 +119,7 @@ msgstr "เกิดข้อผิดพลาดในระหว่างก msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "กำลังบันทึุกข้อมูล..." diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 9fa0376fdd9..fdda463b0fb 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_webdavauth.po b/l10n/th_TH/user_webdavauth.po index 7f71ac8bb71..5c6623a310a 100644 --- a/l10n/th_TH/user_webdavauth.po +++ b/l10n/th_TH/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index ff355f91091..78704bd88eb 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 9f10cf606c7..c9fcbdb5636 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index b3b4061663b..445755c59c2 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index a7551418be3..f539b2414c8 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 014db5a4d54..365c9b3a7db 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index a16869ebad6..2354e94204d 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 80519b54e34..bf1b595e50f 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index f744fc9eb94..29d930a27e9 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index bca687cb5c3..86e9e92833a 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -125,7 +125,7 @@ msgstr "Uygulama güncellenirken hata" msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Kaydediliyor..." diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index a01974a08c4..8f3ef99b518 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index d746306ebaa..5c02bf6a899 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 70297156676..7935fe6434d 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index bb94b31982e..3afb162edb0 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 89a68a1fb4b..8e820298fb8 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index cf8a838af05..9247439d556 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 849069fb73a..a6b224557e6 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 586f719a338..bb48add59db 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 149735a38eb..95c4cb20648 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 72255a69858..f581ae7ae6e 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index d2414ba5892..01c6e47b022 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -120,7 +120,7 @@ msgstr "Помилка при оновленні програми" msgid "Updated" msgstr "Оновлено" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Зберігаю..." diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 16bb5c6e062..2f5feed2a8a 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_webdavauth.po b/l10n/uk/user_webdavauth.po index 95d0199df1f..0b39465a48a 100644 --- a/l10n/uk/user_webdavauth.po +++ b/l10n/uk/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index a8adb13732d..2439188cfcb 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 8e63ad73eec..acb0e8f71a5 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index 6e1fdab3de0..b5f46680a0c 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index 4f5bbffec5c..f6e9d577bd0 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index cf84d773fae..9fdf3a11baa 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 63603253078..af2b0dbd1a7 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_versions.po b/l10n/ur_PK/files_versions.po index 4cf1d8a1076..7d34dde4393 100644 --- a/l10n/ur_PK/files_versions.po +++ b/l10n/ur_PK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 7e41ed94b62..ea01e8371fd 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 350e4d1f2be..39b956ddc5a 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 9d1a468e4df..70d82c44bdd 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_webdavauth.po b/l10n/ur_PK/user_webdavauth.po index fafd0150a68..874b058a644 100644 --- a/l10n/ur_PK/user_webdavauth.po +++ b/l10n/ur_PK/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 0cb405774bc..1accb85dd19 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 6343a227df0..79bf00204ab 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index 967123b7f50..76448eaa084 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 1040172df2c..1d8f070f127 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index ff474f2b344..baddc879302 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 446a3fa7ffc..83efb8ffbaf 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index 71e7d41d001..207ecde6dc1 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 857d1e20726..73937b602b8 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 5bb3e7db74e..649183dcf96 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -123,7 +123,7 @@ msgstr "Lỗi khi cập nhật ứng dụng" msgid "Updated" msgstr "Đã cập nhật" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Đang tiến hành lưu ..." diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index a1cbe868b3b..49365ead0b6 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_webdavauth.po b/l10n/vi/user_webdavauth.po index 9d0eaeeec65..9f0e00a50a2 100644 --- a/l10n/vi/user_webdavauth.po +++ b/l10n/vi/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index fea478dc809..b40e2288440 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index cf4bcdf218e..e08b45e55c1 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 76fc7835470..878e5e26646 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 7d18a87a7a9..d3602f8d94d 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 41d1ad16b3d..08809924dfa 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index e06718232a1..1706c782c5d 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 3d9d46cf1b7..346dfc9063a 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index cfcb1e3765b..020ad3c5b19 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index d43cd0d75d3..a259a909f5c 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "应用升级时出现错误" msgid "Updated" msgstr "已升级" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "保存中..." diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 00b1e4b2c7f..2de59e1c075 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po index 8c6808debdb..672fbad82e5 100644 --- a/l10n/zh_CN.GB2312/user_webdavauth.po +++ b/l10n/zh_CN.GB2312/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 0bee1ece20a..8b0bba0a795 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 24121e4bace..f16dc8ac1a4 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index bebc5c7fd26..0b01ef90576 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 9f24f4e3014..71015f5413d 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index d7b991be4a7..f77a967602e 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 1358aeb2053..51216ed592a 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index bbcc7504a78..d617fbb9d4d 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index f293f42d192..949b3bca452 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 8802053d5ce..b00faa27fa5 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -124,7 +124,7 @@ msgstr "更新 app 时出错" msgid "Updated" msgstr "已更新" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "正在保存" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 75ce640640e..5b309314a96 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index 78d193c789c..7c8b3ea542d 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 20ecbff0aad..2d4729abd32 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 87bfb878285..4bdea350bbf 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index 7353c0a7222..e74b971e803 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index e911c33540d..c58c75be333 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 7897ca5dc28..323dd803c1f 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index aa3beee2e5f..a487e0d631c 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index c93a812b1ec..ee5d894d765 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index b52486be8aa..e560749ad43 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 07a86e15270..ed450456948 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index ae499e40988..c939df9acc1 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_webdavauth.po b/l10n/zh_HK/user_webdavauth.po index 35347a3f0d6..861fd6ab987 100644 --- a/l10n/zh_HK/user_webdavauth.po +++ b/l10n/zh_HK/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 671369c693f..1d36067acb8 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index de181406e29..e4feb16563a 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 308523e0050..23c337b8560 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 4d01f33d123..2381134dcbf 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 04a1a496523..81782aed68b 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 478343be7db..a8ac6763aa8 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 04ed7abf13a..84176bd3b39 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index a17785e4f59..366b628108a 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 28cf8f8f6fd..f0787d2836d 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -127,7 +127,7 @@ msgstr "更新應用程式錯誤" msgid "Updated" msgstr "已更新" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "儲存中..." diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 3e5dc03d7a2..e777005a3cd 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 607dc386a89..19c7a6a94c8 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php new file mode 100644 index 00000000000..9b087b4a2ef --- /dev/null +++ b/lib/l10n/cy_GB.php @@ -0,0 +1,16 @@ + "Cymorth", +"Personal" => "Personol", +"Settings" => "Gosodiadau", +"Users" => "Defnyddwyr", +"Apps" => "Pecynnau", +"Admin" => "Gweinyddu", +"seconds ago" => "eiliad yn ôl", +"1 minute ago" => "1 munud yn ôl", +"1 hour ago" => "1 awr yn ôl", +"today" => "heddiw", +"yesterday" => "ddoe", +"last month" => "mis diwethaf", +"last year" => "y llynedd", +"years ago" => "blwyddyn yn ôl" +); diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 1161b0a44b7..5c6620f82ba 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -16,6 +16,8 @@ "Files" => "Датотеке", "Text" => "Текст", "Images" => "Слике", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", +"Please double check the installation guides." => "Погледајте водиче за инсталацију.", "seconds ago" => "пре неколико секунди", "1 minute ago" => "пре 1 минут", "%d minutes ago" => "пре %d минута", diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php new file mode 100644 index 00000000000..f90e531f129 --- /dev/null +++ b/settings/l10n/cy_GB.php @@ -0,0 +1,6 @@ + "Gwall", +"Security Warning" => "Rhybudd Diogelwch", +"Password" => "Cyfrinair", +"New password" => "Cyfrinair newydd" +); diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 460fab121a0..86dc2a92729 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -1,6 +1,7 @@ "Грешка приликом учитавања списка из Складишта Програма", "Authentication error" => "Грешка при аутентификацији", +"Unable to change display name" => "Не могу да променим име за приказ", "Group already exists" => "Група већ постоји", "Unable to add group" => "Не могу да додам групу", "Could not enable app. " => "Не могу да укључим програм", @@ -13,17 +14,54 @@ "Admins can't remove themself from the admin group" => "Управници не могу себе уклонити из админ групе", "Unable to add user to group %s" => "Не могу да додам корисника у групу %s", "Unable to remove user from group %s" => "Не могу да уклоним корисника из групе %s", +"Couldn't update app." => "Не могу да ажурирам апликацију.", +"Update to {appversion}" => "Ажурирај на {appversion}", "Disable" => "Искључи", "Enable" => "Укључи", +"Please wait...." => "Сачекајте…", "Error" => "Грешка", +"Updating...." => "Ажурирам…", +"Error while updating app" => "Грешка при ажурирању апликације", +"Updated" => "Ажурирано", "Saving..." => "Чување у току...", +"deleted" => "обрисано", "undo" => "опозови", +"Unable to remove user" => "Не могу да уклоним корисника", "Groups" => "Групе", "Group Admin" => "Управник групе", "Delete" => "Обриши", +"add group" => "додај групу", +"A valid username must be provided" => "Морате унети исправно корисничко име", +"Error creating user" => "Грешка при прављењу корисника", +"A valid password must be provided" => "Морате унети исправну лозинку", "__language_name__" => "__language_name__", "Security Warning" => "Сигурносно упозорење", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Тренутно су ваши подаци и датотеке доступне са интернета. Датотека .htaccess коју је обезбедио пакет ownCloud не функционише. Саветујемо вам да подесите веб сервер тако да директоријум са подацима не буде изложен или да га преместите изван коренског директоријума веб сервера.", +"Setup Warning" => "Упозорење о подешавању", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", +"Please double check the installation guides." => "Погледајте водиче за инсталацију.", +"Module 'fileinfo' missing" => "Недостаје модул „fileinfo“", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста.", +"Locale not working" => "Локализација не ради", +"Internet connection not working" => "Веза с интернетом не ради", +"Execute one task with each page loaded" => "Изврши један задатак са сваком учитаном страницом", +"Sharing" => "Дељење", +"Enable Share API" => "Омогући API Share", +"Allow apps to use the Share API" => "Дозвољава апликацијама да користе API Share", +"Allow links" => "Дозволи везе", +"Allow users to share items to the public with links" => "Дозволи корисницима да деле ставке с другима путем веза", +"Allow resharing" => "Дозволи поновно дељење", +"Allow users to share items shared with them again" => "Дозволи корисницима да поновно деле ставке с другима", +"Allow users to share with anyone" => "Дозволи корисницима да деле са било ким", +"Allow users to only share with users in their groups" => "Дозволи корисницима да деле само са корисницима у њиховим групама", +"Security" => "Безбедност", +"Enforce HTTPS" => "Наметни HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе.", +"Log" => "Бележење", +"Log level" => "Ниво бележења", +"More" => "Више", +"Less" => "Мање", +"Version" => "Верзија", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Развијају Оунклауд (ownCloud) заједница, изворни код је издат под АГПЛ лиценцом.", "Add your App" => "Додајте ваш програм", "More Apps" => "Више програма", @@ -31,7 +69,14 @@ "See application page at apps.owncloud.com" => "Погледајте страницу са програмима на apps.owncloud.com", "-licensed by " => "-лиценцирао ", "Update" => "Ажурирај", +"User Documentation" => "Корисничка документација", +"Administrator Documentation" => "Администраторска документација", +"Online Documentation" => "Мрежна документација", +"Forum" => "Форум", +"Bugtracker" => "Праћење грешака", +"Commercial Support" => "Комерцијална подршка", "You have used %s of the available %s" => "Искористили сте %s од дозвољених %s", +"Get the apps to sync your files" => "Преузмите апликације ради синхронизовања датотека", "Show First Run Wizard again" => "Поново прикажи чаробњак за прво покретање", "Password" => "Лозинка", "Your password was changed" => "Лозинка је промењена", @@ -39,11 +84,24 @@ "Current password" => "Тренутна лозинка", "New password" => "Нова лозинка", "Change password" => "Измени лозинку", +"Display Name" => "Име за приказ", +"Your display name was changed" => "Ваше име за приказ је промењено", +"Unable to change your display name" => "Не могу да променим ваше име за приказ", +"Change display name" => "Промени име за приказ", "Email" => "Е-пошта", "Your email address" => "Ваша адреса е-поште", "Fill in an email address to enable password recovery" => "Ун", "Language" => "Језик", "Help translate" => " Помозите у превођењу", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама", +"Login Name" => "Корисничко име", "Create" => "Направи", -"Other" => "Друго" +"Default Storage" => "Подразумевано складиште", +"Unlimited" => "Неограничено", +"Other" => "Друго", +"Storage" => "Складиште", +"change display name" => "промени име за приказ", +"set new password" => "постави нову лозинку", +"Default" => "Подразумевано" ); -- cgit v1.2.3 From 6a5f5ce1579ed27649c8537bfdeb67e97f531289 Mon Sep 17 00:00:00 2001 From: AndreasErgenzinger Date: Wed, 17 Apr 2013 10:29:32 +0200 Subject: merge translations with those from theme --- lib/l10n.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib') diff --git a/lib/l10n.php b/lib/l10n.php index 315e326b292..7aef653ef79 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -125,6 +125,15 @@ class OC_L10N{ include strip_tags($i18ndir).strip_tags($lang).'.php'; if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { $this->translations = $TRANSLATIONS; + //merge with translations from theme + $theme = OC_Config::getValue( "theme" ); + if (!is_null($theme)) { + $transFile = OC::$SERVERROOT.'/themes/'.$theme.substr($transFile, strlen(OC::$SERVERROOT)); + if (file_exists($transFile)) { + include $transFile; + $this->translations = array_merge($this->translations, $TRANSLATIONS); + } + } } } -- cgit v1.2.3 From 7611d218dfd4a8c1e8a36e9032c68a586c55b5df Mon Sep 17 00:00:00 2001 From: AndreasErgenzinger Date: Wed, 17 Apr 2013 10:34:29 +0200 Subject: merge translations with those from theme --- lib/l10n.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'lib') diff --git a/lib/l10n.php b/lib/l10n.php index 7aef653ef79..7b81d51b5e2 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -122,18 +122,19 @@ class OC_L10N{ ) && file_exists($i18ndir.$lang.'.php')) { // Include the file, save the data from $CONFIG - include strip_tags($i18ndir).strip_tags($lang).'.php'; + $transFile = strip_tags($i18ndir).strip_tags($lang).'.php'; + include $transFile; if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { $this->translations = $TRANSLATIONS; //merge with translations from theme - $theme = OC_Config::getValue( "theme" ); - if (!is_null($theme)) { - $transFile = OC::$SERVERROOT.'/themes/'.$theme.substr($transFile, strlen(OC::$SERVERROOT)); - if (file_exists($transFile)) { - include $transFile; - $this->translations = array_merge($this->translations, $TRANSLATIONS); - } - } + $theme = OC_Config::getValue( "theme" ); + if (!is_null($theme)) { + $transFile = OC::$SERVERROOT.'/themes/'.$theme.substr($transFile, strlen(OC::$SERVERROOT)); + if (file_exists($transFile)) { + include $transFile; + $this->translations = array_merge($this->translations, $TRANSLATIONS); + } + } } } -- cgit v1.2.3 From eef1cf529ed03754798a2329fd29824be44cecda Mon Sep 17 00:00:00 2001 From: AndreasErgenzinger Date: Wed, 17 Apr 2013 10:41:07 +0200 Subject: additional safety checks --- lib/l10n.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/l10n.php b/lib/l10n.php index 7b81d51b5e2..d35ce5fed14 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -132,7 +132,9 @@ class OC_L10N{ $transFile = OC::$SERVERROOT.'/themes/'.$theme.substr($transFile, strlen(OC::$SERVERROOT)); if (file_exists($transFile)) { include $transFile; - $this->translations = array_merge($this->translations, $TRANSLATIONS); + if (isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { + $this->translations = array_merge($this->translations, $TRANSLATIONS); + } } } } -- cgit v1.2.3 From 8471340db9a5d33fb2d77974ad3852cd52f016e5 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 17 Apr 2013 12:24:18 +0200 Subject: use date and time instead of timestamp --- lib/log/owncloud.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index 20df52c27bb..8c593528293 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -49,7 +49,8 @@ class OC_Log_Owncloud { public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { - $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=>time()); + $time = date("Y-m-d H:i:s", time()); + $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); $handle = @fopen(self::$logFile, 'a'); if ($handle) { fwrite($handle, json_encode($entry)."\n"); -- cgit v1.2.3 From f7e29eabf29e4bda052ad170df1955fce0ad37ee Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 17 Apr 2013 14:05:51 +0200 Subject: fix admin log display and use a more readable format --- lib/log/owncloud.php | 2 +- settings/js/log.js | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index 8c593528293..7a11a588330 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -49,7 +49,7 @@ class OC_Log_Owncloud { public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { - $time = date("Y-m-d H:i:s", time()); + $time = date("F d, Y H:i:s", time()); $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); $handle = @fopen(self::$logFile, 'a'); if ($handle) { diff --git a/settings/js/log.js b/settings/js/log.js index 81117f9e827..84f6d1aa5f3 100644 --- a/settings/js/log.js +++ b/settings/js/log.js @@ -55,7 +55,11 @@ OC.Log={ row.append(messageTd); var timeTd=$(''); - timeTd.text(formatDate(entry.time*1000)); + if(isNaN(entry.time)){ + timeTd.text(entry.time); + } else { + timeTd.text(formatDate(entry.time*1000)); + } row.append(timeTd); $('#log').append(row); } -- cgit v1.2.3 From 44668b36a70fb3f76c96f393e9e4ebfe1589da90 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Wed, 17 Apr 2013 14:08:45 +0200 Subject: Remove not null constraint. Fix #2976 --- db_structure.xml | 1 - lib/util.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'lib') diff --git a/db_structure.xml b/db_structure.xml index 11387222340..dce90697b1c 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -910,7 +910,6 @@ displayname text - true 64
diff --git a/lib/util.php b/lib/util.php index 37fb1bd9d06..34ed4a2a96a 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,7 @@ class OC_Util { public static function getVersion() { // hint: We only can count up. Reset minor/patchlevel when // updating major/minor version number. - return array(5, 80, 01); + return array(5, 80, 02); } /** -- cgit v1.2.3 From 43d0f1fabfc8bc05fc5770e0c9e8ef37049754d5 Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Wed, 17 Apr 2013 21:29:14 +0200 Subject: Warn when we do an upgrade --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index dde994a7e57..cb2193bb7aa 100644 --- a/lib/base.php +++ b/lib/base.php @@ -278,7 +278,7 @@ class OC { OC_Config::setValue('maintenance', true); OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, - OC_Log::DEBUG); + OC_Log::WARN); $minimizerCSS = new OC_Minimizer_CSS(); $minimizerCSS->clearCache(); $minimizerJS = new OC_Minimizer_JS(); -- cgit v1.2.3 From cbd8b792d9505f2020aa4a0f54c031f26cb5fe02 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 18 Apr 2013 02:09:28 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/cy_GB.php | 3 ++ apps/files_external/l10n/cy_GB.php | 3 +- apps/files_sharing/l10n/cy_GB.php | 2 ++ apps/files_trashbin/l10n/cy_GB.php | 3 +- core/l10n/cy_GB.php | 24 ++++++++++++- l10n/af_ZA/lib.po | 8 ++--- l10n/ar/lib.po | 10 ++---- l10n/be/lib.po | 8 ++--- l10n/bg_BG/lib.po | 12 +++---- l10n/bn_BD/lib.po | 8 ++--- l10n/ca/lib.po | 12 +++---- l10n/cs_CZ/lib.po | 12 +++---- l10n/cy_GB/core.po | 72 ++++++++++++++++++------------------- l10n/cy_GB/files.po | 10 +++--- l10n/cy_GB/files_external.po | 6 ++-- l10n/cy_GB/files_sharing.po | 8 ++--- l10n/cy_GB/files_trashbin.po | 6 ++-- l10n/cy_GB/lib.po | 8 ++--- l10n/cy_GB/settings.po | 18 +++++----- l10n/da/lib.po | 18 ++++------ l10n/de/core.po | 61 +++++++++++++++---------------- l10n/de/files.po | 50 +++++++++++++------------- l10n/de/files_trashbin.po | 14 ++++---- l10n/de/lib.po | 30 +++++++--------- l10n/de/settings.po | 56 ++++++++++++++--------------- l10n/de_DE/core.po | 69 +++++++++++++++++------------------ l10n/de_DE/files.po | 60 +++++++++++++++---------------- l10n/de_DE/lib.po | 32 ++++++++--------- l10n/de_DE/settings.po | 66 +++++++++++++++++----------------- l10n/el/lib.po | 18 ++++------ l10n/eo/lib.po | 10 ++---- l10n/es/lib.po | 24 ++++++------- l10n/es_AR/lib.po | 16 ++++----- l10n/et_EE/lib.po | 12 +++---- l10n/eu/lib.po | 12 +++---- l10n/fa/lib.po | 14 +++----- l10n/fi/lib.po | 8 ++--- l10n/fi_FI/lib.po | 10 ++---- l10n/fr/lib.po | 16 ++++----- l10n/gl/lib.po | 16 ++++----- l10n/he/lib.po | 12 +++---- l10n/hi/lib.po | 8 ++--- l10n/hr/lib.po | 8 ++--- l10n/hu_HU/lib.po | 14 +++----- l10n/ia/lib.po | 8 ++--- l10n/id/lib.po | 14 +++----- l10n/is/lib.po | 10 ++---- l10n/it/lib.po | 10 ++---- l10n/ja_JP/lib.po | 14 +++----- l10n/ja_JP/settings.po | 26 +++++++------- l10n/ka/lib.po | 10 ++---- l10n/ka_GE/lib.po | 12 +++---- l10n/kn/lib.po | 8 ++--- l10n/ko/lib.po | 14 +++----- l10n/ku_IQ/lib.po | 8 ++--- l10n/lb/lib.po | 8 ++--- l10n/lt_LT/lib.po | 12 +++---- l10n/lv/lib.po | 10 ++---- l10n/mk/lib.po | 10 ++---- l10n/ms_MY/lib.po | 8 ++--- l10n/my_MM/lib.po | 10 ++---- l10n/nb_NO/lib.po | 18 ++++------ l10n/ne/lib.po | 8 ++--- l10n/nl/lib.po | 16 ++++----- l10n/nn_NO/lib.po | 8 ++--- l10n/oc/lib.po | 10 ++---- l10n/pl/lib.po | 16 ++++----- l10n/pl_PL/lib.po | 8 ++--- l10n/pt_BR/lib.po | 18 ++++------ l10n/pt_PT/lib.po | 16 ++++----- l10n/ro/lib.po | 14 +++----- l10n/ru/lib.po | 24 ++++++------- l10n/ru_RU/lib.po | 14 +++----- l10n/si_LK/lib.po | 12 +++---- l10n/sk/lib.po | 8 ++--- l10n/sk_SK/lib.po | 16 ++++----- l10n/sl/lib.po | 14 +++----- l10n/sq/lib.po | 10 ++---- l10n/sr/lib.po | 14 +++----- l10n/sr@latin/lib.po | 8 ++--- l10n/sv/lib.po | 12 +++---- l10n/sw_KE/lib.po | 8 ++--- l10n/ta_LK/lib.po | 10 ++---- l10n/te/lib.po | 8 ++--- l10n/templates/core.pot | 22 ++++++------ l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 6 +--- l10n/templates/settings.pot | 10 +++--- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/lib.po | 10 ++---- l10n/tr/lib.po | 12 +++---- l10n/uk/lib.po | 18 ++++------ l10n/ur_PK/lib.po | 8 ++--- l10n/vi/lib.po | 16 ++++----- l10n/zh_CN.GB2312/lib.po | 10 ++---- l10n/zh_CN/lib.po | 14 +++----- l10n/zh_HK/lib.po | 8 ++--- l10n/zh_TW/lib.po | 18 ++++------ lib/l10n/ar.php | 1 - lib/l10n/bg_BG.php | 1 - lib/l10n/ca.php | 1 - lib/l10n/cs_CZ.php | 1 - lib/l10n/da.php | 1 - lib/l10n/de.php | 3 +- lib/l10n/de_DE.php | 3 +- lib/l10n/el.php | 1 - lib/l10n/es.php | 1 - lib/l10n/es_AR.php | 1 - lib/l10n/et_EE.php | 1 - lib/l10n/eu.php | 1 - lib/l10n/fa.php | 1 - lib/l10n/fi_FI.php | 1 - lib/l10n/fr.php | 1 - lib/l10n/gl.php | 1 - lib/l10n/hu_HU.php | 1 - lib/l10n/id.php | 1 - lib/l10n/it.php | 1 - lib/l10n/ja_JP.php | 1 - lib/l10n/ka_GE.php | 1 - lib/l10n/lv.php | 1 - lib/l10n/nl.php | 1 - lib/l10n/pl.php | 1 - lib/l10n/pt_BR.php | 1 - lib/l10n/pt_PT.php | 1 - lib/l10n/ru.php | 1 - lib/l10n/sk_SK.php | 1 - lib/l10n/sl.php | 1 - lib/l10n/sq.php | 1 - lib/l10n/uk.php | 1 - lib/l10n/zh_CN.php | 1 - settings/l10n/cy_GB.php | 5 ++- settings/l10n/de.php | 2 +- settings/l10n/de_DE.php | 2 +- settings/l10n/ja_JP.php | 2 +- 140 files changed, 643 insertions(+), 941 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 762c958f128..2f19a87d577 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -1,4 +1,7 @@ "Dileu", "Error" => "Gwall", +"Save" => "Cadw", +"Download" => "Llwytho i lawr", "Unshare" => "Dad-rannu" ); diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php index a0e1efd4a86..aee58477639 100644 --- a/apps/files_external/l10n/cy_GB.php +++ b/apps/files_external/l10n/cy_GB.php @@ -1,3 +1,4 @@ "Defnyddwyr" +"Users" => "Defnyddwyr", +"Delete" => "Dileu" ); diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index 00f0b162047..99efe9f734d 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,4 +1,6 @@ "Cyfrinair", +"Submit" => "Cyflwyno", +"Download" => "Llwytho i lawr", "web services under your control" => "gwasanaethau gwe a reolir gennych" ); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 4a264eb936c..2f170053379 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -1,3 +1,4 @@ "Gwall" +"Error" => "Gwall", +"Delete" => "Dileu" ); diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 6698ce77a3e..4d28ae29a98 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -1,6 +1,11 @@ "Rhannodd defnyddiwr %s ffeil â chi", +"User %s shared a folder with you" => "Rhannodd defnyddiwr %s blygell â chi", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Rhannodd defnyddiwr %s ffeil \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Rhannodd defnyddiwr %s blygell \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s", "Category type not provided." => "Math o gategori heb ei ddarparu.", "No category to add?" => "Dim categori i'w ychwanegu?", +"This category already exists: %s" => "Mae'r categori hwn eisoes yn bodoli: %s", "Object type not provided." => "Math o wrthrych heb ei ddarparu.", "%s ID not provided." => "%s ID heb ei ddarparu.", "Error adding %s to favorites." => "Gwall wrth ychwanegu %s at ffefrynnau.", @@ -44,7 +49,12 @@ "Choose" => "Dewisiwch", "Yes" => "Ie", "No" => "Na", +"The object type is not specified." => "Nid yw'r math o wrthrych wedi cael ei nodi.", "Error" => "Gwall", +"The app name is not specified." => "Nid yw enw'r pecyn wedi cael ei nodi.", +"The required file {file} is not installed!" => "Nid yw'r ffeil ofynnol {file} wedi ei gosod!", +"Shared" => "Rhannwyd", +"Share" => "Rhannu", "Error while sharing" => "Gwall wrth rannu", "Error while unsharing" => "Gwall wrth ddad-rannu", "Error while changing permissions" => "Gwall wrth newid caniatâd", @@ -54,6 +64,8 @@ "Share with link" => "Dolen ar gyfer rhannu", "Password protect" => "Diogelu cyfrinair", "Password" => "Cyfrinair", +"Email link to person" => "E-bostio dolen at berson", +"Send" => "Anfon", "Set expiration date" => "Gosod dyddiad dod i ben", "Expiration date" => "Dyddiad dod i ben", "Share via email:" => "Rhannu drwy e-bost:", @@ -70,6 +82,10 @@ "Password protected" => "Diogelwyd â chyfrinair", "Error unsetting expiration date" => "Gwall wrth ddad-osod dyddiad dod i ben", "Error setting expiration date" => "Gwall wrth osod dyddiad dod i ben", +"Sending ..." => "Yn anfon ...", +"Email sent" => "Anfonwyd yr e-bost", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud.", +"The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.", "ownCloud password reset" => "ailosod cyfrinair ownCloud", "Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", "You will receive a link to reset your password via Email." => "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair.", @@ -91,8 +107,12 @@ "Edit categories" => "Golygu categorïau", "Add" => "Ychwanegu", "Security Warning" => "Rhybudd Diogelwch", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Diweddarwch eich PHP i ddefnyddio ownCloud yn ddiogel.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Mwy na thebyg fod modd cyrraeddd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. ", +"For information how to properly configure your server, please see the documentation." => "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y ddogfennaeth.", "Create an admin account" => "Crewch gyfrif gweinyddol", "Advanced" => "Uwch", "Data folder" => "Plygell data", @@ -112,6 +132,8 @@ "Lost your password?" => "Wedi colli'ch cyfrinair?", "remember" => "cofio", "Log in" => "Mewngofnodi", +"Alternative Logins" => "Mewngofnodiadau Amgen", "prev" => "blaenorol", -"next" => "nesaf" +"next" => "nesaf", +"Updating ownCloud to version %s, this may take a while." => "Yn diweddaru owncloud i fersiwn %s, gall hyn gymryd amser." ); diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 1bcdf367fe9..61505002291 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 47401163dfa..eef5380b767 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmad Matalqah , 2013. +# Matalqah , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -94,10 +94,6 @@ msgstr "اعداد اسم مستخدم للمدير" msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "تحديد مجلد " - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 3a15991192b..13d868719d5 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index ae1ec0aeea2..0ae91bad8ef 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kiril , 2013. -# Stefan Ilivanov , 2013. +# Kiril , 2013 +# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -95,10 +95,6 @@ msgstr "Въведете потребителско име за админист msgid "Set an admin password." msgstr "Въведете парола за администратор." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Укажете папка за данни" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index a46f18de27d..0509e1a16dd 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 13628a3af42..29f4a9f8ac7 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012-2013. +# rogerc , 2013 +# rogerc , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -95,10 +95,6 @@ msgstr "Establiu un nom d'usuari per l'administrador." msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especifiqueu una carpeta de dades." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index c9a543b6ec5..aeba218b379 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2012. -# Tomáš Chvátal , 2012-2013. +# Martin , 2012 +# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -95,10 +95,6 @@ msgstr "Zadejte uživatelské jméno správce." msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Určete složku dat." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index d72aedca2e7..70dc34cea53 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Owen Llywelyn , 2013. +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 14:10+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,26 +21,26 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Rhannodd defnyddiwr %s ffeil â chi" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Rhannodd defnyddiwr %s blygell â chi" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Rhannodd defnyddiwr %s ffeil \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Rhannodd defnyddiwr %s blygell \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -53,7 +53,7 @@ msgstr "Dim categori i'w ychwanegu?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Mae'r categori hwn eisoes yn bodoli: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -236,7 +236,7 @@ msgstr "Na" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -248,19 +248,19 @@ msgstr "Gwall" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Nid yw enw'r pecyn wedi cael ei nodi." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Nid yw'r ffeil ofynnol {file} wedi ei gosod!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Rhannwyd" #: js/share.js:90 msgid "Share" -msgstr "" +msgstr "Rhannu" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" @@ -300,11 +300,11 @@ msgstr "Cyfrinair" #: js/share.js:173 msgid "Email link to person" -msgstr "" +msgstr "E-bostio dolen at berson" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "Anfon" #: js/share.js:178 msgid "Set expiration date" @@ -372,22 +372,22 @@ msgstr "Gwall wrth osod dyddiad dod i ben" #: js/share.js:604 msgid "Sending ..." -msgstr "" +msgstr "Yn anfon ..." #: js/share.js:615 msgid "Email sent" -msgstr "" +msgstr "Anfonwyd yr e-bost" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr." #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -477,11 +477,11 @@ msgstr "Rhybudd Diogelwch" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Diweddarwch eich PHP i ddefnyddio ownCloud yn ddiogel." #: templates/installation.php:32 msgid "" @@ -499,14 +499,14 @@ msgstr "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynn msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Mwy na thebyg fod modd cyrraeddd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. " #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y ddogfennaeth." #: templates/installation.php:44 msgid "Create an admin account" @@ -520,37 +520,37 @@ msgstr "Uwch" msgid "Data folder" msgstr "Plygell data" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Cyflunio'r gronfa ddata" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "ddefnyddir" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Defnyddiwr cronfa ddata" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Cyfrinair cronfa ddata" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Enw cronfa ddata" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tablespace cronfa ddata" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Gwesteiwr cronfa ddata" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Gorffen sefydlu" @@ -590,7 +590,7 @@ msgstr "Mewngofnodi" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Mewngofnodiadau Amgen" #: templates/part.pagenavi.php:3 msgid "prev" @@ -603,4 +603,4 @@ msgstr "nesaf" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Yn diweddaru owncloud i fersiwn %s, gall hyn gymryd amser." diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index d631320c9ef..5a9688dff5e 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 17:20+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" @@ -84,7 +84,7 @@ msgstr "" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "" +msgstr "Dileu" #: js/fileactions.js:193 msgid "Rename" @@ -249,7 +249,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Cadw" #: templates/index.php:7 msgid "New" @@ -285,7 +285,7 @@ msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "" +msgstr "Llwytho i lawr" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index e6060e38d5e..1b5cc6d4249 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 17:20+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" @@ -97,7 +97,7 @@ msgstr "Defnyddwyr" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "Dileu" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 42530fe4a72..3b6f94ed700 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 17:10+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" @@ -23,7 +23,7 @@ msgstr "Cyfrinair" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Cyflwyno" #: templates/public.php:10 #, php-format @@ -37,7 +37,7 @@ msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "" +msgstr "Llwytho i lawr" #: templates/public.php:40 msgid "No preview available for" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 22b562fc3ce..3797939ab12 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 17:20+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" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "" +msgstr "Dileu" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 0b2d290f879..ac97a0a0559 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index dc9b6f6a09c..ebf288587e4 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 21:00+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" @@ -64,7 +64,7 @@ msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "Cais annilys" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -143,7 +143,7 @@ msgstr "" #: js/users.js:111 templates/users.php:161 msgid "Delete" -msgstr "" +msgstr "Dileu" #: js/users.js:262 msgid "add group" @@ -312,19 +312,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2012. -# Frederik Lassen , 2013. -# Morten Juhl-Johansen Zölde-Fejér , 2012-2013. -# , 2012. -# Thomas , 2013. +# cronner , 2012 +# Frederik Lassen , 2013 +# Morten Juhl-Johansen Zölde-Fejér , 2012-2013 +# osos , 2012 +# cronner , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -98,10 +98,6 @@ msgstr "Angiv et admin brugernavn." msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Specificer en data mappe." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/de/core.po b/l10n/de/core.po index e5f6b5d5795..ff7be036306 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -3,30 +3,31 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011-2012. -# , 2011. -# , 2012. -# , 2011. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Susi <>, 2012. -# , 2012. -# , 2012. -# Tristan , 2013. +# goeck , 2011-2012 +# infinity8 , 2011 +# Mirodin , 2012 +# , 2011 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2013 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2012 +# mike.f , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# Susi <>, 2012 +# , 2012 +# , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 12:50+0000\n" +"Last-Translator: Lukas Reschke \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -536,37 +537,37 @@ msgstr "Fortgeschritten" msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de/files.po b/l10n/de/files.po index 6075d0eff7f..c401e3168dd 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -3,35 +3,35 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2013. -# Michael Krell , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2012. -# Thomas Müller <>, 2012. -# , 2012. -# , 2013. -# , 2013. -# , 2013. -# , 2013. +# goeck , 2012 +# Mirodin , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2013 +# Michael Krell , 2012 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# I Robot , 2012 +# Thomas Müller <>, 2012 +# traductor , 2012 +# Linutux , 2013 +# kabum , 2013 +# kabum , 2013 +# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 07:21+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 7484373ee04..e4aa758e230 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# I Robot , 2013. -# Marcel Kühlhorn , 2013. -# Tristan , 2013. -# , 2013. +# I Robot , 2013 +# Marcel Kühlhorn , 2013 +# Mirodin , 2013 +# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 07:26+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 991f7008d7e..6e43319234d 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -3,22 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# I Robot , 2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2012. -# Marcel Kühlhorn , 2012-2013. -# Phi Lieb <>, 2012. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. +# Mirodin , 2012 +# I Robot , 2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2012 +# Marcel Kühlhorn , 2012-2013 +# Phi Lieb <>, 2012 +# stefanniedermann , 2013 +# I Robot , 2012 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -103,10 +103,6 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Datei-Verzeichnis angeben." - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -195,7 +191,7 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfe die Instalationsanleitungen." +msgstr "Bitte prüfe die Installationsanleitungen." #: template.php:113 msgid "seconds ago" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 4c6065c5522..0f6b2fc926b 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -3,33 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011, 2012. -# , 2012. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan T , 2012. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2012. -# , 2012. -# Tristan , 2013. -# , 2013. -# , 2013. +# goeck , 2011, 2012 +# Mirodin , 2012 +# Robin Appelman , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan T , 2012 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2012 +# AndryXY , 2012 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# I Robot , 2012 +# traductor , 2012 +# Mirodin , 2013 +# kabum , 2013 +# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 07:21+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -211,7 +211,7 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Instalationsanleitungen." +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -332,19 +332,19 @@ msgstr "Log" msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mehr" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Weniger" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2011-2012. -# , 2011. -# , 2012. -# , 2012. -# , 2012. -# , 2011. -# I Robot , 2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2013. -# , 2013. -# Susi <>, 2013. -# , 2012. -# , 2013. -# , 2012. -# Tristan , 2013. +# goeck , 2011-2012 +# infinity8 , 2011 +# a.tangemann , 2012 +# Mirodin , 2012 +# deh3nne , 2012 +# george , 2011 +# I Robot , 2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2013 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# mike.f , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# stefanniedermann , 2013 +# Valermos , 2013 +# Susi <>, 2013 +# I Robot , 2012 +# traductor , 2013 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 12:50+0000\n" +"Last-Translator: Lukas Reschke \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -540,37 +541,37 @@ msgstr "Fortgeschritten" msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index d1d67461d38..0e5e25200e8 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -3,40 +3,40 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Andreas Tangemann , 2013. -# , 2012-2013. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2013. -# Michael Krell , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Phillip Schichtel , 2013. -# , 2013. -# , 2013. -# , 2013. -# Susi <>, 2013. -# , 2012. -# Thomas Müller <>, 2012. -# , 2013. -# , 2012. -# Tristan , 2013. +# goeck , 2012 +# a.tangemann , 2013 +# a.tangemann , 2012-2013 +# Mirodin , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2013 +# Michael Krell , 2012 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# quick_wango , 2013 +# robN , 2013 +# stefanniedermann , 2013 +# Valermos , 2013 +# Susi <>, 2013 +# I Robot , 2012 +# Thomas Müller <>, 2012 +# traductor , 2013 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 08:22+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index de5340c6b56..e21abf4d383 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -3,23 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Andreas Tangemann , 2013. -# , 2012. -# , 2012. -# I Robot , 2013. -# Jan-Christoph Borchardt , 2012. -# Marcel Kühlhorn , 2012-2013. -# Phi Lieb <>, 2012. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. +# a.tangemann , 2013 +# a.tangemann , 2012 +# Mirodin , 2012 +# I Robot , 2013 +# Jan-Christoph Borchardt , 2012 +# Marcel Kühlhorn , 2012-2013 +# Phi Lieb <>, 2012 +# stefanniedermann , 2013 +# I Robot , 2012 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -104,10 +104,6 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Datei-Verzeichnis angeben" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -196,7 +192,7 @@ msgstr "Ihr Web-Server ist noch nicht für Datei-Synchronisation bereit, weil di #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Instalationsanleitungen." +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: template.php:113 msgid "seconds ago" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index ee05c494b91..718fd022b4e 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -3,38 +3,38 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011-2012. -# Andreas Tangemann , 2013. -# , 2012. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan T , 2012. -# Lukas Reschke , 2013. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Phillip Schichtel , 2013. -# , 2013. -# , 2012. -# , 2013. -# Susi <>, 2013. -# , 2012. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. +# goeck , 2011-2012 +# a.tangemann , 2013 +# Mirodin , 2012 +# Robin Appelman , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan T , 2012 +# Lukas Reschke , 2013 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# quick_wango , 2013 +# robN , 2013 +# seeed , 2012 +# stefanniedermann , 2013 +# Susi <>, 2013 +# I Robot , 2012 +# traductor , 2013 +# traductor , 2012 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 07:20+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -216,7 +216,7 @@ msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfigurie #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Instalationsanleitungen." +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -337,19 +337,19 @@ msgstr "Log" msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mehr" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Weniger" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2013. -# Efstathios Iosifidis , 2013. -# Efstathios Iosifidis , 2012. -# , 2013. -# Wasilis Mandratzis , 2013. +# Dimitris M. , 2013 +# Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2012 +# xneo1 , 2013 +# Wasilis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -98,10 +98,6 @@ msgstr "Εισάγετε όνομα χρήστη διαχειριστή." msgid "Set an admin password." msgstr "Εισάγετε συνθηματικό διαχειριστή." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Καθορίστε τον φάκελο δεδομένων." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 4208458ba0b..1bd6af554dc 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012. +# Mariano , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/es/lib.po b/l10n/es/lib.po index ca016657416..a30ce7986ea 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2013. -# , 2013. -# , 2012. -# Marcos , 2013. -# Raul Fernandez Garcia , 2012. -# Ricardo A. Hermosilla Carrillo , 2013. -# Rubén Trujillo , 2012. -# , 2012. +# Agustin Ferrario , 2013 +# juanman , 2013 +# juanman , 2012 +# Marcos , 2013 +# Raul Fernandez Garcia , 2012 +# Ricardo Hermosilla , 2013 +# Rubén Trujillo , 2012 +# scambra , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -101,10 +101,6 @@ msgstr "Configurar un nombre de usuario del administrador" msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especificar la carpeta de datos." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 6be90480b4b..20c71ecabd5 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2013. -# CJTess , 2013. -# , 2012. -# Javier Victor Mariano Bruno , 2013. +# Agustin Ferrario , 2013 +# cjtess , 2013 +# cjtess , 2012 +# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "Configurar un nombre de administrador" msgid "Set an admin password." msgstr "Configurar una palabra clave de administrador" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especificar un directorio de datos" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index d515bf9a160..19268960f22 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pisike Sipelgas , 2013. -# Rivo Zängov , 2012-2013. +# pisike.sipelgas , 2013 +# Rivo Zängov , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -95,10 +95,6 @@ msgstr "Määra admin kasutajanimi." msgid "Set an admin password." msgstr "Määra admini parool." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Määra andmete kaust." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 593856272c1..912f19f241f 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. +# asieriko , 2013 +# asieriko , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -95,10 +95,6 @@ msgstr "Ezarri administraziorako erabiltzaile izena." msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Zehaztu data karpeta." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index d1d5f566ef2..db4d2de1ce7 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Amir Reza Asadi , 2013. -# mahdi Kereshteh , 2013. -# Mohammad Dashtizadeh , 2012. +# Amir Reza Asadi , 2013 +# miki_mika1362 , 2013 +# Mohammad Dashtizadeh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "پوشه ای برای داده ها مشخص کنید." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/fi/lib.po b/l10n/fi/lib.po index ced780d1ce7..8797335cbcd 100644 --- a/l10n/fi/lib.po +++ b/l10n/fi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index fc77066a99c..187363f2d8f 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos , 2012-2013. +# Jiri Grönroos , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "Aseta ylläpitäjän käyttäjätunnus." msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Määritä datakansio." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 24cf1be8ed5..915a78cd2a2 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2013. -# Geoffrey Guerrier , 2012. -# Robert Di Rosa <>, 2013. -# Romain DEP. , 2012-2013. +# Christophe Lherieau , 2013 +# Geoffrey Guerrier , 2012 +# Robert Di Rosa <>, 2013 +# Romain DEP. , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Spécifiez un répertoire pour les données." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index b20f32fff27..7795b9dddb0 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Miguel Branco , 2012. -# Xosé M. Lamas , 2012-2013. +# mbouzada , 2013 +# mbouzada , 2012 +# Miguel Branco , 2012 +# Xosé M. Lamas , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -97,10 +97,6 @@ msgstr "Estabeleza un nome de usuario administrador" msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especifique un cartafol de datos." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/he/lib.po b/l10n/he/lib.po index de9c88104c2..9cc939954e9 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomer Cohen , 2012. -# Yaron Shahrabani , 2012. +# Tomer Cohen , 2012 +# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 454e8e165e8..d7d72d96af5 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index ccd75c2b9e8..fa043de4d83 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 9bb5b3ab640..811a4db4029 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012. -# , 2013. -# Laszlo Tornoci , 2013. +# Adam Toth , 2012 +# gyeben , 2013 +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -96,10 +96,6 @@ msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Adja meg az adatokat tartalmazó könyvtár nevét." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 8c460ce15e4..ac002065595 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 2da890b5eec..57352dd2b63 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mohamad Hasan Al Banna , 2013. -# , 2012. -# , 2013. +# Mohamad Hasan Al Banna , 2013 +# elmakong , 2012 +# rodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -96,10 +96,6 @@ msgstr "Setel nama pengguna admin." msgid "Set an admin password." msgstr "Setel sandi admin." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Tentukan folder data." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 3d8e511ed13..c978737fb49 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# sveinn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 178f9da6cc0..976a9ba8596 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2012-2013. +# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "Imposta un nome utente di amministrazione." msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Specifica una cartella dei dati." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 047e7df7cbf..8b2c637f42b 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2013. -# YANO Tetsu , 2013. +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2013 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -96,10 +96,6 @@ msgstr "管理者のユーザ名を設定。" msgid "Set an admin password." msgstr "管理者のパスワードを設定。" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "データフォルダを指定。" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 2cb5b86b575..065218b5753 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012-2013. -# , 2012. -# , 2012. -# YANO Tetsu , 2013. +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2012-2013 +# tt yn , 2012 +# tt yn , 2012 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 08:10+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -317,19 +317,19 @@ msgstr "ログ" msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" -msgstr "詳細" +msgstr "もっと見る" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "閉じる" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "バージョン" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2013. +# GeoCybers , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 87dbc9fbb62..ff6c7f4124f 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -95,10 +95,6 @@ msgstr "დააყენეთ ადმინისტრატორის msgid "Set an admin password." msgstr "დააყენეთ ადმინისტრატორის პაროლი." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "მიუთითეთ data ფოლდერი." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index b921bdf20dc..836abc39cd3 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index c70b3eeb9e6..2c97ea10dba 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# 남자사람 , 2012. -# Park Shinjo , 2013. -# Shinjo Park , 2012. +# 남자사람 , 2012 +# Shinjo Park , 2013 +# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 4a9acfed363..ba160fa4399 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 39159b7fc20..b1b27935b86 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 766f8e06e9b..a176e307e60 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dr. ROX , 2012. +# andrejuseu , 2012 +# Dr. ROX , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 1d47fb37934..7db941c0500 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013. +# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -94,10 +94,6 @@ msgstr "Iestatiet administratora lietotājvārdu." msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Norādiet datu mapi." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 6ee33715829..2dfafad88e4 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. +# Georgi Stanojevski , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index fb311e81a8f..d40a40daf28 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index e6d187a22f6..01231da96e7 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pyae Sone , 2013. +# Pyae Sone , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index ac2d472e3aa..5228fc0a441 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Arvid Nornes , 2012. -# , 2012. -# , 2012. -# , 2012. -# , 2012. +# Arvid Nornes , 2012 +# espenbye , 2012 +# hdalgrav , 2012 +# runesudden , 2012 +# sindrejh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -98,10 +98,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 3a91dd5e2d7..44cf09325bc 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index cddcc754693..36dc7d96382 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2013. -# , 2012. -# Richard Bos , 2012. -# , 2012. +# André Koot , 2013 +# Len , 2012 +# Richard Bos , 2012 +# bartv , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "Stel de gebruikersnaam van de beheerder in." msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Geef een datamap op." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 483f3ee52eb..5e13b5d53a9 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 8ac687287d2..df4835c6ea4 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 195db79fa64..dbc02c98d25 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012-2013. -# Maciej Tarmas , 2013. -# Marcin Małecki , 2012-2013. +# Cyryl Sochacki , 2012 +# Cyryl Sochacki , 2012-2013 +# Maciej Tarmas , 2013 +# Marcin Małecki , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "Ustaw nazwę administratora." msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Określ folder danych." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index 9f3e48faf18..b041eeee305 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 7cb95935495..b6f5ca1cf8c 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Frederico Freire Boaventura , 2013. -# , 2012. -# , 2012. -# Rodrigo Tavares , 2013. +# dudanogueira , 2012 +# fboaventura , 2013 +# Schopfer , 2012 +# sedir , 2012 +# Rodrigo Tavares , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -98,10 +98,6 @@ msgstr "Defina um nome de usuário de administrador." msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especifique uma pasta de dados." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 6e5fe1eea2f..00910212282 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012-2013. -# Daniel Pinto , 2013. -# Duarte Velez Grilo , 2012. -# Helder Meneses , 2013. +# Mouxy , 2012-2013 +# Mouxy , 2013 +# Duarte Velez Grilo , 2012 +# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "Definir um nome de utilizador de administrador" msgid "Set an admin password." msgstr "Definiar uma password de administrador" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especificar a pasta para os dados." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 1453bbf7543..9508b637328 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dumitru Ursu <>, 2013. -# , 2012. -# , 2012. +# Dimon Pockemon <>, 2013 +# g.ciprian , 2012 +# laurentiucristescu , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 50cad3c909f..e6a61975e23 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2013. -# Denis , 2012. -# , 2012. -# Mihail Vasiliev , 2012. -# , 2012. -# Sergey , 2013. -# , 2012. -# Дмитрий , 2013. +# Denis , 2013 +# Denis , 2012 +# k0ldbl00d , 2012 +# Mihail Vasiliev , 2012 +# mPolr , 2012 +# m4rkell , 2013 +# VicDeo , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -101,10 +101,6 @@ msgstr "Установить имя пользователя для admin." msgid "Set an admin password." msgstr "становит пароль для admin." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Указать папку данных." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 5903c5b4edf..7c5c0870ed5 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Дмитрий , 2013. +# AnnaSch , 2013 +# AnnaSch , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 6a13f369cf0..c785afebd7b 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. -# , 2012. +# Anushke Guneratne , 2012 +# dinusha , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 63f7ea5ee0c..72fd060bdd6 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index bf8820e425a..b99a339307e 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Marián Hvolka , 2013. -# , 2012. -# Roman Priesol , 2012. -# , 2012. +# mhh , 2013 +# martinb , 2012 +# Roman Priesol , 2012 +# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -97,10 +97,6 @@ msgstr "Zadajte používateľské meno administrátora." msgid "Set an admin password." msgstr "Zadajte heslo administrátora." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Zadajte priečinok pre dáta." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 9814f3e9332..bc51adf8f3d 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# Peter Peroša , 2012. +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -96,10 +96,6 @@ msgstr "Nastavi uporabniško ime skrbnika." msgid "Set an admin password." msgstr "Nastavi geslo skrbnika." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Določi podatkovno mapo." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 6e59fdb660e..9629d1e79c2 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. +# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "Cakto emrin e administratorit." msgid "Set an admin password." msgstr "Cakto kodin e administratorit." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Specifiko dosjen e të dhënave." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 6032504b5b9..95f58fe7f5b 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivan Petrović , 2012-2013. -# , 2013. -# , 2012. +# Ivan Petrović , 2012-2013 +# Rancher , 2013 +# Rancher , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 7e046b92c5a..2cc4b44f0fe 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index e2d94586525..13887eda440 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Magnus Höglund , 2012-2013. -# , 2012. +# Magnus Höglund , 2012-2013 +# Magnus Höglund , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 3c517fee567..f2bae1c728f 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 591f805af94..82184ac7e88 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/te/lib.po b/l10n/te/lib.po index b08e968dc7a..3123d067aac 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5b3e4c48452..298c2a84dd6 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -519,37 +519,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index c6e0d93c3dd..3f94378ee28 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index eb97fdc9e42..f57c1451a84 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2325f2f5c6d..d5dba8c90c9 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 1e66c6470d5..9de0f543bf4 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index f16cf7e4171..5ee9198ae4e 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 717570feb21..a59e26f6d47 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index dd874d694a2..967c1dfb32c 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a46287856f4..3be3146a59c 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -312,19 +312,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 9188e8d5cf8..fb8be0843df 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 782b27555dd..4ede057cbdd 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013. +# AriesAnywhere Anywhere , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 29d930a27e9..d9fca3e2a1b 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ismail yenigul , 2013. -# Necdet Yücel , 2012. +# ismail yenigül , 2013 +# Necdet Yücel , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index f581ae7ae6e..d6307720768 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# , 2012. -# , 2013. -# пан Володимир , 2013. +# Dmytro Dzubenko , 2012 +# skoptev , 2012 +# VicDeo , 2012 +# volodya327 , 2013 +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -98,10 +98,6 @@ msgstr "Встановіть ім'я адміністратора." msgid "Set an admin password." msgstr "Встановіть пароль адміністратора." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Вкажіть теку для даних." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index ea01e8371fd..16489f21ccc 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 73937b602b8..fc813abbb50 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# sao sang , 2013. -# Sơn Nguyễn , 2012. +# mattheu_9x , 2012 +# mattheu_9x , 2012 +# saosangm , 2013 +# Sơn Nguyễn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 020ad3c5b19..b8451f60b6f 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# marguerite su , 2012. +# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 949b3bca452..ed930d22808 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# marguerite su , 2013. -# , 2012. +# hanfeng , 2012 +# marguerite su , 2013 +# leonfeng , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -96,10 +96,6 @@ msgstr "请设置一个管理员用户名。" msgid "Set an admin password." msgstr "请设置一个管理员密码。" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "请指定一个数据目录。" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index e560749ad43..20c4b099671 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 366b628108a..07d0bd557fb 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hydriz Scholz , 2013. -# Pellaeon Lin , 2013. -# , 2012. -# , 2012. -# ywang , 2012. +# Hydriz , 2013 +# pellaeon , 2013 +# sofiasu , 2012 +# ywang , 2012 +# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -98,10 +98,6 @@ msgstr "設置一個管理員用戶名。" msgid "Set an admin password." msgstr "設置一個管理員密碼。" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 8b7324f3ff4..ae8233f80da 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -18,7 +18,6 @@ "Images" => "صور", "Set an admin username." => "اعداد اسم مستخدم للمدير", "Set an admin password." => "اعداد كلمة مرور للمدير", -"Specify a data folder." => "تحديد مجلد ", "%s enter the database username." => "%s ادخل اسم المستخدم الخاص بقاعدة البيانات.", "%s enter the database name." => "%s ادخل اسم فاعدة البيانات", "%s you may not use dots in the database name" => "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات", diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index d32e2aadfc5..2d4775a89f3 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -18,7 +18,6 @@ "Images" => "Снимки", "Set an admin username." => "Въведете потребителско име за администратор.", "Set an admin password." => "Въведете парола за администратор.", -"Specify a data folder." => "Укажете папка за данни", "%s enter the database username." => "%s въведете потребителско име за базата с данни.", "%s enter the database name." => "%s въведете име на базата с данни.", "%s you may not use dots in the database name" => "%s, не можете да ползвате точки в името на базата от данни", diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 108bb5c09be..16dc74f40c4 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -18,7 +18,6 @@ "Images" => "Imatges", "Set an admin username." => "Establiu un nom d'usuari per l'administrador.", "Set an admin password." => "Establiu una contrasenya per l'administrador.", -"Specify a data folder." => "Especifiqueu una carpeta de dades.", "%s enter the database username." => "%s escriviu el nom d'usuari de la base de dades.", "%s enter the database name." => "%s escriviu el nom de la base de dades.", "%s you may not use dots in the database name" => "%s no podeu usar punts en el nom de la base de dades", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index d9ec3d82cf7..79161c74e8e 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -18,7 +18,6 @@ "Images" => "Obrázky", "Set an admin username." => "Zadejte uživatelské jméno správce.", "Set an admin password." => "Zadejte heslo správce.", -"Specify a data folder." => "Určete složku dat.", "%s enter the database username." => "Zadejte uživatelské jméno %s databáze.", "%s enter the database name." => "Zadejte název databáze pro %s databáze.", "%s you may not use dots in the database name" => "V názvu databáze %s nesmíte používat tečky.", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 38ccbbe8e21..4850d0be19a 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -18,7 +18,6 @@ "Images" => "Billeder", "Set an admin username." => "Angiv et admin brugernavn.", "Set an admin password." => "Angiv et admin kodeord.", -"Specify a data folder." => "Specificer en data mappe.", "%s enter the database username." => "%s indtast database brugernavnet.", "%s enter the database name." => "%s indtast database navnet.", "%s you may not use dots in the database name" => "%s du må ikke bruge punktummer i databasenavnet.", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 3c2069d4637..7a680574bfa 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -18,7 +18,6 @@ "Images" => "Bilder", "Set an admin username." => "Setze Administrator Benutzername.", "Set an admin password." => "Setze Administrator Passwort", -"Specify a data folder." => "Datei-Verzeichnis angeben.", "%s enter the database username." => "%s gib den Datenbank-Benutzernamen an.", "%s enter the database name." => "%s gib den Datenbank-Namen an.", "%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", @@ -36,7 +35,7 @@ "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Password ungültig: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfe die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfe die Installationsanleitungen.", "seconds ago" => "Gerade eben", "1 minute ago" => "Vor einer Minute", "%d minutes ago" => "Vor %d Minuten", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 9978cdf8b31..eb002c97be2 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -18,7 +18,6 @@ "Images" => "Bilder", "Set an admin username." => "Setze Administrator Benutzername.", "Set an admin password." => "Setze Administrator Passwort", -"Specify a data folder." => "Datei-Verzeichnis angeben", "%s enter the database username." => "%s geben Sie den Datenbank-Benutzernamen an.", "%s enter the database name." => "%s geben Sie den Datenbank-Namen an.", "%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", @@ -36,7 +35,7 @@ "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Passwort ungültig: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "seconds ago" => "Gerade eben", "1 minute ago" => "Vor einer Minute", "%d minutes ago" => "Vor %d Minuten", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index a3599095258..63f5d8eb836 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -18,7 +18,6 @@ "Images" => "Εικόνες", "Set an admin username." => "Εισάγετε όνομα χρήστη διαχειριστή.", "Set an admin password." => "Εισάγετε συνθηματικό διαχειριστή.", -"Specify a data folder." => "Καθορίστε τον φάκελο δεδομένων.", "%s enter the database username." => "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων.", "%s enter the database name." => "%s εισάγετε το όνομα της βάσης δεδομένων.", "%s you may not use dots in the database name" => "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 37b15a375c4..5b868e2d451 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -18,7 +18,6 @@ "Images" => "Imágenes", "Set an admin username." => "Configurar un nombre de usuario del administrador", "Set an admin password." => "Configurar la contraseña del administrador.", -"Specify a data folder." => "Especificar la carpeta de datos.", "%s enter the database username." => "%s ingresar el usuario de la base de datos.", "%s enter the database name." => "%s ingresar el nombre de la base de datos", "%s you may not use dots in the database name" => "%s no se puede utilizar puntos en el nombre de la base de datos", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index ff3d47285fc..fc25cd6b1d8 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -18,7 +18,6 @@ "Images" => "Imágenes", "Set an admin username." => "Configurar un nombre de administrador", "Set an admin password." => "Configurar una palabra clave de administrador", -"Specify a data folder." => "Especificar un directorio de datos", "%s enter the database username." => "%s Entre el Usuario de la Base de Datos", "%s enter the database name." => "%s Entre el Nombre de la Base de Datos", "%s you may not use dots in the database name" => "%s no puede usar puntos en el nombre de la Base de Datos", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 6948686b7f6..25909e1555e 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -18,7 +18,6 @@ "Images" => "Pildid", "Set an admin username." => "Määra admin kasutajanimi.", "Set an admin password." => "Määra admini parool.", -"Specify a data folder." => "Määra andmete kaust.", "%s enter the database username." => "%s sisesta andmebaasi kasutajatunnus", "%s enter the database name." => "%s sisesta andmebaasi nimi.", "%s you may not use dots in the database name" => "%s punktide kasutamine andmebaasi nimes pole lubatud", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 36eb397e425..fde65572d8a 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -18,7 +18,6 @@ "Images" => "Irudiak", "Set an admin username." => "Ezarri administraziorako erabiltzaile izena.", "Set an admin password." => "Ezarri administraziorako pasahitza.", -"Specify a data folder." => "Zehaztu data karpeta.", "%s enter the database username." => "%s sartu datu basearen erabiltzaile izena.", "%s enter the database name." => "%s sartu datu basearen izena.", "%s you may not use dots in the database name" => "%s ezin duzu punturik erabili datu basearen izenean.", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index f05195f5b8b..b0d423421df 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -14,7 +14,6 @@ "Files" => "پرونده‌ها", "Text" => "متن", "Images" => "تصاویر", -"Specify a data folder." => "پوشه ای برای داده ها مشخص کنید.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", "Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "seconds ago" => "ثانیه‌ها پیش", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 2c85931e1d0..201cae19536 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -18,7 +18,6 @@ "Images" => "Kuvat", "Set an admin username." => "Aseta ylläpitäjän käyttäjätunnus.", "Set an admin password." => "Aseta ylläpitäjän salasana.", -"Specify a data folder." => "Määritä datakansio.", "%s enter the database username." => "%s anna tietokannan käyttäjätunnus.", "%s enter the database name." => "%s anna tietokannan nimi.", "%s you may not use dots in the database name" => "%s et voi käyttää pisteitä tietokannan nimessä", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 9448502df6a..ffc29450461 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -18,7 +18,6 @@ "Images" => "Images", "Set an admin username." => "Spécifiez un nom d'utilisateur pour l'administrateur.", "Set an admin password." => "Spécifiez un mot de passe administrateur.", -"Specify a data folder." => "Spécifiez un répertoire pour les données.", "%s enter the database username." => "%s entrez le nom d'utilisateur de la base de données.", "%s enter the database name." => "%s entrez le nom de la base de données.", "%s you may not use dots in the database name" => "%s vous nez pouvez pas utiliser de points dans le nom de la base de données", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index a11724fef43..d38bf8329d1 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -18,7 +18,6 @@ "Images" => "Imaxes", "Set an admin username." => "Estabeleza un nome de usuario administrador", "Set an admin password." => "Estabeleza un contrasinal de administrador", -"Specify a data folder." => "Especifique un cartafol de datos.", "%s enter the database username." => "%s introduza o nome de usuario da base de datos", "%s enter the database name." => "%s introduza o nome da base de datos", "%s you may not use dots in the database name" => "%s non se poden empregar puntos na base de datos", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 537066c6fea..4621c5074b8 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -18,7 +18,6 @@ "Images" => "Képek", "Set an admin username." => "Állítson be egy felhasználói nevet az adminisztrációhoz.", "Set an admin password." => "Állítson be egy jelszót az adminisztrációhoz.", -"Specify a data folder." => "Adja meg az adatokat tartalmazó könyvtár nevét.", "%s enter the database username." => "%s adja meg az adatbázist elérő felhasználó login nevét.", "%s enter the database name." => "%s adja meg az adatbázis nevét.", "%s you may not use dots in the database name" => "%s az adatbázis neve nem tartalmazhat pontot", diff --git a/lib/l10n/id.php b/lib/l10n/id.php index b34fa0ac59d..7eb26c5eb86 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -18,7 +18,6 @@ "Images" => "Gambar", "Set an admin username." => "Setel nama pengguna admin.", "Set an admin password." => "Setel sandi admin.", -"Specify a data folder." => "Tentukan folder data.", "%s enter the database username." => "%s masukkan nama pengguna basis data.", "%s enter the database name." => "%s masukkan nama basis data.", "%s you may not use dots in the database name" => "%sAnda tidak boleh menggunakan karakter titik pada nama basis data", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 297f1efde05..847f767fa76 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -18,7 +18,6 @@ "Images" => "Immagini", "Set an admin username." => "Imposta un nome utente di amministrazione.", "Set an admin password." => "Imposta una password di amministrazione.", -"Specify a data folder." => "Specifica una cartella dei dati.", "%s enter the database username." => "%s digita il nome utente del database.", "%s enter the database name." => "%s digita il nome del database.", "%s you may not use dots in the database name" => "%s non dovresti utilizzare punti nel nome del database", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 5906c7f7a1e..18d0833792d 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -18,7 +18,6 @@ "Images" => "画像", "Set an admin username." => "管理者のユーザ名を設定。", "Set an admin password." => "管理者のパスワードを設定。", -"Specify a data folder." => "データフォルダを指定。", "%s enter the database username." => "%s のデータベースのユーザ名を入力してください。", "%s enter the database name." => "%s のデータベース名を入力してください。", "%s you may not use dots in the database name" => "%s ではデータベース名にドットを利用できないかもしれません。", diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index 26b356b6341..ffdf549f480 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -18,7 +18,6 @@ "Images" => "სურათები", "Set an admin username." => "დააყენეთ ადმინისტრატორის სახელი.", "Set an admin password." => "დააყენეთ ადმინისტრატორის პაროლი.", -"Specify a data folder." => "მიუთითეთ data ფოლდერი.", "%s enter the database username." => "%s შეიყვანეთ ბაზის იუზერნეიმი.", "%s enter the database name." => "%s შეიყვანეთ ბაზის სახელი.", "%s you may not use dots in the database name" => "%s არ მიუთითოთ წერტილი ბაზის სახელში", diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index c73d306ca0a..38793914073 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -18,7 +18,6 @@ "Images" => "Attēli", "Set an admin username." => "Iestatiet administratora lietotājvārdu.", "Set an admin password." => "Iestatiet administratora paroli.", -"Specify a data folder." => "Norādiet datu mapi.", "%s enter the database username." => "%s ievadiet datubāzes lietotājvārdu.", "%s enter the database name." => "%s ievadiet datubāzes nosaukumu.", "%s you may not use dots in the database name" => "%s datubāžu nosaukumos nedrīkst izmantot punktus", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 10a4060e119..f7cc6ad899c 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -18,7 +18,6 @@ "Images" => "Afbeeldingen", "Set an admin username." => "Stel de gebruikersnaam van de beheerder in.", "Set an admin password." => "Stel een beheerderswachtwoord in.", -"Specify a data folder." => "Geef een datamap op.", "%s enter the database username." => "%s opgeven database gebruikersnaam.", "%s enter the database name." => "%s opgeven databasenaam.", "%s you may not use dots in the database name" => "%s er mogen geen puntjes in de databasenaam voorkomen", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 9a1a5e836c9..c508794c42a 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -18,7 +18,6 @@ "Images" => "Obrazy", "Set an admin username." => "Ustaw nazwę administratora.", "Set an admin password." => "Ustaw hasło administratora.", -"Specify a data folder." => "Określ folder danych.", "%s enter the database username." => "%s wpisz nazwę użytkownika do bazy", "%s enter the database name." => "%s wpisz nazwę bazy.", "%s you may not use dots in the database name" => "%s nie można używać kropki w nazwie bazy danych", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index d4f410d8885..8196b43be23 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -18,7 +18,6 @@ "Images" => "Imagens", "Set an admin username." => "Defina um nome de usuário de administrador.", "Set an admin password." => "Defina uma senha de administrador.", -"Specify a data folder." => "Especifique uma pasta de dados.", "%s enter the database username." => "%s insira o nome de usuário do banco de dados.", "%s enter the database name." => "%s insira o nome do banco de dados.", "%s you may not use dots in the database name" => "%s você não pode usar pontos no nome do banco de dados", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 2c813f5b07c..12470686e7e 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -18,7 +18,6 @@ "Images" => "Imagens", "Set an admin username." => "Definir um nome de utilizador de administrador", "Set an admin password." => "Definiar uma password de administrador", -"Specify a data folder." => "Especificar a pasta para os dados.", "%s enter the database username." => "%s introduza o nome de utilizador da base de dados", "%s enter the database name." => "%s introduza o nome da base de dados", "%s you may not use dots in the database name" => "%s não é permitido utilizar pontos (.) no nome da base de dados", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 25a88d5efc2..6f351cd4584 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -18,7 +18,6 @@ "Images" => "Изображения", "Set an admin username." => "Установить имя пользователя для admin.", "Set an admin password." => "становит пароль для admin.", -"Specify a data folder." => "Указать папку данных.", "%s enter the database username." => "%s введите имя пользователя базы данных.", "%s enter the database name." => "%s введите имя базы данных.", "%s you may not use dots in the database name" => "%s Вы не можете использовать точки в имени базы данных", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 8c9ce61622c..2ab255ef8fe 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -18,7 +18,6 @@ "Images" => "Obrázky", "Set an admin username." => "Zadajte používateľské meno administrátora.", "Set an admin password." => "Zadajte heslo administrátora.", -"Specify a data folder." => "Zadajte priečinok pre dáta.", "%s enter the database username." => "Zadajte používateľské meno %s databázy..", "%s enter the database name." => "Zadajte názov databázy pre %s databázy.", "%s you may not use dots in the database name" => "V názve databázy %s nemôžete používať bodky", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index a2e1719de87..8775cdd0303 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -18,7 +18,6 @@ "Images" => "Slike", "Set an admin username." => "Nastavi uporabniško ime skrbnika.", "Set an admin password." => "Nastavi geslo skrbnika.", -"Specify a data folder." => "Določi podatkovno mapo.", "%s enter the database username." => "%s - vnos uporabniškega imena podatkovne zbirke.", "%s enter the database name." => "%s - vnos imena podatkovne zbirke.", "%s you may not use dots in the database name" => "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik.", diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index 743c52850ac..649af3c5c25 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -18,7 +18,6 @@ "Images" => "Foto", "Set an admin username." => "Cakto emrin e administratorit.", "Set an admin password." => "Cakto kodin e administratorit.", -"Specify a data folder." => "Specifiko dosjen e të dhënave.", "%s enter the database username." => "% shkruani përdoruesin e database-it.", "%s enter the database name." => "%s shkruani emrin e database-it.", "%s you may not use dots in the database name" => "%s nuk mund të përdorni pikat tek emri i database-it", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 68f7151d15e..9dfc16c3464 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -18,7 +18,6 @@ "Images" => "Зображення", "Set an admin username." => "Встановіть ім'я адміністратора.", "Set an admin password." => "Встановіть пароль адміністратора.", -"Specify a data folder." => "Вкажіть теку для даних.", "%s enter the database username." => "%s введіть ім'я користувача бази даних.", "%s enter the database name." => "%s введіть назву бази даних.", "%s you may not use dots in the database name" => "%s не можна використовувати крапки в назві бази даних", diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index b79fdfcca1d..2dea94dec36 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -18,7 +18,6 @@ "Images" => "图片", "Set an admin username." => "请设置一个管理员用户名。", "Set an admin password." => "请设置一个管理员密码。", -"Specify a data folder." => "请指定一个数据目录。", "%s enter the database username." => "%s 输入数据库用户名。", "%s enter the database name." => "%s 输入数据库名称。", "%s you may not use dots in the database name" => "%s 您不能在数据库名称中使用英文句号。", diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index f90e531f129..5aaa954463d 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -1,6 +1,9 @@ "Cais annilys", "Error" => "Gwall", +"Delete" => "Dileu", "Security Warning" => "Rhybudd Diogelwch", "Password" => "Cyfrinair", -"New password" => "Cyfrinair newydd" +"New password" => "Cyfrinair newydd", +"Other" => "Arall" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index cb7d08cba95..1ff3e45f698 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -39,7 +39,7 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Dein Datenverzeichnis und Deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass Du Deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass Du Dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", "Locale not working" => "Ländereinstellung funktioniert nicht", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index d6e068059b5..b1f121aa970 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -39,7 +39,7 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", "Locale not working" => "Die Lokalisierung funktioniert nicht", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 132b4ee437a..c5aa0ddec70 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -65,7 +65,7 @@ "Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "常にSSL接続を有効/無効にするために、HTTPS経由でこの ownCloud に接続して下さい。", "Log" => "ログ", "Log level" => "ログレベル", -"More" => "詳細", +"More" => "もっと見る", "Less" => "閉じる", "Version" => "バージョン", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。", -- cgit v1.2.3 From 9facb67fab0cc9556e681ff75ec59218eb2ba34b Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 18 Apr 2013 08:30:09 +0200 Subject: Let autoloader resolve paths under apps lib directory. --- lib/base.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index dde994a7e57..72645d07786 100644 --- a/lib/base.php +++ b/lib/base.php @@ -97,8 +97,14 @@ class OC { $path = 'public/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); } elseif (strpos($className, 'OCA\\') === 0) { foreach (self::$APPSROOTS as $appDir) { - $path = $appDir['path'] . '/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); - $fullPath = stream_resolve_include_path($path); + $path = strtolower(str_replace('\\', '/', substr($className, 4)) . '.php'); + $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $path); + if (file_exists($fullPath)) { + require_once $fullPath; + return false; + } + $libpath = substr($path, 0, strpos($path, '/')) . '/lib' . substr($path, strpos($path, '/')); + $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $libpath); if (file_exists($fullPath)) { require_once $fullPath; return false; -- cgit v1.2.3 From fe58e4b1a6a0f3b63afe74690986493facdad2c4 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Thu, 18 Apr 2013 17:46:04 +0200 Subject: we need to add the owner of the file as parameter in case someone else like the owner edits the file; if $includeOwner is set than add owner also if no other recipient was found. This changes enable all user with write access to the file to edit it and to encrypt it to the right list of users again --- lib/public/share.php | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index 876de892572..acdf895c920 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -127,21 +127,21 @@ class Share { /** * @brief 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 * @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, $includeOwner = false, $removeDuplicates = true ) { + public static function getUsersSharingFile( $path, $user, $includeOwner = false, $removeDuplicates = true ) { - $user = \OCP\User::getUser(); $path_parts = explode(DIRECTORY_SEPARATOR, trim($path, DIRECTORY_SEPARATOR)); $path = ''; $shares = array(); - + $view = new \OC\Files\View('/'.$user.'/files/'); foreach ($path_parts as $p) { $path .= '/'.$p; - $meta = \OC\Files\Filesystem::getFileInfo(\OC_Filesystem::normalizePath($path)); + $meta = $view->getFileInfo(\OC_Filesystem::normalizePath($path)); $source = $meta['fileid']; // Fetch all shares of this file path from DB @@ -203,12 +203,9 @@ class Share { $shares[] = "ownCloud"; } } - - if ( ! empty( $shares ) ) { - // Include owner in list of users, if requested - if ( $includeOwner ) { - $shares[] = $user; - } + // Include owner in list of users, if requested + if ( $includeOwner ) { + $shares[] = $user; } return array_unique($shares); -- cgit v1.2.3 From e4876c91176473c19e8c24d8fcb6e338cffa0123 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 18 Apr 2013 21:11:55 +0200 Subject: Don't use empty session.cookie_path, otherwise we get multiple cookies --- lib/base.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index dde994a7e57..50dd9a29123 100644 --- a/lib/base.php +++ b/lib/base.php @@ -324,7 +324,8 @@ class OC { ini_set('session.cookie_httponly', '1;'); // set the cookie path to the ownCloud directory - ini_set('session.cookie_path', OC::$WEBROOT); + $cookie_path = OC::$WEBROOT ?: '/'; + ini_set('session.cookie_path', $cookie_path); // set the session name to the instance id - which is unique session_name(OC_Util::getInstanceId()); @@ -357,7 +358,7 @@ class OC { // session timeout if (isset($_SESSION['LAST_ACTIVITY']) && (time() - $_SESSION['LAST_ACTIVITY'] > 60*60*24)) { if (isset($_COOKIE[session_name()])) { - setcookie(session_name(), '', time() - 42000, OC::$WEBROOT); + setcookie(session_name(), '', time() - 42000, $cookie_path); } session_unset(); session_destroy(); -- cgit v1.2.3 From e09c17de5b25d6c728bc6b828dcc686ce66ae134 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 18 Apr 2013 22:29:50 +0200 Subject: Added explanation --- lib/base.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 72645d07786..16b0da7c77e 100644 --- a/lib/base.php +++ b/lib/base.php @@ -103,6 +103,7 @@ class OC { require_once $fullPath; return false; } + // If not found in the root of the app directory, insert '/lib' after app id and try again. $libpath = substr($path, 0, strpos($path, '/')) . '/lib' . substr($path, strpos($path, '/')); $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $libpath); if (file_exists($fullPath)) { -- cgit v1.2.3 From 7ac49dd52a238eb721d5d750e79a0db56599b212 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Apr 2013 12:44:54 +0200 Subject: Cleaner isWebDAVWorking reason, otherwise people overlook the reason --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 34ed4a2a96a..38453c1ce92 100755 --- a/lib/util.php +++ b/lib/util.php @@ -595,7 +595,7 @@ class OC_Util { } catch(\Sabre_DAV_Exception_NotAuthenticated $e) { $return = true; } catch(\Exception $e) { - OC_Log::write('core', 'isWebDAVWorking: NO - Reason: '.$e, OC_Log::WARN); + OC_Log::write('core', 'isWebDAVWorking: NO - Reason: '.$e->getMessage(). ' ('.get_class($e).')', OC_Log::WARN); $return = false; } -- cgit v1.2.3 From 10be42f5b7b17ca55c242960885a9b50e217af3f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 19 Apr 2013 15:03:59 +0200 Subject: Cache: only look for child entires when doing a move operation when moving a folder --- lib/files/cache/cache.php | 27 +++++++++++++++------------ tests/lib/files/cache/cache.php | 7 ++++--- 2 files changed, 19 insertions(+), 15 deletions(-) (limited to 'lib') diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 71b70abe3fe..d30c5cd16ed 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -205,7 +205,7 @@ class Cache { . ' VALUES(' . implode(', ', $valuesPlaceholder) . ')'); $result = $query->execute($params); if (\OC_DB::isError($result)) { - \OCP\Util::writeLog('cache', 'Insert to cache failed: '.$result, \OCP\Util::ERROR); + \OCP\Util::writeLog('cache', 'Insert to cache failed: ' . $result, \OCP\Util::ERROR); } return (int)\OC_DB::insertid('*PREFIX*filecache'); @@ -328,19 +328,22 @@ class Cache { * @param string $target */ public function move($source, $target) { - $sourceId = $this->getId($source); + $sourceData = $this->get($source); + $sourceId = $sourceData['fileid']; $newParentId = $this->getParentId($target); - //find all child entries - $query = \OC_DB::prepare('SELECT `path`, `fileid` FROM `*PREFIX*filecache` WHERE `path` LIKE ?'); - $result = $query->execute(array($source . '/%')); - $childEntries = $result->fetchAll(); - $sourceLength = strlen($source); - $query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ? WHERE `fileid` = ?'); - - foreach ($childEntries as $child) { - $targetPath = $target . substr($child['path'], $sourceLength); - $query->execute(array($targetPath, md5($targetPath), $child['fileid'])); + if ($sourceData['mimetype'] === 'httpd/unix-directory') { + //find all child entries + $query = \OC_DB::prepare('SELECT `path`, `fileid` FROM `*PREFIX*filecache` WHERE `path` LIKE ?'); + $result = $query->execute(array($source . '/%')); + $childEntries = $result->fetchAll(); + $sourceLength = strlen($source); + $query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ? WHERE `fileid` = ?'); + + foreach ($childEntries as $child) { + $targetPath = $target . substr($child['path'], $sourceLength); + $query->execute(array($targetPath, md5($targetPath), $child['fileid'])); + } } $query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ?, `name` = ?, `parent` =?' diff --git a/tests/lib/files/cache/cache.php b/tests/lib/files/cache/cache.php index 250842805e5..4051a6e234b 100644 --- a/tests/lib/files/cache/cache.php +++ b/tests/lib/files/cache/cache.php @@ -162,10 +162,11 @@ class Cache extends \PHPUnit_Framework_TestCase { $file4 = 'folder/foo/1'; $file5 = 'folder/foo/2'; $data = array('size' => 100, 'mtime' => 50, 'mimetype' => 'foo/bar'); + $folderData = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory'); - $this->cache->put($file1, $data); - $this->cache->put($file2, $data); - $this->cache->put($file3, $data); + $this->cache->put($file1, $folderData); + $this->cache->put($file2, $folderData); + $this->cache->put($file3, $folderData); $this->cache->put($file4, $data); $this->cache->put($file5, $data); -- cgit v1.2.3 From e1c5b31d6544b5f7700888526f7e55b66e677498 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Apr 2013 16:04:33 +0200 Subject: Test if we want a 3rdparty style/script before checking the 3rdparty root --- lib/templatelayout.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 73094232230..69bebac0503 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -111,7 +111,8 @@ class OC_TemplateLayout extends OC_Template { $files = array(); foreach($styles as $style) { // is it in 3rdparty? - if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) { + if(strpos($style, '3rdparty') === 0 && + self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) { // or in the owncloud root? }elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "$style$fext.css" )) { @@ -169,7 +170,8 @@ class OC_TemplateLayout extends OC_Template { $files = array(); foreach($scripts as $script) { // Is it in 3rd party? - if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) { + if(strpos($script, '3rdparty') === 0 && + self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) { // Is it in apps and overwritten by the theme? }elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$script$fext.js" )) { -- cgit v1.2.3 From 03c7a52bc595bbc9fe1f155da699994f93b84131 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 20 Apr 2013 02:02:09 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/es_AR.php | 1 + apps/files/l10n/zh_TW.php | 2 +- apps/files_trashbin/l10n/zh_TW.php | 8 +++--- core/l10n/zh_TW.php | 2 +- l10n/es_AR/files.po | 16 ++++++------ l10n/sl/core.po | 36 +++++++++++++------------- l10n/sl/files.po | 14 +++++------ l10n/sl/files_trashbin.po | 10 ++++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/zh_TW/core.po | 41 +++++++++++++++--------------- l10n/zh_TW/files.po | 25 ++++++++++--------- l10n/zh_TW/files_trashbin.po | 17 +++++++------ l10n/zh_TW/lib.po | 50 ++++++++++++++++++------------------- l10n/zh_TW/settings.po | 34 ++++++++++++------------- lib/l10n/zh_TW.php | 32 ++++++++++++++++-------- 25 files changed, 163 insertions(+), 147 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index bd33fdfa4a5..25c2f4ff699 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -25,6 +25,7 @@ "undo" => "deshacer", "perform delete operation" => "Eliminar", "1 file uploading" => "Subiendo 1 archivo", +"files uploading" => "Subiendo archivos", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index b7a58e3e561..c61cf0e2225 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -34,7 +34,7 @@ "Your download is being prepared. This might take some time if the files are big." => "正在準備您的下載,若您的檔案較大,將會需要更多時間。", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", "Not enough space available" => "沒有足夠的可用空間", -"Upload cancelled." => "上傳取消", +"Upload cancelled." => "上傳已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中。離開此頁面將會取消上傳。", "URL cannot be empty." => "URL 不能為空白。", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留", diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index adfde6c06e5..a9dcba8f7d7 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -1,9 +1,9 @@ "無法永久刪除%s", -"Couldn't restore %s" => "無法復原%s", +"Couldn't delete %s permanently" => "無法永久刪除 %s", +"Couldn't restore %s" => "無法復原 %s", "perform restore operation" => "進行復原動作", "Error" => "錯誤", -"delete file permanently" => "永久刪除文件", +"delete file permanently" => "永久刪除檔案", "Delete permanently" => "永久刪除", "Name" => "名稱", "Deleted" => "已刪除", @@ -11,7 +11,7 @@ "{count} folders" => "{count} 個資料夾", "1 file" => "1 個檔案", "{count} files" => "{count} 個檔案", -"Nothing in here. Your trash bin is empty!" => "這裏沒東西。您的垃圾桶是空的!", +"Nothing in here. Your trash bin is empty!" => "您的垃圾桶是空的!", "Restore" => "復原", "Delete" => "刪除", "Deleted Files" => "已刪除的檔案" diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 5b14033ffeb..3199688be30 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -103,7 +103,7 @@ "Admin" => "管理者", "Help" => "幫助", "Access forbidden" => "存取被拒", -"Cloud not found" => "未發現雲", +"Cloud not found" => "未發現雲端", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index c7d4671e9a0..cd360823317 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012-2013. -# CJTess , 2013. -# , 2012-2013. -# Javier Victor Mariano Bruno , 2013. +# Agustin Ferrario , 2012-2013 +# cjtess , 2013 +# cjtess , 2012-2013 +# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 09:10+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -132,7 +132,7 @@ msgstr "Subiendo 1 archivo" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "Subiendo archivos" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 59dca9a91a4..3d0bd6ff5d7 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2013. -# <>, 2012. -# Matej Urbančič <>, 2013. -# , 2012. -# Peter Peroša , 2012. -# , 2012. +# mateju <>, 2013 +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 +# Peter Peroša , 2012 +# urossolar , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 19:00+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" @@ -525,37 +525,37 @@ msgstr "Napredne možnosti" msgid "Data folder" msgstr "Podatkovna mapa" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Uporabnik podatkovne zbirke" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Končaj namestitev" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 70bc018b177..1c0597e776e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# , 2012. -# Peter Peroša , 2012. -# , 2012. +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 +# Peter Peroša , 2012 +# urossolar , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 20:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 3a134b8b187..1c88a1cf01b 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2013. -# Matej Urbančič <>, 2013. +# mateju <>, 2013 +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 17:02+0000\n" +"Last-Translator: mateju <>\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" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 8b95f90e695..e5cecdb8be9 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 0d841af5b48..9c675580033 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 1a8cf27e1d8..26837cd9182 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index d9f875bbc2d..864fe393f12 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index b7e89b16761..770a271e76a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 2204b0211b4..e5da673209c 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 00e7f8f2bfc..48387dd5199 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 466ebc8a7cc..7c6bf8ac159 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 33c40bb7244..6b7f59c9fe0 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 7ea4b20758d..274338879dd 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3eafc9ad0bb..2a1a9c59032 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 1d36067acb8..83022879f37 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -3,19 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Donahue Chuang , 2012. -# , 2012. -# Ming Yi Wu , 2012. -# , 2013. -# Pellaeon Lin , 2013. +# admachen , 2013 +# Hydriz , 2013 +# Donahue Chuang , 2012 +# dw4dev , 2012 +# Ming Yi Wu , 2012 +# pellaeon , 2013 +# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 04:10+0000\n" +"Last-Translator: admachen \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -465,7 +466,7 @@ msgstr "存取被拒" #: templates/404.php:12 msgid "Cloud not found" -msgstr "未發現雲" +msgstr "未發現雲端" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -525,37 +526,37 @@ msgstr "進階" msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "完成設定" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index e4feb16563a..3ef4705fcd4 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -3,21 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Donahue Chuang , 2012. -# , 2012. -# Eddy Chang , 2012. -# , 2013. -# , 2013. -# Pellaeon Lin , 2013. -# ywang , 2012. +# admachen , 2013 +# Hydriz , 2013 +# Donahue Chuang , 2012 +# dw4dev , 2012 +# Eddy Chang , 2012 +# pellaeon , 2013 +# orinx , 2013 +# pellaeon , 2013 +# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 04:10+0000\n" +"Last-Translator: admachen \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -176,7 +177,7 @@ msgstr "沒有足夠的可用空間" #: js/files.js:312 msgid "Upload cancelled." -msgstr "上傳取消" +msgstr "上傳已取消" #: js/files.js:408 msgid "" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index a8ac6763aa8..f903767b93b 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. +# Hydriz , 2013 +# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +22,12 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "無法永久刪除%s" +msgstr "無法永久刪除 %s" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "無法復原%s" +msgstr "無法復原 %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" @@ -38,7 +39,7 @@ msgstr "錯誤" #: js/trash.js:34 msgid "delete file permanently" -msgstr "永久刪除文件" +msgstr "永久刪除檔案" #: js/trash.js:121 msgid "Delete permanently" @@ -70,7 +71,7 @@ msgstr "{count} 個檔案" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "這裏沒東西。您的垃圾桶是空的!" +msgstr "您的垃圾桶是空的!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 07d0bd557fb..09c7e166177 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:00+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,11 +48,11 @@ msgstr "管理" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP 下載已關閉" +msgstr "ZIP 下載已關閉。" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "檔案需要逐一下載" +msgstr "檔案需要逐一下載。" #: files.php:211 files.php:244 msgid "Back to Files" @@ -60,7 +60,7 @@ msgstr "回到檔案列表" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "選擇的檔案太大以致於無法產生壓縮檔" +msgstr "選擇的檔案太大以致於無法產生壓縮檔。" #: helper.php:228 msgid "couldn't be determined" @@ -92,47 +92,47 @@ msgstr "圖片" #: setup.php:34 msgid "Set an admin username." -msgstr "設置一個管理員用戶名。" +msgstr "設定管理員帳號。" #: setup.php:37 msgid "Set an admin password." -msgstr "設置一個管理員密碼。" +msgstr "設定管理員密碼。" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s 輸入資料庫使用者名稱。" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s 輸入資料庫名稱。" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s 資料庫名稱不能包含小數點" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s 設定資料庫主機。" #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL用戶名和/或密碼無效" +msgstr "PostgreSQL 用戶名和/或密碼無效" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "您必須輸入一個現有的賬戶或管理員" +msgstr "您必須輸入一個現有的帳號或管理員帳號。" #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "Oracle用戶名和/或密碼無效" +msgstr "Oracle 用戶名和/或密碼無效" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "MySQL用戶名和/或密碼無效" +msgstr "MySQL 用戶名和/或密碼無效" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -140,42 +140,42 @@ msgstr "MySQL用戶名和/或密碼無效" #: setup.php:614 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "資料庫錯誤:\"%s\"" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "有問題的指令是:\"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL 使用者 '%s'@'localhost' 已經存在。" #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "在 MySQL 移除這個使用者" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL 使用者 '%s'@'%%' 已經存在" #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "在 MySQL 移除這個使用者。" #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL 使用者和/或密碼無效:%s" #: setup.php:853 msgid "" @@ -251,7 +251,7 @@ msgstr "最新的" #: updater.php:84 msgid "updates check is disabled" -msgstr "檢查更新已停用" +msgstr "更新檢查已停用" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index f0787d2836d..23cc130ca4f 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -3,23 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Donahue Chuang , 2012. -# , 2012. -# , 2013. -# , 2013. -# Pellaeon Lin , 2013. -# , 2012. -# , 2013. -# , 2012. -# , 2012. -# ywang , 2012. +# Hydriz , 2013 +# Donahue Chuang , 2012 +# dw4dev , 2012 +# pellaeon , 2013 +# orinx , 2013 +# pellaeon , 2013 +# sy6614 , 2012 +# ronnietse , 2013 +# weiyu , 2012 +# Jeff5555 , 2012 +# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:00+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" @@ -323,19 +323,19 @@ msgstr "紀錄" msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "更多" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "少" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "版本" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the "使用者", "Apps" => "應用程式", "Admin" => "管理", -"ZIP download is turned off." => "ZIP 下載已關閉", -"Files need to be downloaded one by one." => "檔案需要逐一下載", +"ZIP download is turned off." => "ZIP 下載已關閉。", +"Files need to be downloaded one by one." => "檔案需要逐一下載。", "Back to Files" => "回到檔案列表", -"Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔", +"Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔。", "couldn't be determined" => "無法判斷", "Application is not enabled" => "應用程式未啟用", "Authentication error" => "認證錯誤", @@ -16,12 +16,24 @@ "Files" => "檔案", "Text" => "文字", "Images" => "圖片", -"Set an admin username." => "設置一個管理員用戶名。", -"Set an admin password." => "設置一個管理員密碼。", -"PostgreSQL username and/or password not valid" => "PostgreSQL用戶名和/或密碼無效", -"You need to enter either an existing account or the administrator." => "您必須輸入一個現有的賬戶或管理員", -"Oracle username and/or password not valid" => "Oracle用戶名和/或密碼無效", -"MySQL username and/or password not valid" => "MySQL用戶名和/或密碼無效", +"Set an admin username." => "設定管理員帳號。", +"Set an admin password." => "設定管理員密碼。", +"%s enter the database username." => "%s 輸入資料庫使用者名稱。", +"%s enter the database name." => "%s 輸入資料庫名稱。", +"%s you may not use dots in the database name" => "%s 資料庫名稱不能包含小數點", +"%s set the database host." => "%s 設定資料庫主機。", +"PostgreSQL username and/or password not valid" => "PostgreSQL 用戶名和/或密碼無效", +"You need to enter either an existing account or the administrator." => "您必須輸入一個現有的帳號或管理員帳號。", +"Oracle username and/or password not valid" => "Oracle 用戶名和/或密碼無效", +"MySQL username and/or password not valid" => "MySQL 用戶名和/或密碼無效", +"DB Error: \"%s\"" => "資料庫錯誤:\"%s\"", +"Offending command was: \"%s\"" => "有問題的指令是:\"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL 使用者 '%s'@'localhost' 已經存在。", +"Drop this user from MySQL" => "在 MySQL 移除這個使用者", +"MySQL user '%s'@'%%' already exists" => "MySQL 使用者 '%s'@'%%' 已經存在", +"Drop this user from MySQL." => "在 MySQL 移除這個使用者。", +"Offending command was: \"%s\", name: %s, password: %s" => "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"", +"MS SQL username and/or password not valid: %s" => "MS SQL 使用者和/或密碼無效:%s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the installation guides." => "請參考安裝指南。", "seconds ago" => "幾秒前", @@ -38,6 +50,6 @@ "years ago" => "幾年前", "%s is available. Get more information" => "%s 已經可用。取得 更多資訊", "up to date" => "最新的", -"updates check is disabled" => "檢查更新已停用", +"updates check is disabled" => "更新檢查已停用", "Could not find category \"%s\"" => "找不到分類:\"%s\"" ); -- cgit v1.2.3 From 15dae6198fc4855519a0ed2347c29485a061f6aa Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 20 Apr 2013 16:38:03 +0200 Subject: Cache: add a backgroundjob to check for external changes to the filesystem --- apps/files/appinfo/app.php | 4 +- lib/files/cache/backgroundwatcher.php | 73 +++++++++++++++++++++++++++++++++++ lib/files/cache/cache.php | 1 + lib/files/cache/permissions.php | 15 +++++++ tests/lib/files/cache/permissions.php | 6 ++- 5 files changed, 96 insertions(+), 3 deletions(-) create mode 100644 lib/files/cache/backgroundwatcher.php (limited to 'lib') diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 703b1c7cb6c..05ab1722b3e 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -18,4 +18,6 @@ OC_Search::registerProvider('OC_Search_Provider_File'); \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); \OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); -\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); \ No newline at end of file +\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); + +\OC_BackgroundJob_RegularTask::register('\OC\Files\Cache\BackgroundWatcher', 'checkNext'); diff --git a/lib/files/cache/backgroundwatcher.php b/lib/files/cache/backgroundwatcher.php new file mode 100644 index 00000000000..3bcd447f53a --- /dev/null +++ b/lib/files/cache/backgroundwatcher.php @@ -0,0 +1,73 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Cache; + +use \OC\Files\Mount; +use \OC\Files\Filesystem; + +class BackgroundWatcher { + static private function checkUpdate($id) { + $cacheItem = Cache::getById($id); + if (is_null($cacheItem)) { + return; + } + list($storageId, $internalPath) = $cacheItem; + $mounts = Mount::findByStorageId($storageId); + + if (count($mounts) === 0) { + //if the storage we need isn't mounted on default, try to find a user that has access to the storage + $permissionsCache = new Permissions($storageId); + $users = $permissionsCache->getUsers($id); + if (count($users) === 0) { + return; + } + Filesystem::initMountPoints($users[0]); + $mounts = Mount::findByStorageId($storageId); + if (count($mounts) === 0) { + return; + } + } + $storage = $mounts[0]->getStorage(); + $watcher = new Watcher($storage); + $watcher->checkUpdate($internalPath); + } + + /** + * get the next fileid in the cache + * + * @param int $previous + * @return int + */ + static private function getNextFileId($previous) { + $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `fileid` > ? ORDER BY `fileid` ASC', 1); + $result = $query->execute(array($previous)); + if ($row = $result->fetchRow()) { + return $row['fileid']; + } else { + return 0; + } + } + + static public function checkNext() { + $previous = \OC_Appconfig::getValue('files', 'backgroundwatcher_previous', 0); + $next = self::getNextFileId($previous); + error_log($next); + \OC_Appconfig::setValue('files', 'backgroundwatcher_previous', $next); + self::checkUpdate($next); + } + + static public function checkAll() { + $previous = 0; + $next = 1; + while ($next != 0) { + $next = self::getNextFileId($previous); + self::checkUpdate($next); + } + } +} diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 71b70abe3fe..3ed3490f29b 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -517,6 +517,7 @@ class Cache { /** * get the storage id of the storage for a file and the internal path of the file * + * @param int $id * @return array, first element holding the storage id, second the path */ static public function getById($id) { diff --git a/lib/files/cache/permissions.php b/lib/files/cache/permissions.php index a5c9c144054..faa5ff5eacc 100644 --- a/lib/files/cache/permissions.php +++ b/lib/files/cache/permissions.php @@ -107,4 +107,19 @@ class Permissions { $query->execute(array($fileId, $user)); } } + + /** + * get the list of users which have permissions stored for a file + * + * @param int $fileId + */ + public function getUsers($fileId) { + $query = \OC_DB::prepare('SELECT `user` FROM `*PREFIX*permissions` WHERE `fileid` = ?'); + $result = $query->execute(array($fileId)); + $users = array(); + while ($row = $result->fetchRow()) { + $users[] = $row['user']; + } + return $users; + } } diff --git a/tests/lib/files/cache/permissions.php b/tests/lib/files/cache/permissions.php index 56dbbc4518e..7e6e11e2eb2 100644 --- a/tests/lib/files/cache/permissions.php +++ b/tests/lib/files/cache/permissions.php @@ -14,8 +14,8 @@ class Permissions extends \PHPUnit_Framework_TestCase { */ private $permissionsCache; - function setUp(){ - $this->permissionsCache=new \OC\Files\Cache\Permissions('dummy'); + function setUp() { + $this->permissionsCache = new \OC\Files\Cache\Permissions('dummy'); } function testSimple() { @@ -23,8 +23,10 @@ class Permissions extends \PHPUnit_Framework_TestCase { $user = uniqid(); $this->assertEquals(-1, $this->permissionsCache->get(1, $user)); + $this->assertNotContains($user, $this->permissionsCache->getUsers(1)); $this->permissionsCache->set(1, $user, 1); $this->assertEquals(1, $this->permissionsCache->get(1, $user)); + $this->assertContains($user, $this->permissionsCache->getUsers(1)); $this->assertEquals(-1, $this->permissionsCache->get(2, $user)); $this->assertEquals(-1, $this->permissionsCache->get(1, $user . '2')); -- cgit v1.2.3 From eed5e9f804c0aac0467e1f502d86266ea232f350 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 20 Apr 2013 16:56:47 +0200 Subject: Cache: check one folder and one file each time the backgroundwatcher runs Because there are usually way less folders than files it walks trought the list of all folder quicker, this causes new files to be detected quicker --- lib/files/cache/backgroundwatcher.php | 47 +++++++++++++++++++++++++++++------ 1 file changed, 39 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/lib/files/cache/backgroundwatcher.php b/lib/files/cache/backgroundwatcher.php index 3bcd447f53a..7549745e7d7 100644 --- a/lib/files/cache/backgroundwatcher.php +++ b/lib/files/cache/backgroundwatcher.php @@ -12,6 +12,18 @@ use \OC\Files\Mount; use \OC\Files\Filesystem; class BackgroundWatcher { + static $folderMimetype = null; + + static private function getFolderMimetype() { + if (!is_null(self::$folderMimetype)) { + return self::$folderMimetype; + } + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*mimetypes` WHERE `mimetype` = ?'); + $result = $query->execute(array('httpd/unix-directory')); + $row = $result->fetchRow(); + return $row['id']; + } + static private function checkUpdate($id) { $cacheItem = Cache::getById($id); if (is_null($cacheItem)) { @@ -42,10 +54,15 @@ class BackgroundWatcher { * get the next fileid in the cache * * @param int $previous + * @param bool $folder * @return int */ - static private function getNextFileId($previous) { - $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `fileid` > ? ORDER BY `fileid` ASC', 1); + static private function getNextFileId($previous, $folder) { + if ($folder) { + $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `fileid` > ? AND mimetype = ' . self::getFolderMimetype() . ' ORDER BY `fileid` ASC', 1); + } else { + $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `fileid` > ? AND mimetype != ' . self::getFolderMimetype() . ' ORDER BY `fileid` ASC', 1); + } $result = $query->execute(array($previous)); if ($row = $result->fetchRow()) { return $row['fileid']; @@ -55,18 +72,32 @@ class BackgroundWatcher { } static public function checkNext() { - $previous = \OC_Appconfig::getValue('files', 'backgroundwatcher_previous', 0); - $next = self::getNextFileId($previous); - error_log($next); - \OC_Appconfig::setValue('files', 'backgroundwatcher_previous', $next); - self::checkUpdate($next); + // check both 1 file and 1 folder, this way new files are detected quicker because there are less folders than files usually + $previousFile = \OC_Appconfig::getValue('files', 'backgroundwatcher_previous_file', 0); + $previousFolder = \OC_Appconfig::getValue('files', 'backgroundwatcher_previous_folder', 0); + $nextFile = self::getNextFileId($previousFile, false); + $nextFolder = self::getNextFileId($previousFolder, true); + \OC_Appconfig::setValue('files', 'backgroundwatcher_previous_file', $nextFile); + \OC_Appconfig::setValue('files', 'backgroundwatcher_previous_folder', $nextFolder); + if ($nextFile > 0) { + self::checkUpdate($nextFile); + } + if ($nextFolder > 0) { + self::checkUpdate($nextFolder); + } } static public function checkAll() { $previous = 0; $next = 1; while ($next != 0) { - $next = self::getNextFileId($previous); + $next = self::getNextFileId($previous, true); + self::checkUpdate($next); + } + $previous = 0; + $next = 1; + while ($next != 0) { + $next = self::getNextFileId($previous, false); self::checkUpdate($next); } } -- cgit v1.2.3 From 7948341a86fb08d236bb53f8aece809ae10ba5f2 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 20 Apr 2013 23:27:46 +0200 Subject: Rework background job system --- apps/user_ldap/appinfo/app.php | 2 +- apps/user_ldap/lib/jobs.php | 19 ++-- cron.php | 11 ++- lib/backgroundjob/job.php | 45 +++++++++ lib/backgroundjob/joblist.php | 158 +++++++++++++++++++++++++++++++ lib/backgroundjob/queuedjob.php | 28 ++++++ lib/backgroundjob/queuedtask.php | 105 -------------------- lib/backgroundjob/regulartask.php | 52 ---------- lib/backgroundjob/timedjob.php | 41 ++++++++ lib/backgroundjob/worker.php | 118 ----------------------- lib/base.php | 2 +- lib/cache/fileglobalgc.php | 8 ++ lib/public/backgroundjob.php | 71 ++------------ tests/lib/backgroundjob/dummyjoblist.php | 114 ++++++++++++++++++++++ tests/lib/backgroundjob/queuedjob.php | 42 ++++++++ tests/lib/backgroundjob/timedjob.php | 68 +++++++++++++ 16 files changed, 530 insertions(+), 354 deletions(-) create mode 100644 lib/backgroundjob/job.php create mode 100644 lib/backgroundjob/joblist.php create mode 100644 lib/backgroundjob/queuedjob.php delete mode 100644 lib/backgroundjob/queuedtask.php delete mode 100644 lib/backgroundjob/regulartask.php create mode 100644 lib/backgroundjob/timedjob.php delete mode 100644 lib/backgroundjob/worker.php create mode 100644 lib/cache/fileglobalgc.php create mode 100644 tests/lib/backgroundjob/dummyjoblist.php create mode 100644 tests/lib/backgroundjob/queuedjob.php create mode 100644 tests/lib/backgroundjob/timedjob.php (limited to 'lib') diff --git a/apps/user_ldap/appinfo/app.php b/apps/user_ldap/appinfo/app.php index 89410b5ef07..5c8b3ddfb66 100644 --- a/apps/user_ldap/appinfo/app.php +++ b/apps/user_ldap/appinfo/app.php @@ -49,7 +49,7 @@ $entry = array( 'name' => 'LDAP' ); -OCP\Backgroundjob::addRegularTask('OCA\user_ldap\lib\Jobs', 'updateGroups'); +OCP\Backgroundjob::registerJob('OCA\user_ldap\lib\Jobs'); if(OCP\App::isEnabled('user_webdavauth')) { OCP\Util::writeLog('user_ldap', 'user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour', diff --git a/apps/user_ldap/lib/jobs.php b/apps/user_ldap/lib/jobs.php index 094d11db3d5..60ecc0da33d 100644 --- a/apps/user_ldap/lib/jobs.php +++ b/apps/user_ldap/lib/jobs.php @@ -23,20 +23,22 @@ namespace OCA\user_ldap\lib; -class Jobs { +class Jobs extends \OC\BackgroundJob\TimedJob { static private $groupsFromDB; static private $groupBE; static private $connector; + public function __construct(){ + $this->interval = self::getRefreshInterval(); + } + + public function run($argument){ + Jobs::updateGroups(); + } + static public function updateGroups() { \OCP\Util::writeLog('user_ldap', 'Run background job "updateGroups"', \OCP\Util::DEBUG); - $lastUpdate = \OCP\Config::getAppValue('user_ldap', 'bgjUpdateGroupsLastRun', 0); - if((time() - $lastUpdate) < self::getRefreshInterval()) { - \OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – last run too fresh, aborting.', \OCP\Util::DEBUG); - //komm runter Werner die Maurer geben ein aus - return; - } $knownGroups = array_keys(self::getKnownGroups()); $actualGroups = self::getGroupBE()->getGroups(); @@ -45,7 +47,6 @@ class Jobs { \OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – groups do not seem to be configured properly, aborting.', \OCP\Util::INFO); - \OCP\Config::setAppValue('user_ldap', 'bgjUpdateGroupsLastRun', time()); return; } @@ -53,8 +54,6 @@ class Jobs { self::handleCreatedGroups(array_diff($actualGroups, $knownGroups)); self::handleRemovedGroups(array_diff($knownGroups, $actualGroups)); - \OCP\Config::setAppValue('user_ldap', 'bgjUpdateGroupsLastRun', time()); - \OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – Finished.', \OCP\Util::DEBUG); } diff --git a/cron.php b/cron.php index 07ce45ac22e..c8dd6fcc88f 100644 --- a/cron.php +++ b/cron.php @@ -94,7 +94,11 @@ if (OC::$CLI) { touch(TemporaryCronClass::$lockfile); // Work - OC_BackgroundJob_Worker::doAllSteps(); + $jobList = new \OC\BackgroundJob\JobList(); + $jobs = $jobList->getAll(); + foreach ($jobs as $job) { + $job->execute($jobList); + } } else { // We call cron.php from some website if ($appmode == 'cron') { @@ -102,7 +106,10 @@ if (OC::$CLI) { OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!'))); } else { // Work and success :-) - OC_BackgroundJob_Worker::doNextStep(); + $jobList = new \OC\BackgroundJob\JobList(); + $job = $jobList->getNext(); + $job->execute($jobList); + $jobList->setLastJob($job); OC_JSON::success(); } } diff --git a/lib/backgroundjob/job.php b/lib/backgroundjob/job.php new file mode 100644 index 00000000000..ff647c7329b --- /dev/null +++ b/lib/backgroundjob/job.php @@ -0,0 +1,45 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\BackgroundJob; + +abstract class Job { + protected $id; + protected $lastRun; + protected $argument; + + /** + * @param JobList $jobList + */ + public function execute($jobList) { + $jobList->setLastRun($this); + $this->run($this->argument); + } + + abstract protected function run($argument); + + public function setId($id) { + $this->id = $id; + } + + public function setLastRun($lastRun) { + $this->lastRun = $lastRun; + } + + public function setArgument($argument) { + $this->argument = $argument; + } + + public function getId() { + return $this->id; + } + + public function getLastRun() { + return $this->lastRun(); + } +} diff --git a/lib/backgroundjob/joblist.php b/lib/backgroundjob/joblist.php new file mode 100644 index 00000000000..7471f84153b --- /dev/null +++ b/lib/backgroundjob/joblist.php @@ -0,0 +1,158 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\BackgroundJob; + +/** + * Class QueuedJob + * + * create a background job that is to be executed once + * + * @package OC\BackgroundJob + */ +class JobList { + /** + * @param Job|string $job + * @param mixed $argument + */ + public function add($job, $argument = null) { + if (!$this->has($job, $argument)) { + if ($job instanceof Job) { + $class = get_class($job); + } else { + $class = $job; + } + $argument = json_encode($argument); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*jobs`(`class`, `argument`, `last_run`) VALUES(?, ?, 0)'); + $query->execute(array($class, $argument)); + } + } + + /** + * @param Job|string $job + * @param mixed $argument + */ + public function remove($job, $argument = null) { + if ($job instanceof Job) { + $class = get_class($job); + } else { + $class = $job; + } + if (!is_null($argument)) { + $argument = json_encode($argument); + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*jobs` WHERE `class` = ? AND `argument` = ?'); + $query->execute(array($class, $argument)); + } else { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*jobs` WHERE `class` = ?'); + $query->execute(array($class)); + } + } + + /** + * check if a job is in the list + * + * @param $job + * @param mixed $argument + * @return bool + */ + public function has($job, $argument) { + if ($job instanceof Job) { + $class = get_class($job); + } else { + $class = $job; + } + $argument = json_encode($argument); + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*jobs` WHERE `class` = ? AND `argument` = ?'); + $result = $query->execute(array($class, $argument)); + return (bool)$result->fetchRow(); + } + + /** + * get all jobs in the list + * + * @return Job[] + */ + public function getAll() { + $query = \OC_DB::prepare('SELECT `id`, `class`, `last_run`, `argument` FROM `*PREFIX*jobs`'); + $result = $query->execute(); + $jobs = array(); + while ($row = $result->fetchRow()) { + $jobs[] = $this->buildJob($row); + } + return $jobs; + } + + /** + * get the next job in the list + * + * @return Job + */ + public function getNext() { + $lastId = $this->getLastJob(); + $query = \OC_DB::prepare('SELECT `id`, `class`, `last_run`, `argument` FROM `*PREFIX*jobs` WHERE `id` > ? ORDER BY `id` ASC', 1); + $result = $query->execute(array($lastId)); + if ($row = $result->fetchRow()) { + return $this->buildJob($row); + } else { + //begin at the start of the queue + $query = \OC_DB::prepare('SELECT `id`, `class`, `last_run`, `argument` FROM `*PREFIX*jobs` ORDER BY `id` ASC', 1); + $result = $query->execute(); + if ($row = $result->fetchRow()) { + return $this->buildJob($row); + } else { + return null; //empty job list + } + } + } + + /** + * get the job object from a row in the db + * + * @param array $row + * @return Job + */ + private function buildJob($row) { + $class = $row['class']; + /** + * @var Job $job + */ + $job = new $class(); + $job->setId($row['id']); + $job->setLastRun($row['last_run']); + $job->setArgument(json_decode($row['argument'])); + return $job; + } + + /** + * set the job that was last ran + * + * @param Job $job + */ + public function setLastJob($job) { + \OC_Appconfig::setValue('backgroundjob', 'lastjob', $job->getId()); + } + + /** + * get the id of the last ran job + * + * @return int + */ + public function getLastJob() { + return \OC_Appconfig::getValue('backgroundjob', 'lastjob', 0); + } + + /** + * set the lastRun of $job to now + * + * @param Job $job + */ + public function setLastRun($job) { + $query = \OC_DB::prepare('UPDATE `*PREFIX*jobs` SET `last_run` = ? WHERE `id` = ?'); + $query->execute(array(time(), $job->getId())); + } +} diff --git a/lib/backgroundjob/queuedjob.php b/lib/backgroundjob/queuedjob.php new file mode 100644 index 00000000000..1714182820d --- /dev/null +++ b/lib/backgroundjob/queuedjob.php @@ -0,0 +1,28 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\BackgroundJob; + +/** + * Class QueuedJob + * + * create a background job that is to be executed once + * + * @package OC\BackgroundJob + */ +abstract class QueuedJob extends Job { + /** + * run the job, then remove it from the joblist + * + * @param JobList $jobList + */ + public function execute($jobList) { + $jobList->remove($this); + $this->run($this->argument); + } +} diff --git a/lib/backgroundjob/queuedtask.php b/lib/backgroundjob/queuedtask.php deleted file mode 100644 index b2ce6f39ed8..00000000000 --- a/lib/backgroundjob/queuedtask.php +++ /dev/null @@ -1,105 +0,0 @@ -. -* -*/ - -/** - * This class manages our queued tasks. - */ -class OC_BackgroundJob_QueuedTask{ - /** - * @brief Gets one queued task - * @param $id ID of the task - * @return associative array - */ - public static function find( $id ) { - $stmt = OC_DB::prepare( 'SELECT * FROM `*PREFIX*queuedtasks` WHERE `id` = ?' ); - $result = $stmt->execute(array($id)); - return $result->fetchRow(); - } - - /** - * @brief Gets all queued tasks - * @return array with associative arrays - */ - public static function all() { - // Array for objects - $return = array(); - - // Get Data - $stmt = OC_DB::prepare( 'SELECT * FROM `*PREFIX*queuedtasks`' ); - $result = $stmt->execute(array()); - while( $row = $result->fetchRow()) { - $return[] = $row; - } - - return $return; - } - - /** - * @brief Gets all queued tasks of a specific app - * @param $app app name - * @return array with associative arrays - */ - public static function whereAppIs( $app ) { - // Array for objects - $return = array(); - - // Get Data - $stmt = OC_DB::prepare( 'SELECT * FROM `*PREFIX*queuedtasks` WHERE `app` = ?' ); - $result = $stmt->execute(array($app)); - while( $row = $result->fetchRow()) { - $return[] = $row; - } - - // Und weg damit - return $return; - } - - /** - * @brief queues a task - * @param $app app name - * @param $klass class name - * @param $method method name - * @param $parameters all useful data as text - * @return id of task - */ - public static function add( $app, $klass, $method, $parameters ) { - $stmt = OC_DB::prepare( 'INSERT INTO `*PREFIX*queuedtasks` (`app`, `klass`, `method`, `parameters`)' - .' VALUES(?,?,?,?)' ); - $result = $stmt->execute(array($app, $klass, $method, $parameters )); - - return OC_DB::insertid(); - } - - /** - * @brief deletes a queued task - * @param $id id of task - * @return true/false - * - * Deletes a report - */ - public static function delete( $id ) { - $stmt = OC_DB::prepare( 'DELETE FROM `*PREFIX*queuedtasks` WHERE `id` = ?' ); - $result = $stmt->execute(array($id)); - - return true; - } -} diff --git a/lib/backgroundjob/regulartask.php b/lib/backgroundjob/regulartask.php deleted file mode 100644 index 9976872ee13..00000000000 --- a/lib/backgroundjob/regulartask.php +++ /dev/null @@ -1,52 +0,0 @@ -. -* -*/ - -/** - * This class manages the regular tasks. - */ -class OC_BackgroundJob_RegularTask{ - static private $registered = array(); - - /** - * @brief creates a regular task - * @param $klass class name - * @param $method method name - * @return true - */ - static public function register( $klass, $method ) { - // Create the data structure - self::$registered["$klass-$method"] = array( $klass, $method ); - - // No chance for failure ;-) - return true; - } - - /** - * @brief gets all regular tasks - * @return associative array - * - * key is string "$klass-$method", value is array( $klass, $method ) - */ - static public function all() { - return self::$registered; - } -} diff --git a/lib/backgroundjob/timedjob.php b/lib/backgroundjob/timedjob.php new file mode 100644 index 00000000000..ae9f33505ab --- /dev/null +++ b/lib/backgroundjob/timedjob.php @@ -0,0 +1,41 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\BackgroundJob; + +/** + * Class QueuedJob + * + * create a background job that is to be executed at an interval + * + * @package OC\BackgroundJob + */ +abstract class TimedJob extends Job { + protected $interval = 0; + + /** + * set the interval for the job + * + * @param int $interval + */ + public function setInterval($interval) { + $this->interval = $interval; + } + + /** + * run the job if + * + * @param JobList $jobList + */ + public function execute($jobList) { + if ((time() - $this->lastRun) > $this->interval) { + $jobList->setLastRun($this); + $this->run($this->argument); + } + } +} diff --git a/lib/backgroundjob/worker.php b/lib/backgroundjob/worker.php deleted file mode 100644 index e966ac9647c..00000000000 --- a/lib/backgroundjob/worker.php +++ /dev/null @@ -1,118 +0,0 @@ -. -* -*/ - -/** - * This class does the dirty work. - * - * TODO: locking in doAllSteps - */ -class OC_BackgroundJob_Worker{ - /** - * @brief executes all tasks - * @return boolean - * - * This method executes all regular tasks and then all queued tasks. - * This method should be called by cli scripts that do not let the user - * wait. - */ - public static function doAllSteps() { - // Do our regular work - $lasttask = OC_Appconfig::getValue( 'core', 'backgroundjobs_task', '' ); - - $regular_tasks = OC_BackgroundJob_RegularTask::all(); - ksort( $regular_tasks ); - foreach( $regular_tasks as $key => $value ) { - if( strcmp( $key, $lasttask ) > 0 ) { - // Set "restart here" config value - OC_Appconfig::setValue( 'core', 'backgroundjobs_task', $key ); - call_user_func( $value ); - } - } - // Reset "start here" config value - OC_Appconfig::setValue( 'core', 'backgroundjobs_task', '' ); - - // Do our queued tasks - $queued_tasks = OC_BackgroundJob_QueuedTask::all(); - foreach( $queued_tasks as $task ) { - OC_BackgroundJob_QueuedTask::delete( $task['id'] ); - call_user_func( array( $task['klass'], $task['method'] ), $task['parameters'] ); - } - - return true; - } - - /** - * @brief does a single task - * @return boolean - * - * This method executes one task. It saves the last state and continues - * with the next step. This method should be used by webcron and ajax - * services. - */ - public static function doNextStep() { - $laststep = OC_Appconfig::getValue( 'core', 'backgroundjobs_step', 'regular_tasks' ); - - if( $laststep == 'regular_tasks' ) { - // get last app - $lasttask = OC_Appconfig::getValue( 'core', 'backgroundjobs_task', '' ); - - // What's the next step? - $regular_tasks = OC_BackgroundJob_RegularTask::all(); - ksort( $regular_tasks ); - $done = false; - - // search for next background job - foreach( $regular_tasks as $key => $value ) { - if( strcmp( $key, $lasttask ) > 0 ) { - OC_Appconfig::setValue( 'core', 'backgroundjobs_task', $key ); - $done = true; - call_user_func( $value ); - break; - } - } - - if( $done == false ) { - // Next time load queued tasks - OC_Appconfig::setValue( 'core', 'backgroundjobs_step', 'queued_tasks' ); - } - } - else{ - $tasks = OC_BackgroundJob_QueuedTask::all(); - if( count( $tasks )) { - $task = $tasks[0]; - // delete job before we execute it. This prevents endless loops - // of failing jobs. - OC_BackgroundJob_QueuedTask::delete($task['id']); - - // execute job - call_user_func( array( $task['klass'], $task['method'] ), $task['parameters'] ); - } - else{ - // Next time load queued tasks - OC_Appconfig::setValue( 'core', 'backgroundjobs_step', 'regular_tasks' ); - OC_Appconfig::setValue( 'core', 'backgroundjobs_task', '' ); - } - } - - return true; - } -} diff --git a/lib/base.php b/lib/base.php index 7b0967df9f9..fda65a221c7 100644 --- a/lib/base.php +++ b/lib/base.php @@ -561,7 +561,7 @@ class OC { */ public static function registerCacheHooks() { // register cache cleanup jobs - OC_BackgroundJob_RegularTask::register('OC_Cache_FileGlobal', 'gc'); + \OCP\BackgroundJob::registerJob('OC_Cache_FileGlobalGC'); OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); } diff --git a/lib/cache/fileglobalgc.php b/lib/cache/fileglobalgc.php new file mode 100644 index 00000000000..a29c31f9063 --- /dev/null +++ b/lib/cache/fileglobalgc.php @@ -0,0 +1,8 @@ +add($job, $argument); } - /** - * @brief gets all regular tasks - * @return associative array - * - * key is string "$klass-$method", value is array( $klass, $method ) - */ - static public function allRegularTasks() { - return \OC_BackgroundJob_RegularTask::all(); - } - - /** - * @brief Gets one queued task - * @param $id ID of the task - * @return associative array - */ - public static function findQueuedTask( $id ) { - return \OC_BackgroundJob_QueuedTask::find( $id ); - } - - /** - * @brief Gets all queued tasks - * @return array with associative arrays - */ - public static function allQueuedTasks() { - return \OC_BackgroundJob_QueuedTask::all(); - } - - /** - * @brief Gets all queued tasks of a specific app - * @param $app app name - * @return array with associative arrays - */ - public static function queuedTaskWhereAppIs( $app ) { - return \OC_BackgroundJob_QueuedTask::whereAppIs( $app ); - } - - /** - * @brief queues a task - * @param $app app name - * @param $klass class name - * @param $method method name - * @param $parameters all useful data as text - * @return id of task - */ - public static function addQueuedTask( $app, $klass, $method, $parameters ) { - return \OC_BackgroundJob_QueuedTask::add( $app, $klass, $method, $parameters ); - } - - /** - * @brief deletes a queued task - * @param $id id of task - * @return true/false - * - * Deletes a report - */ - public static function deleteQueuedTask( $id ) { - return \OC_BackgroundJob_QueuedTask::delete( $id ); - } } diff --git a/tests/lib/backgroundjob/dummyjoblist.php b/tests/lib/backgroundjob/dummyjoblist.php new file mode 100644 index 00000000000..c4ccfc22c9e --- /dev/null +++ b/tests/lib/backgroundjob/dummyjoblist.php @@ -0,0 +1,114 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\BackgroundJob; + +class JobRun extends \Exception { +} + +/** + * Class DummyJobList + * + * in memory job list for testing purposes + */ +class DummyJobList extends \OC\BackgroundJob\JobList { + /** + * @var \OC\BackgroundJob\Job[] + */ + private $jobs = array(); + + private $last = 0; + + /** + * @param \OC\BackgroundJob\Job|string $job + */ + public function add($job) { + if (!$this->has($job)) { + $this->jobs[] = $job; + } + } + + /** + * @param \OC\BackgroundJob\Job|string $job + */ + public function remove($job) { + $index = array_search($job, $this->jobs); + if ($index !== false) { + unset($this->jobs[$index]); + } + } + + /** + * check if a job is in the list + * + * @param $job + * @return bool + */ + public function has($job) { + return array_search($job, $this->jobs) !== false; + } + + /** + * get all jobs in the list + * + * @return \OC\BackgroundJob\Job[] + */ + public function getAll() { + return $this->jobs; + } + + /** + * get the next job in the list + * + * @return \OC\BackgroundJob\Job + */ + public function getNext() { + if (count($this->jobs) > 0) { + if ($this->last < (count($this->jobs) - 1)) { + $i = $this->last + 1; + } else { + $i = 0; + } + return $this->jobs[$i]; + } else { + return null; + } + } + + /** + * set the job that was last ran + * + * @param \OC\BackgroundJob\Job $job + */ + public function setLastJob($job) { + $i = array_search($job, $this->jobs); + if ($i !== false) { + $this->last = $i; + } else { + $this->last = 0; + } + } + + /** + * get the id of the last ran job + * + * @return int + */ + public function getLastJob() { + return $this->last; + } + + /** + * set the lastRun of $job to now + * + * @param \OC\BackgroundJob\Job $job + */ + public function setLastRun($job) { + $job->setLastRun(time()); + } +} diff --git a/tests/lib/backgroundjob/queuedjob.php b/tests/lib/backgroundjob/queuedjob.php new file mode 100644 index 00000000000..62d631a3ef0 --- /dev/null +++ b/tests/lib/backgroundjob/queuedjob.php @@ -0,0 +1,42 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\BackgroundJob; + +class TestQueuedJob extends \OC\BackgroundJob\QueuedJob { + public function run() { + throw new JobRun(); //throw an exception so we can detect if this function is called + } +} + +class QueuedJob extends \PHPUnit_Framework_TestCase { + /** + * @var DummyJobList $jobList + */ + private $jobList; + /** + * @var \OC\BackgroundJob\TimedJob $job + */ + private $job; + + public function setup() { + $this->jobList = new DummyJobList(); + $this->job = new TestQueuedJob(); + $this->jobList->add($this->job); + } + + public function testJobShouldBeRemoved() { + try { + $this->assertTrue($this->jobList->has($this->job)); + $this->job->execute($this->jobList); + $this->fail("job should have been run"); + } catch (JobRun $e) { + $this->assertFalse($this->jobList->has($this->job)); + } + } +} diff --git a/tests/lib/backgroundjob/timedjob.php b/tests/lib/backgroundjob/timedjob.php new file mode 100644 index 00000000000..4147b82cbbe --- /dev/null +++ b/tests/lib/backgroundjob/timedjob.php @@ -0,0 +1,68 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\BackgroundJob; + +class TestTimedJob extends \OC\BackgroundJob\TimedJob { + public function __construct() { + $this->setInterval(10); + } + + public function run() { + throw new JobRun(); //throw an exception so we can detect if this function is called + } +} + +class TimedJob extends \PHPUnit_Framework_TestCase { + /** + * @var DummyJobList $jobList + */ + private $jobList; + /** + * @var \OC\BackgroundJob\TimedJob $job + */ + private $job; + + public function setup() { + $this->jobList = new DummyJobList(); + $this->job = new TestTimedJob(); + $this->jobList->add($this->job); + } + + public function testShouldRunAfterInterval() { + $this->job->setLastRun(time() - 12); + try { + $this->job->execute($this->jobList); + $this->fail("job should have run"); + } catch (JobRun $e) { + } + } + + public function testShouldNotRunWithinInterval() { + $this->job->setLastRun(time() - 5); + try { + $this->job->execute($this->jobList); + } catch (JobRun $e) { + $this->fail("job should not have run"); + } + } + + public function testShouldNotTwice() { + $this->job->setLastRun(time() - 15); + try { + $this->job->execute($this->jobList); + $this->fail("job should have run the first time"); + } catch (JobRun $e) { + try { + $this->job->execute($this->jobList); + } catch (JobRun $e) { + $this->fail("job should not have run the second time"); + } + } + } +} -- cgit v1.2.3 From db0ea9780b3056a9161205588e55c4808648ec0a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 21 Apr 2013 00:04:58 +0200 Subject: Add database table for backgroundjob --- db_structure.xml | 30 +++++++++++++++--------------- lib/util.php | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) (limited to 'lib') diff --git a/db_structure.xml b/db_structure.xml index dce90697b1c..3372be9f69f 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -843,7 +843,7 @@ - *dbprefix*queuedtasks + *dbprefix*jobs @@ -858,35 +858,35 @@ - app + class text true - 255 + 256 - klass + argument text true - 255 + 256 - method - text + last_run + timestamp - true - 255 + false - - parameters - text - true - 255 - + + job_class_index + + class + ascending + + diff --git a/lib/util.php b/lib/util.php index 38453c1ce92..b3fab5041f2 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,7 @@ class OC_Util { public static function getVersion() { // hint: We only can count up. Reset minor/patchlevel when // updating major/minor version number. - return array(5, 80, 02); + return array(5, 80, 03); } /** -- cgit v1.2.3 From 07f510692cfa6dfb8357b7eb66e897a03fd20e3f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 21 Apr 2013 00:08:55 +0200 Subject: Ensure we don't throw an exception before we can upgrade to the new backgroundjob system --- lib/base.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index fda65a221c7..631f9341546 100644 --- a/lib/base.php +++ b/lib/base.php @@ -561,7 +561,11 @@ class OC { */ public static function registerCacheHooks() { // register cache cleanup jobs - \OCP\BackgroundJob::registerJob('OC_Cache_FileGlobalGC'); + try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception + \OCP\BackgroundJob::registerJob('OC_Cache_FileGlobalGC'); + } catch (Exception $e) { + + } OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); } -- cgit v1.2.3 From 40de36a8f3dfba5dc6297adbd6c92d8b64c57190 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 21 Apr 2013 00:58:15 +0200 Subject: Try to supress pre-upgrade backgroundjob error --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 631f9341546..3568f48644c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -562,7 +562,7 @@ class OC { public static function registerCacheHooks() { // register cache cleanup jobs try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception - \OCP\BackgroundJob::registerJob('OC_Cache_FileGlobalGC'); + @\OCP\BackgroundJob::registerJob('OC_Cache_FileGlobalGC'); } catch (Exception $e) { } -- cgit v1.2.3 From f6808617b343c0deb953d6251208af716dcab083 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 22 Apr 2013 02:00:20 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/cy_GB.php | 68 +++++++++++++++++- apps/files_sharing/l10n/cy_GB.php | 3 + apps/files_trashbin/l10n/cy_GB.php | 6 ++ apps/user_ldap/l10n/cy_GB.php | 1 + l10n/cy_GB/files.po | 139 ++++++++++++++++++------------------ l10n/cy_GB/files_sharing.po | 13 ++-- l10n/cy_GB/files_trashbin.po | 16 ++--- l10n/cy_GB/lib.po | 85 +++++++++++----------- l10n/cy_GB/settings.po | 12 ++-- l10n/cy_GB/user_ldap.po | 6 +- l10n/ka_GE/core.po | 28 ++++---- l10n/ka_GE/files.po | 8 +-- l10n/ka_GE/files_trashbin.po | 6 +- l10n/ka_GE/settings.po | 16 ++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/cy_GB.php | 41 ++++++++++- settings/l10n/cy_GB.php | 4 ++ 27 files changed, 298 insertions(+), 176 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 2f19a87d577..f56d357362b 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -1,7 +1,73 @@ "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli", +"Could not move %s" => "Methwyd symud %s", +"Unable to rename file" => "Methu ailenwi ffeil", +"No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.", +"There is no error, the file uploaded with success" => "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML", +"The uploaded file was only partially uploaded" => "Dim ond yn rhannol y llwythwyd y ffeil i fyny", +"No file was uploaded" => "Ni lwythwyd ffeil i fyny", +"Missing a temporary folder" => "Plygell dros dro yn eisiau", +"Failed to write to disk" => "Methwyd ysgrifennu i'r ddisg", +"Not enough storage available" => "Dim digon o le storio ar gael", +"Invalid directory." => "Cyfeiriadur annilys.", +"Files" => "Ffeiliau", +"Delete permanently" => "Dileu'n barhaol", "Delete" => "Dileu", +"Rename" => "Ailenwi", +"Pending" => "I ddod", +"{new_name} already exists" => "{new_name} yn bodoli'n barod", +"replace" => "amnewid", +"suggest name" => "awgrymu enw", +"cancel" => "diddymu", +"replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}", +"undo" => "dadwneud", +"perform delete operation" => "cyflawni gweithred dileu", +"1 file uploading" => "1 ffeil yn llwytho i fyny", +"files uploading" => "ffeiliau'n llwytho i fyny", +"'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.", +"File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.", +"Your storage is full, files can not be updated or synced anymore!" => "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!", +"Your storage is almost full ({usedSpacePercent}%)" => "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Methu llwytho'ch ffeil i fyny gan ei fod yn gyferiadur neu'n cynnwys 0 beit", +"Not enough space available" => "Dim digon o le ar gael", +"Upload cancelled." => "Diddymwyd llwytho i fyny.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses.", +"URL cannot be empty." => "Does dim hawl cael URL gwag.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud", "Error" => "Gwall", +"Name" => "Enw", +"Size" => "Maint", +"Modified" => "Addaswyd", +"1 folder" => "1 blygell", +"{count} folders" => "{count} plygell", +"1 file" => "1 ffeil", +"{count} files" => "{count} ffeil", +"Upload" => "Llwytho i fyny", +"File handling" => "Trafod ffeiliau", +"Maximum upload size" => "Maint mwyaf llwytho i fyny", +"max. possible: " => "mwyaf. posib:", +"Needed for multi-file and folder downloads." => "Angen ar gyfer llwytho mwy nag un ffeil neu blygell i lawr yr un pryd.", +"Enable ZIP-download" => "Galluogi llwytho i lawr ZIP", +"0 is unlimited" => "0 yn ddiderfyn", +"Maximum input size for ZIP files" => "Maint mewnbynnu mwyaf ffeiliau ZIP", "Save" => "Cadw", +"New" => "Newydd", +"Text file" => "Ffeil destun", +"Folder" => "Plygell", +"From link" => "Dolen o", +"Deleted files" => "Ffeiliau ddilewyd", +"Cancel upload" => "Diddymu llwytho i fyny", +"You don’t have write permissions here." => "Nid oes gennych hawliau ysgrifennu fan hyn.", +"Nothing in here. Upload something!" => "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!", "Download" => "Llwytho i lawr", -"Unshare" => "Dad-rannu" +"Unshare" => "Dad-rannu", +"Upload too large" => "Maint llwytho i fyny'n rhy fawr", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn.", +"Files are being scanned, please wait." => "Arhoswch, mae ffeiliau'n cael eu sganio.", +"Current scanning" => "Sganio cyfredol", +"Upgrading filesystem cache..." => "Uwchraddio storfa system ffeiliau..." ); diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index 99efe9f734d..dec9af4ebe9 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,6 +1,9 @@ "Cyfrinair", "Submit" => "Cyflwyno", +"%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi", +"%s shared the file %s with you" => "Rhannodd %s ffeil %s â chi", "Download" => "Llwytho i lawr", +"No preview available for" => "Does dim rhagolwg ar gael ar gyfer", "web services under your control" => "gwasanaethau gwe a reolir gennych" ); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 2f170053379..0867879af2f 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -1,4 +1,10 @@ "Gwall", +"Delete permanently" => "Dileu'n barhaol", +"Name" => "Enw", +"1 folder" => "1 blygell", +"{count} folders" => "{count} plygell", +"1 file" => "1 ffeil", +"{count} files" => "{count} ffeil", "Delete" => "Dileu" ); diff --git a/apps/user_ldap/l10n/cy_GB.php b/apps/user_ldap/l10n/cy_GB.php index da107789fb8..335e2109c2d 100644 --- a/apps/user_ldap/l10n/cy_GB.php +++ b/apps/user_ldap/l10n/cy_GB.php @@ -1,4 +1,5 @@ "Methwyd dileu", "Password" => "Cyfrinair", "Help" => "Cymorth" ); diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 5a9688dff5e..21de4f158fa 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 17:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"PO-Revision-Date: 2013-04-21 20:50+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,67 +21,67 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Methwyd symud %s" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "Methu ailenwi ffeil" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "" +msgstr "Ni lwythwyd ffeil i fyny" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "" +msgstr "Plygell dros dro yn eisiau" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "" +msgstr "Methwyd ysgrifennu i'r ddisg" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Dim digon o le storio ar gael" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "Cyfeiriadur annilys." #: appinfo/app.php:12 msgid "Files" -msgstr "" +msgstr "Ffeiliau" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "Dileu'n barhaol" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" @@ -88,100 +89,100 @@ msgstr "Dileu" #: js/fileactions.js:193 msgid "Rename" -msgstr "" +msgstr "Ailenwi" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "" +msgstr "I ddod" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} yn bodoli'n barod" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "" +msgstr "amnewid" #: js/filelist.js:252 msgid "suggest name" -msgstr "" +msgstr "awgrymu enw" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "" +msgstr "diddymu" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "newidiwyd {new_name} yn lle {old_name}" #: js/filelist.js:299 msgid "undo" -msgstr "" +msgstr "dadwneud" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "cyflawni gweithred dileu" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "" +msgstr "1 ffeil yn llwytho i fyny" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "ffeiliau'n llwytho i fyny" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "Mae '.' yn enw ffeil annilys." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "Does dim hawl cael enw ffeil gwag." #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Methu llwytho'ch ffeil i fyny gan ei fod yn gyferiadur neu'n cynnwys 0 beit" #: js/files.js:272 msgid "Not enough space available" -msgstr "" +msgstr "Dim digon o le ar gael" #: js/files.js:312 msgid "Upload cancelled." -msgstr "" +msgstr "Diddymwyd llwytho i fyny." #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." #: js/files.js:481 msgid "URL cannot be empty." -msgstr "" +msgstr "Does dim hawl cael URL gwag." #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" @@ -189,63 +190,63 @@ msgstr "Gwall" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "" +msgstr "Enw" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "" +msgstr "Maint" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "" +msgstr "Addaswyd" #: js/files.js:893 msgid "1 folder" -msgstr "" +msgstr "1 blygell" #: js/files.js:895 msgid "{count} folders" -msgstr "" +msgstr "{count} plygell" #: js/files.js:903 msgid "1 file" -msgstr "" +msgstr "1 ffeil" #: js/files.js:905 msgid "{count} files" -msgstr "" +msgstr "{count} ffeil" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "" +msgstr "Llwytho i fyny" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Trafod ffeiliau" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Maint mwyaf llwytho i fyny" #: templates/admin.php:10 msgid "max. possible: " -msgstr "" +msgstr "mwyaf. posib:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Angen ar gyfer llwytho mwy nag un ffeil neu blygell i lawr yr un pryd." #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "" +msgstr "Galluogi llwytho i lawr ZIP" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "0 yn ddiderfyn" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Maint mewnbynnu mwyaf ffeiliau ZIP" #: templates/admin.php:26 msgid "Save" @@ -253,35 +254,35 @@ msgstr "Cadw" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Newydd" #: templates/index.php:10 msgid "Text file" -msgstr "" +msgstr "Ffeil destun" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "Plygell" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Dolen o" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Ffeiliau ddilewyd" #: templates/index.php:48 msgid "Cancel upload" -msgstr "" +msgstr "Diddymu llwytho i fyny" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" #: templates/index.php:76 msgid "Download" @@ -293,22 +294,22 @@ msgstr "Dad-rannu" #: templates/index.php:108 msgid "Upload too large" -msgstr "" +msgstr "Maint llwytho i fyny'n rhy fawr" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." #: templates/index.php:118 msgid "Current scanning" -msgstr "" +msgstr "Sganio cyfredol" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Uwchraddio storfa system ffeiliau..." diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 3b6f94ed700..01a7b7ff6e5 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 17:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 15:00+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,12 +29,12 @@ msgstr "Cyflwyno" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "Rhannodd %s blygell %s â chi" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "Rhannodd %s ffeil %s â chi" #: templates/public.php:19 templates/public.php:43 msgid "Download" @@ -41,7 +42,7 @@ msgstr "Llwytho i lawr" #: templates/public.php:40 msgid "No preview available for" -msgstr "" +msgstr "Does dim rhagolwg ar gael ar gyfer" #: templates/public.php:50 msgid "web services under your control" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 3797939ab12..047c05e7f7f 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 17:20+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 20:50+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" @@ -41,11 +41,11 @@ msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "Dileu'n barhaol" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "" +msgstr "Enw" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "" +msgstr "1 blygell" #: js/trash.js:186 msgid "{count} folders" -msgstr "" +msgstr "{count} plygell" #: js/trash.js:194 msgid "1 file" -msgstr "" +msgstr "1 ffeil" #: js/trash.js:196 msgid "{count} files" -msgstr "" +msgstr "{count} ffeil" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index ac97a0a0559..8a34f9cc6b7 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 19:21+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,91 +44,91 @@ msgstr "Gweinyddu" #: files.php:209 msgid "ZIP download is turned off." -msgstr "" +msgstr "Mae llwytho ZIP wedi ei ddiffodd." #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Mae angen llwytho ffeiliau i lawr fesul un." #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "" +msgstr "Nôl i Ffeiliau" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." #: helper.php:228 msgid "couldn't be determined" -msgstr "" +msgstr "methwyd pennu" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Nid yw'r pecyn wedi'i alluogi" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "" +msgstr "Gwall dilysu" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Ffeiliau" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Testun" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Delweddau" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "Creu enw defnyddiwr i'r gweinyddwr." #: setup.php:37 msgid "Set an admin password." -msgstr "" +msgstr "Gosod cyfrinair y gweinyddwr." #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s rhowch enw defnyddiwr y gronfa ddata." #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s rhowch enw'r gronfa ddata." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s gosod gwesteiwr y gronfa ddata." #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "Enw a/neu gyfrinair PostgreSQL annilys" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Enw a/neu gyfrinair Oracle annilys" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "Enw a/neu gyfrinair MySQL annilys" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -135,53 +136,53 @@ msgstr "" #: setup.php:614 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "Gwall DB: \"%s\"" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes." #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Gollwng y defnyddiwr hwn o MySQL" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli" #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Gollwng y defnyddiwr hwn o MySQL." #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" #: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Gwiriwch y canllawiau gosod eto." #: template.php:113 msgid "seconds ago" @@ -194,7 +195,7 @@ msgstr "1 munud yn ôl" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d munud yn ôl" #: template.php:116 msgid "1 hour ago" @@ -203,7 +204,7 @@ msgstr "1 awr yn ôl" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d awr yn ôl" #: template.php:118 msgid "today" @@ -216,7 +217,7 @@ msgstr "ddoe" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d diwrnod yn ôl" #: template.php:121 msgid "last month" @@ -225,7 +226,7 @@ msgstr "mis diwethaf" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d mis yn ôl" #: template.php:123 msgid "last year" @@ -238,17 +239,17 @@ msgstr "blwyddyn yn ôl" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s ar gael. Mwy o wybodaeth" #: updater.php:81 msgid "up to date" -msgstr "" +msgstr "cyfredol" #: updater.php:84 msgid "updates check is disabled" -msgstr "" +msgstr "gwirio am ddiweddariadau wedi'i analluogi" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Methu canfod categori \"%s\"" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index ebf288587e4..9612ffbaf6b 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-17 21:00+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 20:40+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" @@ -24,7 +24,7 @@ msgstr "" #: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "" +msgstr "Gwall dilysu" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" @@ -126,7 +126,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "" +msgstr "dadwneud" #: js/users.js:75 msgid "Unable to remove user" @@ -186,12 +186,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Gwiriwch y canllawiau gosod eto." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 9d260f933ea..60042b502e0 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 19:00+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" @@ -39,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "" +msgstr "Methwyd dileu" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ea4a85683bd..17e56b13b31 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+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,37 +521,37 @@ msgstr "დამატებითი ფუნქციები" msgid "Data folder" msgstr "მონაცემთა საქაღალდე" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "მონაცემთა ბაზის კონფიგურირება" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "გამოყენებული იქნება" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "მონაცემთა ბაზის მომხმარებელი" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "მონაცემთა ბაზის პაროლი" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "მონაცემთა ბაზის სახელი" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "მონაცემთა ბაზის ჰოსტი" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index d0e564db200..8750ca1cf19 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 3ed31fdce60..5938528d4d9 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 46d26abbd50..899e32ba84c 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+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" @@ -314,19 +314,19 @@ msgstr "ლოგი" msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "naklebi" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index f3720324816..1c2cb78e3ec 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index b5a4abe087d..4180cecc586 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 07d06862c97..8baa4270860 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 637fcc80990..ce05d5b69e9 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 9b56c7a7a3c..f5e298d7419 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 2eb16118a72..3a8c605b097 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 2364ade035a..b92c03f017a 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:03+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f8679b29f29..9ecbcec1fc1 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:03+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 361eb343cbf..94da630dd7f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 2239e05fc91..ed36a21e7b3 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 9b087b4a2ef..6cf88c15ccc 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -5,12 +5,51 @@ "Users" => "Defnyddwyr", "Apps" => "Pecynnau", "Admin" => "Gweinyddu", +"ZIP download is turned off." => "Mae llwytho ZIP wedi ei ddiffodd.", +"Files need to be downloaded one by one." => "Mae angen llwytho ffeiliau i lawr fesul un.", +"Back to Files" => "Nôl i Ffeiliau", +"Selected files too large to generate zip file." => "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip.", +"couldn't be determined" => "methwyd pennu", +"Application is not enabled" => "Nid yw'r pecyn wedi'i alluogi", +"Authentication error" => "Gwall dilysu", +"Token expired. Please reload page." => "Tocyn wedi dod i ben. Ail-lwythwch y dudalen.", +"Files" => "Ffeiliau", +"Text" => "Testun", +"Images" => "Delweddau", +"Set an admin username." => "Creu enw defnyddiwr i'r gweinyddwr.", +"Set an admin password." => "Gosod cyfrinair y gweinyddwr.", +"%s enter the database username." => "%s rhowch enw defnyddiwr y gronfa ddata.", +"%s enter the database name." => "%s rhowch enw'r gronfa ddata.", +"%s you may not use dots in the database name" => "%s does dim hawl defnyddio dot yn enw'r gronfa ddata", +"%s set the database host." => "%s gosod gwesteiwr y gronfa ddata.", +"PostgreSQL username and/or password not valid" => "Enw a/neu gyfrinair PostgreSQL annilys", +"You need to enter either an existing account or the administrator." => "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr.", +"Oracle username and/or password not valid" => "Enw a/neu gyfrinair Oracle annilys", +"MySQL username and/or password not valid" => "Enw a/neu gyfrinair MySQL annilys", +"DB Error: \"%s\"" => "Gwall DB: \"%s\"", +"Offending command was: \"%s\"" => "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes.", +"Drop this user from MySQL" => "Gollwng y defnyddiwr hwn o MySQL", +"MySQL user '%s'@'%%' already exists" => "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli", +"Drop this user from MySQL." => "Gollwng y defnyddiwr hwn o MySQL.", +"Offending command was: \"%s\", name: %s, password: %s" => "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s", +"MS SQL username and/or password not valid: %s" => "Enw a/neu gyfrinair MS SQL annilys: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", +"Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", "seconds ago" => "eiliad yn ôl", "1 minute ago" => "1 munud yn ôl", +"%d minutes ago" => "%d munud yn ôl", "1 hour ago" => "1 awr yn ôl", +"%d hours ago" => "%d awr yn ôl", "today" => "heddiw", "yesterday" => "ddoe", +"%d days ago" => "%d diwrnod yn ôl", "last month" => "mis diwethaf", +"%d months ago" => "%d mis yn ôl", "last year" => "y llynedd", -"years ago" => "blwyddyn yn ôl" +"years ago" => "blwyddyn yn ôl", +"%s is available. Get more information" => "%s ar gael. Mwy o wybodaeth", +"up to date" => "cyfredol", +"updates check is disabled" => "gwirio am ddiweddariadau wedi'i analluogi", +"Could not find category \"%s\"" => "Methu canfod categori \"%s\"" ); diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index 5aaa954463d..eea702bde98 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -1,8 +1,12 @@ "Gwall dilysu", "Invalid request" => "Cais annilys", "Error" => "Gwall", +"undo" => "dadwneud", "Delete" => "Dileu", "Security Warning" => "Rhybudd Diogelwch", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", +"Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", "Password" => "Cyfrinair", "New password" => "Cyfrinair newydd", "Other" => "Arall" -- cgit v1.2.3 From b24a673714289bf515c93999a1dd0dfc552eb7cc Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Mon, 22 Apr 2013 14:12:18 +0200 Subject: the owner uid is not interesting. We want to get all users who have access to the given item source, no matter from whom it was shared --- lib/public/share.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index acdf895c920..9fd8eb42fb7 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -150,10 +150,10 @@ class Share { FROM `*PREFIX*share` WHERE - item_source = ? AND share_type = ? AND uid_owner = ?' + item_source = ? AND share_type = ?' ); - $result = $query->execute( array( $source, self::SHARE_TYPE_USER, $user ) ); + $result = $query->execute( array( $source, self::SHARE_TYPE_USER ) ); if ( \OC_DB::isError( $result ) ) { \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); @@ -170,10 +170,10 @@ class Share { FROM `*PREFIX*share` WHERE - item_source = ? AND share_type = ? AND uid_owner = ?' + item_source = ? AND share_type = ?' ); - $result = $query->execute( array( $source, self::SHARE_TYPE_GROUP, $user ) ); + $result = $query->execute( array( $source, self::SHARE_TYPE_GROUP ) ); if ( \OC_DB::isError( $result ) ) { \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); @@ -190,10 +190,10 @@ class Share { FROM `*PREFIX*share` WHERE - item_source = ? AND share_type = ? AND uid_owner = ?' + item_source = ? AND share_type = ?' ); - $result = $query->execute( array( $source, self::SHARE_TYPE_LINK, $user ) ); + $result = $query->execute( array( $source, self::SHARE_TYPE_LINK ) ); if ( \OC_DB::isError( $result ) ) { \OC_Log::write( 'OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR ); -- cgit v1.2.3 From b5cb5dab513441b8c914aaa043921d0affae4604 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Mon, 22 Apr 2013 14:30:10 +0200 Subject: fix encryption to owncloud user for public link shares --- apps/files_encryption/lib/keymanager.php | 2 +- apps/files_encryption/lib/util.php | 2 +- lib/public/share.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index f23423062b9..6fb1f128b5e 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -54,7 +54,7 @@ class Keymanager { \OC_FileProxy::$enabled = false; - return $view->file_get_contents( '/public-keys/' . '/' . $userId . '.public.key' ); + return $view->file_get_contents( '/public-keys/' . $userId . '.public.key' ); \OC_FileProxy::$enabled = true; diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 1ba339c15df..143ba69f254 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -668,7 +668,7 @@ class Util { // public system user 'ownCloud' (for public shares) if ( $util->ready() - or $user == 'ownCloud' + or $user == 'owncloud' ) { // Construct array of ready UIDs for Keymanager{} diff --git a/lib/public/share.php b/lib/public/share.php index 9fd8eb42fb7..5cd556c6acb 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -200,7 +200,7 @@ class Share { } if ($result->fetchRow()) { - $shares[] = "ownCloud"; + $shares[] = "owncloud"; } } // Include owner in list of users, if requested -- cgit v1.2.3 From e63633b5f300a020872d11659874c39bda292a44 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Apr 2013 20:23:23 +0200 Subject: Don't try to use backgroundjobs before the installtion is done --- lib/base.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 3568f48644c..9246bbb5cd7 100644 --- a/lib/base.php +++ b/lib/base.php @@ -560,13 +560,15 @@ class OC { * register hooks for the cache */ public static function registerCacheHooks() { - // register cache cleanup jobs - try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception - @\OCP\BackgroundJob::registerJob('OC_Cache_FileGlobalGC'); - } catch (Exception $e) { + if (OC_Config::getValue('installed', false)) { //don't try to do this before we are properly setup + // register cache cleanup jobs + try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception + \OCP\BackgroundJob::registerJob('OC_Cache_FileGlobalGC'); + } catch (Exception $e) { + } + OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); } - OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); } /** -- cgit v1.2.3 From 5942d5aeac174db001d76bcad6768cfc6dd6768a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Apr 2013 20:32:40 +0200 Subject: Improve error message if user creation fails during setup --- lib/setup.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/setup.php b/lib/setup.php index 769fae11656..c330729298e 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -187,6 +187,7 @@ class OC_Setup { unlink("$datadir/owncloud.db"); } //in case of sqlite, we can always fill the database + error_log("creating sqlite db"); OC_DB::createDbFromStructure('db_structure.xml'); } @@ -195,7 +196,7 @@ class OC_Setup { OC_User::createUser($username, $password); } catch(Exception $exception) { - $error[] = $exception->getMessage(); + $error[] = 'Error while trying to create admin user: ' . $exception->getMessage(); } if(count($error) == 0) { -- cgit v1.2.3 From 7c1a4d2f57898d84d9ecdca47a72915b9edeb3f8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Apr 2013 20:34:00 +0200 Subject: Fix raiseError call in the MDB2 sqlite3 driver --- lib/MDB2/Driver/sqlite3.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index 8f057cfb6e8..aef0eab9bf1 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -892,10 +892,10 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common $connection = $this->getConnection(); if (PEAR::isError($connection)) { return $connection; - } + } $statement =$this->connection->prepare($query); if (!$statement) { - return $this->db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, + return $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, 'unable to prepare statement: '.$query); } -- cgit v1.2.3 From 3c90625ef114aa8005ab675c614dfeb919a6ac84 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Apr 2013 21:23:12 +0200 Subject: Files: also check if the source path is valid when doing a rename or copy operation --- lib/files/view.php | 38 +++++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 15 deletions(-) (limited to 'lib') diff --git a/lib/files/view.php b/lib/files/view.php index f607bb59aac..0da104c107e 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -245,13 +245,13 @@ class View { if (!is_null($mtime) and !is_numeric($mtime)) { $mtime = strtotime($mtime); } - + $hooks = array('touch'); - + if (!$this->file_exists($path)) { $hooks[] = 'write'; } - + return $this->basicOperation('touch', $path, $hooks, $mtime); } @@ -263,11 +263,12 @@ class View { if (is_resource($data)) { //not having to deal with streams in file_put_contents makes life easier $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path)); if (\OC_FileProxy::runPreProxies('file_put_contents', $absolutePath, $data) - && Filesystem::isValidPath($path)) { + && Filesystem::isValidPath($path) + ) { $path = $this->getRelativePath($absolutePath); $exists = $this->file_exists($path); $run = true; - if ($this->fakeRoot == Filesystem::getRoot() && ! Cache\Scanner::isIgnoredFile($path) ) { + if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isIgnoredFile($path)) { if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -295,7 +296,7 @@ class View { list ($count, $result) = \OC_Helper::streamCopy($data, $target); fclose($target); fclose($data); - if ($this->fakeRoot == Filesystem::getRoot() && ! Cache\Scanner::isIgnoredFile($path) ) { + if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isIgnoredFile($path)) { if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -335,8 +336,11 @@ class View { $postFix2 = (substr($path2, -1, 1) === '/') ? '/' : ''; $absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($path1)); $absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($path2)); - if (\OC_FileProxy::runPreProxies('rename', $absolutePath1, $absolutePath2) - and Filesystem::isValidPath($path2)) { + if ( + \OC_FileProxy::runPreProxies('rename', $absolutePath1, $absolutePath2) + and Filesystem::isValidPath($path2) + and Filesystem::isValidPath($path1) + ) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); @@ -396,7 +400,11 @@ class View { $postFix2 = (substr($path2, -1, 1) === '/') ? '/' : ''; $absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($path1)); $absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($path2)); - if (\OC_FileProxy::runPreProxies('copy', $absolutePath1, $absolutePath2) and Filesystem::isValidPath($path2)) { + if ( + \OC_FileProxy::runPreProxies('copy', $absolutePath1, $absolutePath2) + and Filesystem::isValidPath($path2) + and Filesystem::isValidPath($path1) + ) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); @@ -627,7 +635,7 @@ class View { private function runHooks($hooks, $path, $post = false) { $prefix = ($post) ? 'post_' : ''; $run = true; - if (Filesystem::$loaded and $this->fakeRoot == Filesystem::getRoot() && ! Cache\Scanner::isIgnoredFile($path) ) { + if (Filesystem::$loaded and $this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isIgnoredFile($path)) { foreach ($hooks as $hook) { if ($hook != 'read') { \OC_Hook::emit( @@ -931,11 +939,11 @@ class View { } /** - * Get the owner for a file or folder - * - * @param string $path - * @return string - */ + * Get the owner for a file or folder + * + * @param string $path + * @return string + */ public function getOwner($path) { return $this->basicOperation('getOwner', $path); } -- cgit v1.2.3 From 6e78c4fcc04820717afe5cdb55112d4a22d6f2dc Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 23 Apr 2013 00:26:40 +0300 Subject: Disallow URLs containing a @ --- lib/base.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 7b0967df9f9..a32ed460907 100644 --- a/lib/base.php +++ b/lib/base.php @@ -631,8 +631,13 @@ class OC { // Handle redirect URL for logged in users if (isset($_REQUEST['redirect_url']) && OC_User::isLoggedIn()) { $location = OC_Helper::makeURLAbsolute(urldecode($_REQUEST['redirect_url'])); - header('Location: ' . $location); - return; + + // Deny the redirect if the URL contains a @ + // This prevents unvalidated redirects like ?redirect_url=:user@domain.com + if (strpos($location, '@') === FALSE) { + header('Location: ' . $location); + return; + } } // Handle WebDAV if ($_SERVER['REQUEST_METHOD'] == 'PROPFIND') { -- cgit v1.2.3 From 05ab9d2de7f2c5181eda2174a2e2adb1cc214196 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 23 Apr 2013 02:00:31 +0200 Subject: [tx-robot] updated from transifex --- apps/files_external/l10n/tr.php | 2 ++ apps/files_trashbin/l10n/cy_GB.php | 10 +++++- apps/user_webdavauth/l10n/tr.php | 3 +- core/l10n/tr.php | 2 +- l10n/cs_CZ/core.po | 52 +++++++++++++-------------- l10n/cy_GB/files_trashbin.po | 23 ++++++------ l10n/es/core.po | 70 ++++++++++++++++++------------------- l10n/templates/core.pot | 20 +++++------ l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 40 ++++++++++----------- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 61 ++++++++++++++++---------------- l10n/tr/files_external.po | 17 ++++----- l10n/tr/lib.po | 65 +++++++++++++++++----------------- l10n/tr/user_ldap.po | 8 ++--- l10n/tr/user_webdavauth.po | 15 ++++---- lib/l10n/tr.php | 10 ++++++ 24 files changed, 221 insertions(+), 195 deletions(-) (limited to 'lib') diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 79dc3a85893..def2e35ebf5 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -4,6 +4,8 @@ "Grant access" => "Erişim sağlandı", "Please provide a valid Dropbox app key and secret." => "Lütfen Dropbox app key ve secret temin ediniz", "Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, ", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin.", "External Storage" => "Harici Depolama", "Folder name" => "Dizin ismi", "External storage" => "Harici Depolama", diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 0867879af2f..055e8d8654d 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -1,10 +1,18 @@ "Methwyd dileu %s yn barhaol", +"Couldn't restore %s" => "Methwyd adfer %s", +"perform restore operation" => "gweithrediad adfer", "Error" => "Gwall", +"delete file permanently" => "dileu ffeil yn barhaol", "Delete permanently" => "Dileu'n barhaol", "Name" => "Enw", +"Deleted" => "Wedi dileu", "1 folder" => "1 blygell", "{count} folders" => "{count} plygell", "1 file" => "1 ffeil", "{count} files" => "{count} ffeil", -"Delete" => "Dileu" +"Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", +"Restore" => "Adfer", +"Delete" => "Dileu", +"Deleted Files" => "Ffeiliau Ddilewyd" ); diff --git a/apps/user_webdavauth/l10n/tr.php b/apps/user_webdavauth/l10n/tr.php index 4a2f6d2403b..c495a39dce5 100644 --- a/apps/user_webdavauth/l10n/tr.php +++ b/apps/user_webdavauth/l10n/tr.php @@ -1,4 +1,5 @@ "WebDAV Kimlik doğrulaması", -"URL: http://" => "URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud deneyme kullanicin URLe gonderecek. Bu toplan cepaplama muayene edecek ve status kodeci HTTPden 401 ve 403 deneyi gecerli ve hepsi baska cevaplamari mantekli gibi yorumlacak. " ); diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 891cfb6b849..d6b25b40933 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -101,7 +101,7 @@ "Users" => "Kullanıcılar", "Apps" => "Uygulamalar", "Admin" => "Yönetici", -"Help" => "Yardı", +"Help" => "Yardım", "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", "Edit categories" => "Kategorileri düzenle", diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index d9d28259e33..0db794fe6ca 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jan Krejci , 2011. -# Martin , 2011-2012. -# Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012-2013. +# Jan Krejci , 2011 +# Martin , 2011-2012 +# Michal Hrušecký , 2012 +# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 11:21+0000\n" +"Last-Translator: cernydav \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" @@ -297,7 +297,7 @@ msgstr "Sdílet s odkazem" msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Heslo" @@ -413,7 +413,7 @@ msgid "Request failed!" msgstr "Požadavek selhal." #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Uživatelské jméno" @@ -523,37 +523,37 @@ msgstr "Pokročilé" msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Dokončit nastavení" @@ -565,33 +565,33 @@ msgstr "webové služby pod Vaší kontrolou" msgid "Log out" msgstr "Odhlásit se" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatické přihlášení odmítnuto." -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "zapamatovat" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Přihlásit" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternativní přihlášení" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 047c05e7f7f..5e9bb4d912a 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" -"PO-Revision-Date: 2013-04-21 20:50+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 21:10+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,16 +21,16 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Methwyd dileu %s yn barhaol" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Methwyd adfer %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "" +msgstr "gweithrediad adfer" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" @@ -37,7 +38,7 @@ msgstr "Gwall" #: js/trash.js:34 msgid "delete file permanently" -msgstr "" +msgstr "dileu ffeil yn barhaol" #: js/trash.js:121 msgid "Delete permanently" @@ -49,7 +50,7 @@ msgstr "Enw" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "Wedi dileu" #: js/trash.js:184 msgid "1 folder" @@ -69,11 +70,11 @@ msgstr "{count} ffeil" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "Adfer" #: templates/index.php:30 templates/index.php:31 msgid "Delete" @@ -81,4 +82,4 @@ msgstr "Dileu" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Ffeiliau Ddilewyd" diff --git a/l10n/es/core.po b/l10n/es/core.po index 4eaac95f2cf..79e7618ee72 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -3,26 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Felix Liberio , 2013. -# , 2012. -# Javier Llorente , 2012. -# , 2013. -# , 2011-2013. -# , 2012. -# oSiNaReF <>, 2012. -# Raul Fernandez Garcia , 2012. -# , 2012. -# , 2011. -# Rubén Trujillo , 2012. -# , 2011-2012. -# , 2012. -# Vladimir Martinez Sierra , 2013. +# felix.liberio , 2013 +# Javierkaiser , 2012 +# Javier Llorente , 2012 +# juanman , 2013 +# juanman , 2011-2013 +# malmirk , 2012 +# oSiNaReF <>, 2012 +# Raul Fernandez Garcia , 2012 +# rodrigo.calvo , 2012 +# Romain DEP. , 2011 +# Rubén Trujillo , 2012 +# xsergiolpx , 2011-2012 +# scambra , 2012 +# msvladimir , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 18:40+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" @@ -307,7 +307,7 @@ msgstr "Compartir con enlace" msgid "Password protect" msgstr "Protegido por contraseña" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Contraseña" @@ -423,7 +423,7 @@ msgid "Request failed!" msgstr "Pedido fallado!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nombre de usuario" @@ -533,37 +533,37 @@ msgstr "Avanzado" msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Completar la instalación" @@ -575,33 +575,33 @@ msgstr "servicios web bajo tu control" msgid "Log out" msgstr "Salir" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "¡Inicio de sesión automático rechazado!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "recuérdame" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Nombre de usuarios alternativos" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 30b3177b596..35b43eb24d1 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -293,7 +293,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "" @@ -409,7 +409,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "" @@ -561,33 +561,33 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 1c2cb78e3ec..89a7db16078 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4180cecc586..474450fd7d3 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 8baa4270860..55b915b8c19 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index ce05d5b69e9..6da4a5a9c1b 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index f5e298d7419..6f7cd8036e6 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 3a8c605b097..40c2e572fbb 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index b92c03f017a..cf80a35b290 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 -#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:854 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:855 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 9ecbcec1fc1..1b32c3ac1bd 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 94da630dd7f..bdb389c0b30 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index ed36a21e7b3..98ae8159bdf 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 78704bd88eb..943cc42487d 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Aranel Surion , 2011, 2012. -# Caner Başaran , 2012. -# H.Oktay Tefenli , 2013. -# , 2012. -# ismail yenigul , 2013. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# Aranel Surion , 2011, 2012 +# Caner Başaran , 2012 +# otefenli , 2013 +# ifthenelse , 2013 +# alpere , 2012 +# ismail yenigül , 2013 +# Necdet Yücel , 2012 +# atakan96 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 07:40+0000\n" +"Last-Translator: ifthenelse \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" @@ -300,7 +301,7 @@ msgstr "Bağlantı ile paylaş" msgid "Password protect" msgstr "Şifre korunması" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Parola" @@ -416,7 +417,7 @@ msgid "Request failed!" msgstr "İstek reddedildi!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Kullanıcı adı" @@ -458,7 +459,7 @@ msgstr "Yönetici" #: strings.php:9 msgid "Help" -msgstr "Yardı" +msgstr "Yardım" #: templates/403.php:12 msgid "Access forbidden" @@ -526,37 +527,37 @@ msgstr "Gelişmiş" msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Kurulumu tamamla" @@ -568,33 +569,33 @@ msgstr "kontrolünüzdeki web servisleri" msgid "Log out" msgstr "Çıkış yap" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Otomatik oturum açma reddedildi!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske girebilir." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Hesabınızı korumak için lütfen parolanızı değiştirin." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "hatırla" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Giriş yap" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternatif Girişler" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index f539b2414c8..a52ac427e9e 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Caner Başaran , 2013. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# Caner Başaran , 2013 +# Necdet Yücel , 2012 +# atakan96 , 2013 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 15:10+0000\n" +"Last-Translator: KAT.RAT12 \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" @@ -44,14 +45,14 @@ msgstr "Google Drive depo yapılandırma hatası" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, " #: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index d9fca3e2a1b..6f7a085617e 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -5,13 +5,14 @@ # Translators: # ismail yenigül , 2013 # Necdet Yücel , 2012 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 16:03+0000\n" +"Last-Translator: KAT.RAT12 \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" @@ -89,11 +90,11 @@ msgstr "Resimler" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "Bir adi kullanici vermek. " #: setup.php:37 msgid "Set an admin password." -msgstr "" +msgstr "Parola yonetici birlemek. " #: setup.php:55 #, php-format @@ -115,72 +116,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Bir konto veya kullanici birlemek ihtiyacin. " -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "DB Hata: ''%s''" -#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 -#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Komut rahasiz ''%s''. " -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL kullanici '%s @local host zatan var. " -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Bu kullanici MySQLden list disari koymak. " -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL kullanici '%s @ % % zaten var (zaten yazili)" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:854 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: setup.php:854 +#: setup.php:855 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 8f3ef99b518..fa5df1f4636 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# Necdet Yücel , 2012 +# atakan96 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 07:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index 5c02bf6a899..a5b58c7648f 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# alpere , 2012 +# Necdet Yücel , 2012 +# atakan96 , 2013 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 20:10+0000\n" +"Last-Translator: KAT.RAT12 \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" @@ -33,4 +34,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud deneyme kullanicin URLe gonderecek. Bu toplan cepaplama muayene edecek ve status kodeci HTTPden 401 ve 403 deneyi gecerli ve hepsi baska cevaplamari mantekli gibi yorumlacak. " diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 84278f6d4c4..4a8292989ab 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -16,6 +16,16 @@ "Files" => "Dosyalar", "Text" => "Metin", "Images" => "Resimler", +"Set an admin username." => "Bir adi kullanici vermek. ", +"Set an admin password." => "Parola yonetici birlemek. ", +"PostgreSQL username and/or password not valid" => "PostgreSQL adi kullanici ve/veya parola yasal degildir. ", +"You need to enter either an existing account or the administrator." => "Bir konto veya kullanici birlemek ihtiyacin. ", +"Oracle username and/or password not valid" => "Adi klullanici ve/veya parola Oracle mantikli değildir. ", +"DB Error: \"%s\"" => "DB Hata: ''%s''", +"Offending command was: \"%s\"" => "Komut rahasiz ''%s''. ", +"MySQL user '%s'@'localhost' exists already." => "MySQL kullanici '%s @local host zatan var. ", +"Drop this user from MySQL" => "Bu kullanici MySQLden list disari koymak. ", +"MySQL user '%s'@'%%' already exists" => "MySQL kullanici '%s @ % % zaten var (zaten yazili)", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "seconds ago" => "saniye önce", -- cgit v1.2.3 From f1a63254fbaaf3c82f7f921ca7a9f8e68b122212 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Tue, 23 Apr 2013 11:06:28 +0200 Subject: Fix ugly error style on install By initializing the template engine first we can show the 'Can't write into config directory 'config'' error in a nice way instead of plain unstyled HTML. --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 7b0967df9f9..852d3a53a0a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -467,11 +467,11 @@ class OC { stream_wrapper_register('close', 'OC\Files\Stream\Close'); stream_wrapper_register('oc', 'OC\Files\Stream\OC'); + self::initTemplateEngine(); self::checkConfig(); self::checkInstalled(); self::checkSSL(); self::initSession(); - self::initTemplateEngine(); $errors = OC_Util::checkServer(); if (count($errors) > 0) { -- cgit v1.2.3 From 25ff32db6bec0992b0fac18b04345aa5e99f4ea1 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Tue, 23 Apr 2013 22:20:31 +0200 Subject: Added post proxy for getFileInfo. This is needed for WebDAV and FileSize @samtuke and @schiesbn you guys know a better solution? --- lib/files/view.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/files/view.php b/lib/files/view.php index f607bb59aac..bd4812f8f81 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -724,6 +724,9 @@ class View { $data['permissions'] = $permissions; } } + + $data = \OC_FileProxy::runPostProxies('getFileInfo', $path, $data); + return $data; } -- cgit v1.2.3 From d209cac2a14dd7c7ad2ca9f7df048227c9e5cdc0 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 23 Apr 2013 23:46:56 +0200 Subject: lastRun is not a method --- lib/backgroundjob/job.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/backgroundjob/job.php b/lib/backgroundjob/job.php index ff647c7329b..aab3b8e4a64 100644 --- a/lib/backgroundjob/job.php +++ b/lib/backgroundjob/job.php @@ -40,6 +40,6 @@ abstract class Job { } public function getLastRun() { - return $this->lastRun(); + return $this->lastRun; } } -- cgit v1.2.3 From 7eb6cc62f8bef131a570ee47972d61460c8c9354 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Tue, 23 Apr 2013 23:03:39 +0100 Subject: Make class properties protected instead of private to allow subclassing --- lib/ocs/result.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/ocs/result.php b/lib/ocs/result.php index 8ab378d79c5..729c39056d9 100644 --- a/lib/ocs/result.php +++ b/lib/ocs/result.php @@ -22,7 +22,7 @@ class OC_OCS_Result{ - private $data, $message, $statusCode, $items, $perPage; + protected $data, $message, $statusCode, $items, $perPage; /** * create the OCS_Result object -- cgit v1.2.3 From b98b56e4a8c92d56969806f62390d57d5986855a Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 24 Apr 2013 13:45:40 +0200 Subject: check if there is a default/ folder in the theme directory if no theme exists --- lib/helper.php | 2 +- lib/template.php | 2 +- lib/templatelayout.php | 4 ++-- lib/util.php | 21 +++++++++++++++++++++ 4 files changed, 25 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/helper.php b/lib/helper.php index 73484ad913f..2ba70294f4b 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -159,7 +159,7 @@ class OC_Helper { */ public static function imagePath( $app, $image ) { // Read the selected theme from the config file - $theme=OC_Config::getValue( "theme" ); + $theme = OC_Util::getTheme(); // Check if the app is in the app folder if( file_exists( OC::$SERVERROOT."/themes/$theme/apps/$app/img/$image" )) { diff --git a/lib/template.php b/lib/template.php index 434c1e9e990..f007618ff19 100644 --- a/lib/template.php +++ b/lib/template.php @@ -272,7 +272,7 @@ class OC_Template{ protected function findTemplate($name) { // Read the selected theme from the config file - $theme=OC_Config::getValue( "theme" ); + $theme = OC_Util::getTheme(); // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 69bebac0503..3c496f56e41 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -103,7 +103,7 @@ class OC_TemplateLayout extends OC_Template { static public function findStylesheetFiles($styles) { // Read the selected theme from the config file - $theme=OC_Config::getValue( 'theme' ); + $theme = OC_Util::getTheme(); // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); @@ -162,7 +162,7 @@ class OC_TemplateLayout extends OC_Template { static public function findJavascriptFiles($scripts) { // Read the selected theme from the config file - $theme=OC_Config::getValue( 'theme' ); + $theme = OC_Util::getTheme(); // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); diff --git a/lib/util.php b/lib/util.php index 38453c1ce92..987a5782779 100755 --- a/lib/util.php +++ b/lib/util.php @@ -795,4 +795,25 @@ class OC_Util { return (substr(PHP_OS, 0, 3) === "WIN"); } + + /** + * Handles the case that there may not be a theme, then check if a "default" + * theme exists and take that one + * @return string the theme + */ + public static function getTheme() { + $theme = OC_Config::getValue("theme"); + + if(is_null($theme)) { + + if(is_dir(__DIR__ . '/../themes/default')) { + $theme = 'default'; + } + + } + + return $theme; + } + + } -- cgit v1.2.3 From a8075943c3f425f3871faca9953bed3503573ef5 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 24 Apr 2013 14:17:52 +0200 Subject: use variable instead of relative path to file --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 987a5782779..810593358a5 100755 --- a/lib/util.php +++ b/lib/util.php @@ -806,7 +806,7 @@ class OC_Util { if(is_null($theme)) { - if(is_dir(__DIR__ . '/../themes/default')) { + if(is_dir(OC::$SERVERROOT . '/themes/default')) { $theme = 'default'; } -- cgit v1.2.3 From 117412272e34f73b9e9f69e1261b0d353dc12393 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 24 Apr 2013 14:06:24 +0200 Subject: Update documentation for \OCP\BackgroundJob --- lib/public/backgroundjob.php | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) (limited to 'lib') diff --git a/lib/public/backgroundjob.php b/lib/public/backgroundjob.php index 785a9408aa5..9a58bd39658 100644 --- a/lib/public/backgroundjob.php +++ b/lib/public/backgroundjob.php @@ -29,21 +29,16 @@ namespace OCP; /** - * This class provides functions to manage backgroundjobs in ownCloud + * This class provides functions to register backgroundjobs in ownCloud * - * There are two kind of background jobs in ownCloud: regular tasks and - * queued tasks. + * To create a new backgroundjob create a new class that inharits from either \OC\BackgroundJob\Job, + * \OC\BackgroundJob\QueuedJob or \OC\BackgroundJob\TimedJob and register it using + * \OCP\BackgroundJob->registerJob($job, $argument), $argument will be passed to the run() function + * of the job when the job is executed. * - * Regular tasks have to be registered in appinfo.php and - * will run on a regular base. Fetching news could be a task that should run - * frequently. - * - * Queued tasks have to be registered each time you want to execute them. - * An example of the queued task would be the creation of the thumbnail. As - * soon as the user uploads a picture the gallery app registers the queued - * task "create thumbnail" and saves the path in the parameter instead of doing - * the work right away. This makes the app more responsive. As soon as the task - * is done it will be deleted from the list. + * A regular Job will be executed every time cron.php is run, a QueuedJob will only run once and a TimedJob + * will only run at a specific interval which is to be specified in the constructor of the job by calling + * $this->setInterval($interval) with $interval in seconds. */ class BackgroundJob { /** @@ -77,5 +72,4 @@ class BackgroundJob { $jobList = new \OC\BackgroundJob\JobList(); $jobList->add($job, $argument); } - } -- cgit v1.2.3 From b31dc10c3c4b73b08c926751effbade601c7cab8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 24 Apr 2013 14:38:41 +0200 Subject: Add support for the old public backgroundjob api --- lib/backgroundjob/job.php | 4 + lib/backgroundjob/joblist.php | 14 +++ lib/public/backgroundjob.php | 180 +++++++++++++++++++++++++++---- tests/lib/backgroundjob/dummyjoblist.php | 13 +++ 4 files changed, 188 insertions(+), 23 deletions(-) (limited to 'lib') diff --git a/lib/backgroundjob/job.php b/lib/backgroundjob/job.php index aab3b8e4a64..49fbffbd684 100644 --- a/lib/backgroundjob/job.php +++ b/lib/backgroundjob/job.php @@ -42,4 +42,8 @@ abstract class Job { public function getLastRun() { return $this->lastRun; } + + public function getArgument() { + return $this->argument; + } } diff --git a/lib/backgroundjob/joblist.php b/lib/backgroundjob/joblist.php index 7471f84153b..cc803dd9b5f 100644 --- a/lib/backgroundjob/joblist.php +++ b/lib/backgroundjob/joblist.php @@ -110,6 +110,20 @@ class JobList { } } + /** + * @param int $id + * @return Job + */ + public function getById($id) { + $query = \OC_DB::prepare('SELECT `id`, `class`, `last_run`, `argument` FROM `*PREFIX*jobs` WHERE `id` = ?'); + $result = $query->execute(array($id)); + if ($row = $result->fetchRow()) { + return $this->buildJob($row); + } else { + return null; + } + } + /** * get the job object from a row in the db * diff --git a/lib/public/backgroundjob.php b/lib/public/backgroundjob.php index 9a58bd39658..aa6c59067e0 100644 --- a/lib/public/backgroundjob.php +++ b/lib/public/backgroundjob.php @@ -1,24 +1,24 @@ . -* -*/ + * ownCloud + * + * @author Jakob Sack + * @copyright 2012 Jakob Sack owncloud@jakobsack.de + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ /** * Public interface of ownCloud forbackground jobs. @@ -28,6 +28,8 @@ // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; +use \OC\BackgroundJob\JobList; + /** * This class provides functions to register backgroundjobs in ownCloud * @@ -60,16 +62,148 @@ class BackgroundJob { * This method sets the execution type of the background jobs. Possible types * are "none", "ajax", "webcron", "cron" */ - public static function setExecutionType( $type ) { - return \OC_BackgroundJob::setExecutionType( $type ); + public static function setExecutionType($type) { + return \OC_BackgroundJob::setExecutionType($type); } /** * @param \OC\BackgroundJob\Job|string $job * @param mixed $argument */ - public static function registerJob($job, $argument = null){ - $jobList = new \OC\BackgroundJob\JobList(); + public static function registerJob($job, $argument = null) { + $jobList = new JobList(); $jobList->add($job, $argument); } + + /** + * @deprecated + * @brief creates a regular task + * @param string $klass class name + * @param string $method method name + * @return true + */ + public static function addRegularTask($klass, $method) { + self::registerJob('RegularLegacyJob', array($klass, $method)); + return true; + } + + /** + * @deprecated + * @brief gets all regular tasks + * @return associative array + * + * key is string "$klass-$method", value is array( $klass, $method ) + */ + static public function allRegularTasks() { + $jobList = new JobList(); + $allJobs = $jobList->getAll(); + $regularJobs = array(); + foreach ($allJobs as $job) { + if ($job instanceof RegularLegacyJob) { + $key = implode('-', $job->getArgument()); + $regularJobs[$key] = $job->getArgument(); + } + } + return $regularJobs; + } + + /** + * @deprecated + * @brief Gets one queued task + * @param int $id ID of the task + * @return associative array + */ + public static function findQueuedTask($id) { + $jobList = new JobList(); + return $jobList->getById($id); + } + + /** + * @deprecated + * @brief Gets all queued tasks + * @return array with associative arrays + */ + public static function allQueuedTasks() { + $jobList = new JobList(); + $allJobs = $jobList->getAll(); + $queuedJobs = array(); + foreach ($allJobs as $job) { + if ($job instanceof QueuedLegacyJob) { + $queuedJob = $job->getArgument(); + $queuedJob['id'] = $job->getId(); + $queuedJobs[] = $queuedJob; + } + } + return $queuedJobs; + } + + /** + * @deprecated + * @brief Gets all queued tasks of a specific app + * @param string $app app name + * @return array with associative arrays + */ + public static function queuedTaskWhereAppIs($app) { + $jobList = new JobList(); + $allJobs = $jobList->getAll(); + $queuedJobs = array(); + foreach ($allJobs as $job) { + if ($job instanceof QueuedLegacyJob) { + $queuedJob = $job->getArgument(); + $queuedJob['id'] = $job->getId(); + if ($queuedJob['app'] === $app) { + $queuedJobs[] = $queuedJob; + } + } + } + return $queuedJobs; + } + + /** + * @deprecated + * @brief queues a task + * @param string $app app name + * @param string $class class name + * @param string $method method name + * @param string $parameters all useful data as text + * @return int id of task + */ + public static function addQueuedTask($app, $class, $method, $parameters) { + self::registerJob('QueuedLegacyJob', array('app' => $app, 'klass' => $class, 'method' => $method, 'parameters' => $parameters)); + return true; + } + + /** + * @deprecated + * @brief deletes a queued task + * @param int $id id of task + * @return bool + * + * Deletes a report + */ + public static function deleteQueuedTask($id) { + $jobList = new JobList(); + $job = $jobList->getById($id); + if ($job) { + $jobList->remove($job); + } + } +} + +/** + * Wrappers to support old versions of the BackgroundJob api + */ +class RegularLegacyJob extends \OC\BackgroundJob\Job { + public function run($argument) { + call_user_func($argument); + } +} + +class QueuedLegacyJob extends \OC\BackgroundJob\QueuedJob { + public function run($argument) { + $class = $argument['klass']; + $method = $argument['method']; + $parameters = $argument['parameters']; + call_user_func(array($class, $method), $parameters); + } } diff --git a/tests/lib/backgroundjob/dummyjoblist.php b/tests/lib/backgroundjob/dummyjoblist.php index 833607c15c2..d91d6b344b5 100644 --- a/tests/lib/backgroundjob/dummyjoblist.php +++ b/tests/lib/backgroundjob/dummyjoblist.php @@ -98,6 +98,19 @@ class DummyJobList extends \OC\BackgroundJob\JobList { } } + /** + * @param int $id + * @return Job + */ + public function getById($id) { + foreach ($this->jobs as $job) { + if ($job->getId() === $id) { + return $job; + } + } + return null; + } + /** * get the id of the last ran job * -- cgit v1.2.3 From 03aa86d8a6e6631547b72f0f01a2394784900db2 Mon Sep 17 00:00:00 2001 From: Florian Scholz Date: Wed, 24 Apr 2013 14:45:40 +0200 Subject: - xframe restriction configurable now --- config/config.sample.php | 4 ++++ lib/template.php | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/config/config.sample.php b/config/config.sample.php index b70b3cf533d..a3b7cbaca46 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -148,6 +148,10 @@ $CONFIG = array( /* Custom CSP policy, changing this will overwrite the standard policy */ "custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:", +/* Enable/disable X-Frame-Restriction */ +/* HIGH SECURITY RISK IF DISABLED*/ +"xframe_restriction" => true, + /* The directory where the user data is stored, default to data in the owncloud * directory. The sqlite database is also stored here, when sqlite is used. */ diff --git a/lib/template.php b/lib/template.php index 434c1e9e990..dd5542e099a 100644 --- a/lib/template.php +++ b/lib/template.php @@ -186,10 +186,15 @@ class OC_Template{ $this->l10n = OC_L10N::get($parts[0]); // Some headers to enhance security - header('X-Frame-Options: Sameorigin'); // Disallow iFraming from other domains header('X-XSS-Protection: 1; mode=block'); // Enforce browser based XSS filters header('X-Content-Type-Options: nosniff'); // Disable sniffing the content type for IE + // iFrame Restriction Policy + $xFramePolicy = OC_Config::getValue('xframe_restriction', true); + if($xFramePolicy) { + header('X-Frame-Options: Sameorigin'); // Disallow iFraming from other domains + } + // Content Security Policy // If you change the standard policy, please also change it in config.sample.php $policy = OC_Config::getValue('custom_csp_policy', -- cgit v1.2.3 From 6ac2fdf44b636243630febd676090e4f6d138d69 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Wed, 24 Apr 2013 15:11:58 +0200 Subject: sync parameters in setup.php with the ones in the actual .htaccess --- lib/setup.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') diff --git a/lib/setup.php b/lib/setup.php index c330729298e..d1197b3ebf3 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -828,6 +828,10 @@ class OC_Setup { $content.= "AddType image/svg+xml svg svgz\n"; $content.= "AddEncoding gzip svgz\n"; $content.= "\n"; + $content.= "\n"; + $content.= "DirectoryIndex index.php index.html\n"; + $content.= "\n"; + $content.= "AddDefaultCharset utf-8\n"; $content.= "Options -Indexes\n"; @file_put_contents(OC::$SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it -- cgit v1.2.3 From 4f96d7fb85fcde44bed5317c7cf42843d8085534 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 24 Apr 2013 16:45:51 +0200 Subject: Allow loading of external media ressources --- config/config.sample.php | 2 +- lib/template.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/config/config.sample.php b/config/config.sample.php index b70b3cf533d..d85a518634f 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -146,7 +146,7 @@ $CONFIG = array( "remember_login_cookie_lifetime" => 60*60*24*15, /* Custom CSP policy, changing this will overwrite the standard policy */ -"custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:", +"custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:; media-src *", /* The directory where the user data is stored, default to data in the owncloud * directory. The sqlite database is also stored here, when sqlite is used. diff --git a/lib/template.php b/lib/template.php index f007618ff19..781e43d2dbd 100644 --- a/lib/template.php +++ b/lib/template.php @@ -198,7 +198,8 @@ class OC_Template{ .'style-src \'self\' \'unsafe-inline\'; ' .'frame-src *; ' .'img-src *; ' - .'font-src \'self\' data:'); + .'font-src \'self\' data:; ' + .'media-src *'); header('Content-Security-Policy:'.$policy); // Standard $this->findTemplate($name); -- cgit v1.2.3 From 3d42d49d140534fd62c926c64bc0120094aade1c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 24 Apr 2013 16:54:34 +0200 Subject: Add markdown to mimetype list --- lib/mimetypes.list.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/mimetypes.list.php b/lib/mimetypes.list.php index 86ce9c6c237..9135a7e3af2 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -98,5 +98,9 @@ return array( 'epub' => 'application/epub+zip', 'mobi' => 'application/x-mobipocket-ebook', 'exe' => 'application', - 'msi' => 'application' + 'msi' => 'application', + 'md' => 'text/markdown', + 'markdown' => 'text/markdown', + 'mdown' => 'text/markdown', + 'mdwn' => 'text/markdown' ); -- cgit v1.2.3 From d41b6007254fcd5edaa7c4001a11cd8d2597ec9a Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 24 Apr 2013 18:47:38 +0200 Subject: Add an update notification on every page for admin users --- core/css/styles.css | 3 +++ core/templates/layout.user.php | 3 +++ lib/templatelayout.php | 14 +++++++++++++ lib/updater.php | 46 +++++++++++------------------------------- settings/templates/admin.php | 3 +-- 5 files changed, 33 insertions(+), 36 deletions(-) (limited to 'lib') diff --git a/core/css/styles.css b/core/css/styles.css index 4dfa3f64a37..49cdc8836f8 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -345,6 +345,9 @@ li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; bac #notification { z-index:101; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position: relative; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } #notification span { cursor:pointer; font-weight:bold; margin-left:1em; } +#update-notification { z-index:101; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position: relative; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } +#update-notification span { cursor:pointer; font-weight:bold; margin-left:1em; } + tr .action:not(.permanent), .selectedActions a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; } tr:hover .action, tr .action.permanent, .selectedActions a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; } tr .action { width:16px; height:16px; } diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index cfe0a551943..12509019b04 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -32,6 +32,9 @@
a",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="
t
",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="
",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null)}),n=s=l=u=r=o=null,t}({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s; +if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=x(this),l=t,u=e.match(T)||[];while(o=u[a++])l=r?l:!s.hasClass(o),s[l?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/\s*$/g,At={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:x.support.htmlSerialize?[0,"",""]:[1,"X
","
"]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?""!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle);u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}) +}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("