From 41f7eb948ad09632764cd8503dcec6c5fa6093cd Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 9 Apr 2013 20:51:43 +0200 Subject: [PATCH 001/145] Move start of the maintenance mode to the ajax call Make sure the update page is shown in a browser. And not an ajax request --- core/ajax/update.php | 3 +++ lib/base.php | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/core/ajax/update.php b/core/ajax/update.php index 6015a901eb..9d0c6f89f1 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -5,6 +5,8 @@ require_once '../../lib/base.php'; if (OC::checkUpgrade(false)) { \OC_DB::enableCaching(false); + OC_Config::setValue('maintenance', true); + OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, OC_Log::WARN); $updateEventSource = new OC_EventSource(); $watcher = new UpdateWatcher($updateEventSource); OC_Hook::connect('update', 'success', $watcher, 'success'); @@ -99,6 +101,7 @@ class UpdateWatcher { OC_Util::obEnd(); $this->eventSource->send('failure', $message); $this->eventSource->close(); + OC_Config::setValue('maintenance', false); die(); } diff --git a/lib/base.php b/lib/base.php index 8633ae9b63..1e4bbff49c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -282,10 +282,6 @@ class OC { $currentVersion = implode('.', OC_Util::getVersion()); if (version_compare($currentVersion, $installedVersion, '>')) { if ($showTemplate && !OC_Config::getValue('maintenance', false)) { - OC_Config::setValue('maintenance', true); - OC_Log::write('core', - 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, - OC_Log::WARN); $minimizerCSS = new OC_Minimizer_CSS(); $minimizerCSS->clearCache(); $minimizerJS = new OC_Minimizer_JS(); From ff64c87adbadd1791f08a53277eafdb2d58079d5 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 9 Apr 2013 21:05:11 +0200 Subject: [PATCH 002/145] Connect watcher failure function to the failure signal --- core/ajax/update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ajax/update.php b/core/ajax/update.php index 9d0c6f89f1..af469237a1 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -11,7 +11,7 @@ if (OC::checkUpgrade(false)) { $watcher = new UpdateWatcher($updateEventSource); OC_Hook::connect('update', 'success', $watcher, 'success'); OC_Hook::connect('update', 'error', $watcher, 'error'); - OC_Hook::connect('update', 'error', $watcher, 'failure'); + OC_Hook::connect('update', 'failure', $watcher, 'failure'); $watcher->success('Turned on maintenance mode'); try { $result = OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/db_structure.xml'); From 460f827f7e5d80cfa56b70536e86ac0aea0cd448 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 16 Apr 2013 08:07:44 +0200 Subject: [PATCH 003/145] Also check for needed upgrade in the Sabre Maintenance connector --- lib/connector/sabre/maintenanceplugin.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/connector/sabre/maintenanceplugin.php b/lib/connector/sabre/maintenanceplugin.php index 329fa4443a..2eda269afc 100644 --- a/lib/connector/sabre/maintenanceplugin.php +++ b/lib/connector/sabre/maintenanceplugin.php @@ -50,6 +50,9 @@ class OC_Connector_Sabre_MaintenancePlugin extends Sabre_DAV_ServerPlugin if (OC_Config::getValue('maintenance', false)) { throw new Sabre_DAV_Exception_ServiceUnavailable(); } + if (OC::checkUpgrade(false)) { + throw new Sabre_DAV_Exception_ServiceUnavailable('Upgrade needed'); + } return true; } From 6082a09e6251ba19aa281c4bc8c2c99438df6328 Mon Sep 17 00:00:00 2001 From: Bastien Ho Date: Fri, 10 May 2013 11:12:42 +0200 Subject: [PATCH 004/145] Fix inexisting trashbin's sub-folders --- apps/files_trashbin/lib/trash.php | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 88c71a75ab..210f72da63 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -39,12 +39,22 @@ class Trashbin { $view = new \OC\Files\View('/'. $user); if (!$view->is_dir('files_trashbin')) { $view->mkdir('files_trashbin'); - $view->mkdir('files_trashbin/files'); - $view->mkdir('files_trashbin/versions'); - $view->mkdir('files_trashbin/keyfiles'); - $view->mkdir('files_trashbin/share-keys'); } - + if (!$view->is_dir('files_trashbin/files')) { + $view->mkdir('files_trashbin/files'); + } + if (!$view->is_dir('files_trashbin/versions')) { + $view->mkdir('files_trashbin/versions'); + } + if (!$view->is_dir('files_trashbin/keyfiles')) { + $view->mkdir('files_trashbin/keyfiles'); + } + if (!$view->is_dir('files_trashbin/share-keys')) { + $view->mkdir('files_trashbin/share-keys'); + } + if (!$view->is_dir('files_trashbin/files')) { + $view->mkdir('files_trashbin/files'); + } $path_parts = pathinfo($file_path); $filename = $path_parts['basename']; From bb640df06e2d5e25f63ac8a84cdd3e747472f965 Mon Sep 17 00:00:00 2001 From: Bastien Ho Date: Fri, 10 May 2013 11:16:18 +0200 Subject: [PATCH 005/145] duplicate verification --- apps/files_trashbin/lib/trash.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 210f72da63..69adf08dd4 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -52,9 +52,6 @@ class Trashbin { if (!$view->is_dir('files_trashbin/share-keys')) { $view->mkdir('files_trashbin/share-keys'); } - if (!$view->is_dir('files_trashbin/files')) { - $view->mkdir('files_trashbin/files'); - } $path_parts = pathinfo($file_path); $filename = $path_parts['basename']; From 8f19c5ecab7058702882aa3db4d3202ca697cb70 Mon Sep 17 00:00:00 2001 From: infoneo Date: Sun, 12 May 2013 01:47:48 +0200 Subject: [PATCH 006/145] Dots in a filenames fix --- lib/files/mapper.php | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/lib/files/mapper.php b/lib/files/mapper.php index 15f5f0628b..97a2bff915 100644 --- a/lib/files/mapper.php +++ b/lib/files/mapper.php @@ -172,13 +172,21 @@ class Mapper $pathElements = explode('/', $path); $sluggedElements = array(); - - // rip off the extension ext from last element + $last= end($pathElements); $parts = pathinfo($last); - $filename = $parts['filename']; - array_pop($pathElements); - array_push($pathElements, $filename); + + if ((preg_match('~[-\w]+~', $parts['filename'])) && (preg_match('~[-\w]+~', $parts['extension']))){ + + // rip off the extension ext from last element + $filename = $parts['filename']; + array_pop($pathElements); + array_push($pathElements, $filename); + + } else { + + unset($parts['extension']); + } foreach ($pathElements as $pathElement) { // remove empty elements @@ -213,8 +221,8 @@ class Mapper */ private function slugify($text) { - // replace non letter or digits by - - $text = preg_replace('~[^\\pL\d]+~u', '-', $text); + // replace non letter or digits or dots by - + $text = preg_replace('~[^\\pL\d\.]+~u', '-', $text); // trim $text = trim($text, '-'); @@ -228,7 +236,10 @@ class Mapper $text = strtolower($text); // remove unwanted characters - $text = preg_replace('~[^-\w]+~', '', $text); + $text = preg_replace('~[^-\w\.]+~', '', $text); + + // trim ending dots (for security reasons and win compatibility) + $text = preg_replace('~\.+$~', '', $text); if (empty($text)) { return uniqid(); From be4eef682ae515fd542ec351eef05cc54fe3247c Mon Sep 17 00:00:00 2001 From: infoneo Date: Sun, 12 May 2013 15:22:57 +0300 Subject: [PATCH 007/145] Fixed problems with a dots in a filenames --- lib/files/mapper.php | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/lib/files/mapper.php b/lib/files/mapper.php index 97a2bff915..d9e116bf25 100644 --- a/lib/files/mapper.php +++ b/lib/files/mapper.php @@ -176,16 +176,22 @@ class Mapper $last= end($pathElements); $parts = pathinfo($last); - if ((preg_match('~[-\w]+~', $parts['filename'])) && (preg_match('~[-\w]+~', $parts['extension']))){ + $filename = $parts['filename']; + $extension = $parts['extension']; + - // rip off the extension ext from last element - $filename = $parts['filename']; - array_pop($pathElements); - array_push($pathElements, $filename); + if ((preg_match('~[-\w]+~', $filename)) && (preg_match('~[-\w]+~', $extension))){ + + // rip off the extension ext from last element + array_pop($pathElements); + array_push($pathElements, $filename); } else { - unset($parts['extension']); + if (isset($parts['extension'])) { + unset($parts['extension']); + } + } foreach ($pathElements as $pathElement) { From f8336c1e2c17414649eceb0f2351524629c15899 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 14 May 2013 09:34:01 -0400 Subject: [PATCH 008/145] Turn off theme before update --- lib/base.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/base.php b/lib/base.php index 1e4bbff49c..e4f2d98e5e 100644 --- a/lib/base.php +++ b/lib/base.php @@ -282,6 +282,7 @@ class OC { $currentVersion = implode('.', OC_Util::getVersion()); if (version_compare($currentVersion, $installedVersion, '>')) { if ($showTemplate && !OC_Config::getValue('maintenance', false)) { + OC_Config::setValue('theme', ''); $minimizerCSS = new OC_Minimizer_CSS(); $minimizerCSS->clearCache(); $minimizerJS = new OC_Minimizer_JS(); From 4687f50e754f54349ea33348a45cacddaa10261a Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 17 May 2013 11:15:53 -0400 Subject: [PATCH 009/145] Add undefined verision variables --- core/ajax/update.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/ajax/update.php b/core/ajax/update.php index af469237a1..db00da0223 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -6,6 +6,8 @@ require_once '../../lib/base.php'; if (OC::checkUpgrade(false)) { \OC_DB::enableCaching(false); OC_Config::setValue('maintenance', true); + $installedVersion = OC_Config::getValue('version', '0.0.0'); + $currentVersion = implode('.', OC_Util::getVersion()); OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, OC_Log::WARN); $updateEventSource = new OC_EventSource(); $watcher = new UpdateWatcher($updateEventSource); @@ -111,4 +113,4 @@ class UpdateWatcher { $this->eventSource->close(); } -} +} \ No newline at end of file From e866e564c260d72ff9201609107e77e02ba98472 Mon Sep 17 00:00:00 2001 From: opensaucesystems Date: Thu, 23 May 2013 16:57:22 +0200 Subject: [PATCH 010/145] Enable https authentication --- apps/user_webdavauth/user_webdavauth.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 6417e45434..8f4c11d0f0 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -41,10 +41,16 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { } public function checkPassword( $uid, $password ) { - $url= 'http://'.urlencode($uid).':'.urlencode($password).'@'.$this->webdavauth_url; + $arr = explode('://', $this->webdavauth_url, 2); + if( ! isset($arr) && count($arr) !== 2) { + OC_Log::write('OC_USER_WEBDAVAUTH', 'Invalid Url: "'.$this->webdavauth_url.'" ', 3); + return false; + } + list($webdavauth_protocol, $webdavauth_url_path) = $arr; + $url= $webdavauth_protocol.'://'.urlencode($uid).':'.urlencode($password).'@'.$webdavauth_url_path; $headers = get_headers($url); if($headers==false) { - OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$this->webdavauth_url.'" ', 3); + OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$webdavauth_protocol.'://'.$webdavauth_url_path.'" ', 3); return false; } From 169eb100301269e96a5c0d0f4d1e0e966ab3ed52 Mon Sep 17 00:00:00 2001 From: opensaucesystems Date: Thu, 23 May 2013 17:22:05 +0200 Subject: [PATCH 011/145] Enable https authentication Allow authentication using https:// as well as http:// --- apps/user_webdavauth/user_webdavauth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 8f4c11d0f0..146034a5d4 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -42,7 +42,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { public function checkPassword( $uid, $password ) { $arr = explode('://', $this->webdavauth_url, 2); - if( ! isset($arr) && count($arr) !== 2) { + if( ! isset($arr) OR count($arr) !== 2) { OC_Log::write('OC_USER_WEBDAVAUTH', 'Invalid Url: "'.$this->webdavauth_url.'" ', 3); return false; } From b23ce9ed404bd47b09636dad843843cb2d10b79c Mon Sep 17 00:00:00 2001 From: opensaucesystems Date: Thu, 23 May 2013 17:24:48 +0200 Subject: [PATCH 012/145] Remove http:// from label and add placeholder --- apps/user_webdavauth/templates/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_webdavauth/templates/settings.php b/apps/user_webdavauth/templates/settings.php index ec6524ee4f..e3a84a2119 100755 --- a/apps/user_webdavauth/templates/settings.php +++ b/apps/user_webdavauth/templates/settings.php @@ -1,7 +1,7 @@
t('WebDAV Authentication'));?> -

+


t('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.')); ?> From acba7d7b13be102031717f9fa06ced918c916301 Mon Sep 17 00:00:00 2001 From: opensaucesystems Date: Thu, 23 May 2013 17:27:22 +0200 Subject: [PATCH 013/145] Update settings.php --- apps/user_webdavauth/templates/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_webdavauth/templates/settings.php b/apps/user_webdavauth/templates/settings.php index e3a84a2119..e199c32675 100755 --- a/apps/user_webdavauth/templates/settings.php +++ b/apps/user_webdavauth/templates/settings.php @@ -1,7 +1,7 @@

t('WebDAV Authentication'));?> -

+


t('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.')); ?> From 0a29d2029a719d42f347edb95bd6486c2ab842a8 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 25 May 2013 11:25:43 -0400 Subject: [PATCH 014/145] Clear opcode caches after writing to the config file, fixes #3372 --- lib/config.php | 2 +- lib/util.php | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/lib/config.php b/lib/config.php index 9b87d4ce4e..3cbb89fb98 100644 --- a/lib/config.php +++ b/lib/config.php @@ -187,7 +187,7 @@ class OC_Config{ } // Prevent others not to read the config @chmod($filename, 0640); - + OC_Util::clearOpcodeCache(); return true; } } diff --git a/lib/util.php b/lib/util.php index f30cdf6a53..a7ed037929 100755 --- a/lib/util.php +++ b/lib/util.php @@ -822,5 +822,24 @@ class OC_Util { return $theme; } + /** + * Clear the opcode cache if one exists + * This is necessary for writing to the config file + * in case the opcode cache doesn't revalidate files + */ + public static function clearOpcodeCache() { + // APC + if (function_exists('apc_clear_cache')) { + apc_clear_cache(); + } + // Zend Opcache + if (function_exists('accelerator_reset')) { + accelerator_reset(); + } + // XCache + if (function_exists('xcache_clear_cache')) { + xcache_clear_cache(XC_TYPE_VAR, 0); + } + } } From 4f9cbadfa437c72db03e5d6def76d6d9103453b1 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Thu, 30 May 2013 22:41:30 +0200 Subject: [PATCH 015/145] fix for autoloader while user logged in and system is in maintenance --- apps/files_encryption/appinfo/app.php | 51 +++++++++++++++------------ 1 file changed, 28 insertions(+), 23 deletions(-) diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index d9bb4d5e74..d2bac218a9 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -10,39 +10,44 @@ OC::$CLASSPATH['OCA\Encryption\Session'] = 'files_encryption/lib/session.php'; OC::$CLASSPATH['OCA\Encryption\Capabilities'] = 'files_encryption/lib/capabilities.php'; OC::$CLASSPATH['OCA\Encryption\Helper'] = 'files_encryption/lib/helper.php'; -OC_FileProxy::register(new OCA\Encryption\Proxy()); +if(!OC_Config::getValue('maintenance', false)) { + OC_FileProxy::register(new OCA\Encryption\Proxy()); -// User related hooks -OCA\Encryption\Helper::registerUserHooks(); + // User related hooks + OCA\Encryption\Helper::registerUserHooks(); -// Sharing related hooks -OCA\Encryption\Helper::registerShareHooks(); + // Sharing related hooks + OCA\Encryption\Helper::registerShareHooks(); -// Filesystem related hooks -OCA\Encryption\Helper::registerFilesystemHooks(); + // Filesystem related hooks + OCA\Encryption\Helper::registerFilesystemHooks(); -stream_wrapper_register('crypt', 'OCA\Encryption\Stream'); + stream_wrapper_register('crypt', 'OCA\Encryption\Stream'); -// check if we are logged in -if (OCP\User::isLoggedIn()) { - $view = new OC_FilesystemView('/'); - $session = new \OCA\Encryption\Session($view); + // check if we are logged in + if (OCP\User::isLoggedIn()) { + $view = new OC_FilesystemView('/'); + $session = new \OCA\Encryption\Session($view); - // check if user has a private key - if ( - !$session->getPrivateKey(\OCP\USER::getUser()) - && OCA\Encryption\Crypt::mode() === 'server' - ) { + // check if user has a private key + if ( + !$session->getPrivateKey(\OCP\USER::getUser()) + && OCA\Encryption\Crypt::mode() === 'server' + ) { - // Force the user to log-in again if the encryption key isn't unlocked - // (happens when a user is logged in before the encryption app is - // enabled) - OCP\User::logout(); + // Force the user to log-in again if the encryption key isn't unlocked + // (happens when a user is logged in before the encryption app is + // enabled) + OCP\User::logout(); - header("Location: " . OC::$WEBROOT . '/'); + header("Location: " . OC::$WEBROOT . '/'); - exit(); + exit(); + } } +} else { + // logout user if we are in maintenance to force re-login + OCP\User::logout(); } // Register settings scripts From 986e9dd362809cedec783f55f161d6b3bce7d680 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Fri, 31 May 2013 01:35:48 +0200 Subject: [PATCH 016/145] use legacyDecrypt to decrypt key file like the previous files_encryption --- apps/files_encryption/hooks/hooks.php | 2 +- apps/files_encryption/lib/crypt.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 955425595b..4e0e5c4b95 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -76,7 +76,7 @@ class Hooks { && $encLegacyKey = $userView->file_get_contents('encryption.key') ) { - $plainLegacyKey = Crypt::legacyBlockDecrypt($encLegacyKey, $params['password']); + $plainLegacyKey = Crypt::legacyDecrypt($encLegacyKey, $params['password']); $session->setLegacyKey($plainLegacyKey); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index ddeb3590f6..d84a4d4e3c 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -608,7 +608,7 @@ class Crypt { * * This function decrypts an content */ - private static function legacyDecrypt($content, $passphrase = '') { + public static function legacyDecrypt($content, $passphrase = '') { $bf = self::getBlowfish($passphrase); From 8e324aad38851f866c536416a0e8809b330f9c99 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Fri, 31 May 2013 01:36:49 +0200 Subject: [PATCH 017/145] fix re-encrypt legacy files --- apps/files_encryption/lib/util.php | 42 +++++++++++------------------- 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 0d663549bf..b27b26ccaa 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -732,40 +732,28 @@ class Util { // Fetch data from file $legacyData = $this->view->file_get_contents($legacyFile['path']); - $sharingEnabled = \OCP\Share::isEnabled(); - - // if file exists try to get sharing users - if ($this->view->file_exists($legacyFile['path'])) { - $uniqueUserIds = $this->getSharingUsersArray($sharingEnabled, $legacyFile['path'], $this->userId); - } else { - $uniqueUserIds[] = $this->userId; - } - - // Fetch public keys for all users who will share the file - $publicKeys = Keymanager::getPublicKeys($this->view, $uniqueUserIds); - - // Recrypt data, generate catfile - $recrypted = Crypt::legacyKeyRecryptKeyfile( $legacyData, $legacyPassphrase, $publicKeys ); + // decrypt data, generate catfile + $decrypted = Crypt::legacyBlockDecrypt($legacyData, $legacyPassphrase); $rawPath = $legacyFile['path']; - $relPath = $this->stripUserFilesPath($rawPath); - // Save keyfile - Keymanager::setFileKey($this->view, $relPath, $this->userId, $recrypted['filekey']); + // enable proxy the ensure encryption is handled + \OC_FileProxy::$enabled = true; - // Save sharekeys to user folders - Keymanager::setShareKeys($this->view, $relPath, $recrypted['sharekeys']); + // Open enc file handle for binary writing, with same filename as original plain file + $encHandle = $this->view->fopen( $rawPath, 'wb' ); - // Overwrite the existing file with the encrypted one - $this->view->file_put_contents($rawPath, $recrypted['data']); + if (is_resource($encHandle)) { - $size = strlen($recrypted['data']); + // write data to stream + fwrite($encHandle, $decrypted); - // Add the file to the cache - \OC\Files\Filesystem::putFileInfo($rawPath, array( - 'encrypted' => true, - 'size' => $size - ), ''); + // close stream + fclose($encHandle); + } + + // disable proxy to prevent file being encrypted twice + \OC_FileProxy::$enabled = false; } } From ccdfb5942616a5b4bfeea04cfafac91017afc010 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Fri, 31 May 2013 01:55:48 +0200 Subject: [PATCH 018/145] fix legacy key in until test --- apps/files_encryption/tests/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index 0dc452a41c..b36d7e4117 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -75,7 +75,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { $this->legacyData = realpath(dirname(__FILE__) . '/legacy-text.txt'); $this->legacyEncryptedData = realpath(dirname(__FILE__) . '/legacy-encrypted-text.txt'); $this->legacyEncryptedDataKey = realpath(dirname(__FILE__) . '/encryption.key'); - $this->legacyKey = '30943623843030686906'; + $this->legacyKey = "30943623843030686906\0\0\0\0"; $keypair = Encryption\Crypt::createKeypair(); From 96ef926161155cf710838612501bf76756f89cb4 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Fri, 31 May 2013 01:57:32 +0200 Subject: [PATCH 019/145] normalize path to prevent following split to fail --- apps/files_encryption/lib/proxy.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 11308612da..e5f7f2e695 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -299,6 +299,8 @@ class Proxy extends \OC_FileProxy { */ public function postFopen($path, &$result) { + $path = \OC\Files\Filesystem::normalizePath($path); + if (!$result) { return $result; From 2e3bfdb12c5789e1e384777a7906c2c6a6ecef56 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Fri, 31 May 2013 13:58:58 +0200 Subject: [PATCH 020/145] check if the decrypted private key is valid on login and on read/write files --- apps/files_encryption/hooks/hooks.php | 17 ++++++++++++++++- apps/files_encryption/lib/stream.php | 21 +++++++++++++++------ 2 files changed, 31 insertions(+), 7 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index eb9a2600d7..639d576915 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -57,6 +57,21 @@ class Hooks { $privateKey = Crypt::symmetricDecryptFileContent($encryptedKey, $params['password']); + // check if this a valid private key + $res = openssl_pkey_get_private($privateKey); + if(is_resource($res)) { + $sslInfo = openssl_pkey_get_details($res); + if(!isset($sslInfo['key'])) { + $privateKey = null; + } + } else { + $privateKey = null; + } + + if($privateKey === null) { + \OCP\Util::writeLog('Encryption library', 'Private key for user "' . $params['uid'] . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access', \OCP\Util::ERROR); + } + $session = new \OCA\Encryption\Session($view); $session->setPrivateKey($privateKey, $params['uid']); @@ -143,7 +158,7 @@ class Hooks { public static function setPassphrase($params) { // Only attempt to change passphrase if server-side encryption - // is in use (client-side encryption does not have access to + // is in use (client-side encryption does not have access to // the necessary keys) if (Crypt::mode() === 'server') { diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 072c528664..56322c100b 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -118,7 +118,7 @@ class Stream { if (!is_resource($this->handle)) { - \OCP\Util::writeLog('files_encryption', 'failed to open file "' . $this->rawPath . '"', \OCP\Util::ERROR); + \OCP\Util::writeLog('Encryption library', 'failed to open file "' . $this->rawPath . '"', \OCP\Util::ERROR); } else { @@ -156,7 +156,7 @@ class Stream { // $count will always be 8192 https://bugs.php.net/bug.php?id=21641 // This makes this function a lot simpler, but will break this class if the above 'bug' gets 'fixed' - \OCP\Util::writeLog('files_encryption', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', \OCP\Util::FATAL); + \OCP\Util::writeLog('Encryption library', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', \OCP\Util::FATAL); die(); @@ -165,7 +165,7 @@ class Stream { // Get the data from the file handle $data = fread($this->handle, 8192); - $result = ''; + $result = null; if (strlen($data)) { @@ -175,10 +175,11 @@ class Stream { throw new \Exception( 'Encryption key not found for "' . $this->rawPath . '" during attempted read via stream'); - } + } else { - // Decrypt data - $result = Crypt::symmetricDecryptFileContent($data, $this->plainKey); + // Decrypt data + $result = Crypt::symmetricDecryptFileContent($data, $this->plainKey); + } } @@ -232,6 +233,14 @@ class Stream { $privateKey = $session->getPrivateKey($this->userId); + // if there is no valid private key return false + if($privateKey === false) { + + \OCP\Util::writeLog('Encryption library', 'Private key for user "' . $this->userId . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access', \OCP\Util::ERROR); + + return false; + } + $shareKey = Keymanager::getShareKey($this->rootView, $this->userId, $this->relPath); $this->plainKey = Crypt::multiKeyDecrypt($this->encKeyfile, $shareKey, $privateKey); From e9d1ea712c5986f427fb8fbbcc934d119a069f5c Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Fri, 31 May 2013 15:57:18 +0200 Subject: [PATCH 021/145] allow the user to login but do not allow upload and show error message on the web --- apps/files_encryption/appinfo/app.php | 3 ++- apps/files_encryption/hooks/hooks.php | 6 +++--- apps/files_encryption/lib/stream.php | 24 +++++++++++++++++++++--- 3 files changed, 26 insertions(+), 7 deletions(-) diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index d9bb4d5e74..c9e3de5691 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -28,9 +28,10 @@ if (OCP\User::isLoggedIn()) { $view = new OC_FilesystemView('/'); $session = new \OCA\Encryption\Session($view); + $user = \OCP\USER::getUser(); // check if user has a private key if ( - !$session->getPrivateKey(\OCP\USER::getUser()) + !$view->file_exists('/' . $user . '/files_encryption/' . $user . '.private.key') && OCA\Encryption\Crypt::mode() === 'server' ) { diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 639d576915..c52d739eaa 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -62,13 +62,13 @@ class Hooks { if(is_resource($res)) { $sslInfo = openssl_pkey_get_details($res); if(!isset($sslInfo['key'])) { - $privateKey = null; + $privateKey = false; } } else { - $privateKey = null; + $privateKey = false; } - if($privateKey === null) { + if($privateKey === false) { \OCP\Util::writeLog('Encryption library', 'Private key for user "' . $params['uid'] . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access', \OCP\Util::ERROR); } diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 56322c100b..a5ebe8ef91 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -236,7 +236,11 @@ class Stream { // if there is no valid private key return false if($privateKey === false) { - \OCP\Util::writeLog('Encryption library', 'Private key for user "' . $this->userId . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access', \OCP\Util::ERROR); + if(\OC_Util::isCallRegistered()) { + $l = \OC_L10N::get('core'); + \OCP\JSON::error(array('data' => array('message' => $l->t('Private key is not valid! Maybe the user password was changed from outside if so please change it back to gain access')))); + throw new \Exception('Private key for user "' . $this->userId . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access'); + } return false; } @@ -433,6 +437,22 @@ class Stream { $this->flush(); + $view = new \OC_FilesystemView('/'); + $session = new \OCA\Encryption\Session( $this->rootView ); + $privateKey = $session->getPrivateKey($this->userId); + + // if there is no valid private key return false + if($privateKey === false) { + + if(\OC_Util::isCallRegistered()) { + $l = \OC_L10N::get('core'); + \OCP\JSON::error(array('data' => array('message' => $l->t('Private key is not valid! Maybe the user password was changed from outside if so please change it back to gain access')))); + throw new \Exception('Private key for user "' . $this->userId . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access'); + } + + return false; + } + if ( $this->meta['mode'] !== 'r' and $this->meta['mode'] !== 'rb' @@ -459,8 +479,6 @@ class Stream { // Encrypt enc key for all sharing users $this->encKeyfiles = Crypt::multiKeyEncrypt($this->plainKey, $publicKeys); - $view = new \OC_FilesystemView('/'); - // Save the new encrypted file key Keymanager::setFileKey($this->rootView, $this->relPath, $this->userId, $this->encKeyfiles['data']); From a134ffcf2cce4dcd2c41ccd49a5b6306260bb0f3 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Fri, 31 May 2013 16:52:33 +0200 Subject: [PATCH 022/145] code optimized and cleaned up unused vars --- apps/files_encryption/lib/stream.php | 70 +++++++++++++++++++--------- 1 file changed, 47 insertions(+), 23 deletions(-) diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index a5ebe8ef91..dee5a7cccc 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -56,18 +56,21 @@ class Stream { private $relPath; // rel path to users file dir private $userId; private $handle; // Resource returned by fopen - private $path; - private $readBuffer; // For streams that dont support seeking private $meta = array(); // Header / meta for source stream - private $count; private $writeCache; private $size; private $unencryptedSize; private $publicKey; - private $keyfile; private $encKeyfile; - private static $view; // a fsview object set to user dir + /** + * @var \OC\Files\View + */ private $rootView; // a fsview object set to '/' + /** + * @var \OCA\Encryption\Session + */ + private $session; + private $privateKey; /** * @param $path @@ -82,6 +85,10 @@ class Stream { $this->rootView = new \OC_FilesystemView('/'); } + $this->session = new \OCA\Encryption\Session($this->rootView); + + $this->privateKey = $this->session->getPrivateKey($this->userId); + $util = new Util($this->rootView, \OCP\USER::getUser()); $this->userId = $util->getUserId(); @@ -229,17 +236,14 @@ class Stream { // If a keyfile already exists if ($this->encKeyfile) { - $session = new \OCA\Encryption\Session( $this->rootView ); - - $privateKey = $session->getPrivateKey($this->userId); - // if there is no valid private key return false - if($privateKey === false) { + if ($this->privateKey === false) { - if(\OC_Util::isCallRegistered()) { + if (\OC_Util::isCallRegistered()) { $l = \OC_L10N::get('core'); \OCP\JSON::error(array('data' => array('message' => $l->t('Private key is not valid! Maybe the user password was changed from outside if so please change it back to gain access')))); - throw new \Exception('Private key for user "' . $this->userId . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access'); + throw new \Exception('Private key for user "' . $this->userId + . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access'); } return false; @@ -247,7 +251,7 @@ class Stream { $shareKey = Keymanager::getShareKey($this->rootView, $this->userId, $this->relPath); - $this->plainKey = Crypt::multiKeyDecrypt($this->encKeyfile, $shareKey, $privateKey); + $this->plainKey = Crypt::multiKeyDecrypt($this->encKeyfile, $shareKey, $this->privateKey); return true; @@ -270,6 +274,12 @@ class Stream { */ public function stream_write($data) { + // if there is no valid private key return false + if ($this->privateKey === false) { + $this->size = 0; + return strlen($data); + } + // Disable the file proxies so that encryption is not // automatically attempted when the file is written to disk - // we are handling that separately here and we don't want to @@ -437,19 +447,33 @@ class Stream { $this->flush(); - $view = new \OC_FilesystemView('/'); - $session = new \OCA\Encryption\Session( $this->rootView ); - $privateKey = $session->getPrivateKey($this->userId); - // if there is no valid private key return false - if($privateKey === false) { + if ($this->privateKey === false) { - if(\OC_Util::isCallRegistered()) { + if (\OC_Util::isCallRegistered()) { $l = \OC_L10N::get('core'); \OCP\JSON::error(array('data' => array('message' => $l->t('Private key is not valid! Maybe the user password was changed from outside if so please change it back to gain access')))); - throw new \Exception('Private key for user "' . $this->userId . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access'); + + // cleanup + if ($this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb') { + + // Disable encryption proxy to prevent recursive calls + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; + + if ($this->rootView->file_exists($this->rawPath) && $this->size === 0) { + $this->rootView->unlink($this->rawPath); + } + + // Re-enable proxy - our work is done + \OC_FileProxy::$enabled = $proxyStatus; + } + + throw new \Exception('Private key for user "' . $this->userId + . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access'); } + return false; } @@ -483,10 +507,10 @@ class Stream { Keymanager::setFileKey($this->rootView, $this->relPath, $this->userId, $this->encKeyfiles['data']); // Save the sharekeys - Keymanager::setShareKeys($view, $this->relPath, $this->encKeyfiles['keys']); + Keymanager::setShareKeys($this->rootView, $this->relPath, $this->encKeyfiles['keys']); // get file info - $fileInfo = $view->getFileInfo($this->rawPath); + $fileInfo = $this->rootView->getFileInfo($this->rawPath); if (!is_array($fileInfo)) { $fileInfo = array(); } @@ -500,7 +524,7 @@ class Stream { $fileInfo['unencrypted_size'] = $this->unencryptedSize; // set fileinfo - $view->putFileInfo($this->rawPath, $fileInfo); + $this->rootView->putFileInfo($this->rawPath, $fileInfo); } return fclose($this->handle); From 46e5e9bd73a68f7b50bb79f883a8bc6efacaca97 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Fri, 31 May 2013 22:49:32 +0200 Subject: [PATCH 023/145] cleanup unused method legacyKeyRecryptKeyfile --- apps/files_encryption/lib/crypt.php | 24 ------------------------ apps/files_encryption/tests/crypt.php | 17 ----------------- 2 files changed, 41 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index d84a4d4e3c..ced9ab7c67 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -637,28 +637,4 @@ class Crypt { } } - /** - * @param $legacyEncryptedContent - * @param $legacyPassphrase - * @param $publicKeys - * @return array - */ - public static function legacyKeyRecryptKeyfile($legacyEncryptedContent, $legacyPassphrase, $publicKeys) { - - $decrypted = self::legacyBlockDecrypt($legacyEncryptedContent, $legacyPassphrase); - - // Encrypt plain data, generate keyfile & encrypted file - $cryptedData = self::symmetricEncryptFileContentKeyfile($decrypted); - - // Encrypt plain keyfile to multiple sharefiles - $multiEncrypted = Crypt::multiKeyEncrypt($cryptedData['key'], $publicKeys); - - return array( - 'data' => $cryptedData['encrypted'], - 'filekey' => $multiEncrypted['data'], - 'sharekeys' => $multiEncrypted['keys'] - ); - - } - } \ No newline at end of file diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php index 32156eea27..e153a49a2c 100755 --- a/apps/files_encryption/tests/crypt.php +++ b/apps/files_encryption/tests/crypt.php @@ -569,23 +569,6 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } - /** - * @brief test decryption using legacy blowfish method - * @depends testLegacyEncryptLong - */ - function testLegacyKeyRecryptKeyfileEncrypt($crypted) { - - $recrypted = Encryption\Crypt::LegacyKeyRecryptKeyfile($crypted, $this->pass, array($this->genPublicKey)); - - $this->assertNotEquals($this->dataLong, $recrypted['data']); - - return $recrypted; - - # TODO: search inencrypted text for actual content to ensure it - # genuine transformation - - } - function testRenameFile() { $filename = 'tmp-' . time(); From 471d2b732c504d7231aa7f343f5cda8a701fa447 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 3 Jun 2013 14:19:31 +0200 Subject: [PATCH 024/145] introduce decryptPrivateKey() method which also checks if the result is a valid private key to avoid additional checks on various places --- .../ajax/changeRecoveryPassword.php | 22 +++++++-------- apps/files_encryption/hooks/hooks.php | 13 +-------- apps/files_encryption/lib/crypt.php | 28 +++++++++++++++++++ apps/files_encryption/lib/helper.php | 8 +----- apps/files_encryption/lib/session.php | 2 +- apps/files_encryption/lib/util.php | 16 +++++------ 6 files changed, 49 insertions(+), 40 deletions(-) diff --git a/apps/files_encryption/ajax/changeRecoveryPassword.php b/apps/files_encryption/ajax/changeRecoveryPassword.php index b0594f967b..366f634a51 100644 --- a/apps/files_encryption/ajax/changeRecoveryPassword.php +++ b/apps/files_encryption/ajax/changeRecoveryPassword.php @@ -22,28 +22,28 @@ $return = false; $oldPassword = $_POST['oldPassword']; $newPassword = $_POST['newPassword']; +$view = new \OC\Files\View('/'); $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), \OCP\User::getUser()); -$result = $util->checkRecoveryPassword($oldPassword); +$proxyStatus = \OC_FileProxy::$enabled; +\OC_FileProxy::$enabled = false; -if ($result) { - $keyId = $util->getRecoveryKeyId(); - $keyPath = '/owncloud_private_key/' . $keyId . '.private.key'; - $view = new \OC\Files\View('/'); +$keyId = $util->getRecoveryKeyId(); +$keyPath = '/owncloud_private_key/' . $keyId . '.private.key'; - $proxyStatus = \OC_FileProxy::$enabled; - \OC_FileProxy::$enabled = false; +$encryptedRecoveryKey = $view->file_get_contents($keyPath); +$decryptedRecoveryKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedRecoveryKey, $oldPassword); + +if ($decryptedRecoveryKey) { - $encryptedRecoveryKey = $view->file_get_contents($keyPath); - $decryptedRecoveryKey = \OCA\Encryption\Crypt::symmetricDecryptFileContent($encryptedRecoveryKey, $oldPassword); $encryptedRecoveryKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($decryptedRecoveryKey, $newPassword); $view->file_put_contents($keyPath, $encryptedRecoveryKey); - \OC_FileProxy::$enabled = $proxyStatus; - $return = true; } +\OC_FileProxy::$enabled = $proxyStatus; + // success or failure if ($return) { \OCP\JSON::success(array('data' => array('message' => $l->t('Password successfully changed.')))); diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index c52d739eaa..47e240769b 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -55,18 +55,7 @@ class Hooks { $encryptedKey = Keymanager::getPrivateKey($view, $params['uid']); - $privateKey = Crypt::symmetricDecryptFileContent($encryptedKey, $params['password']); - - // check if this a valid private key - $res = openssl_pkey_get_private($privateKey); - if(is_resource($res)) { - $sslInfo = openssl_pkey_get_details($res); - if(!isset($sslInfo['key'])) { - $privateKey = false; - } - } else { - $privateKey = false; - } + $privateKey = Crypt::decryptPrivateKey($encryptedKey, $params['password']); if($privateKey === false) { \OCP\Util::writeLog('Encryption library', 'Private key for user "' . $params['uid'] . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access', \OCP\Util::ERROR); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index ddeb3590f6..8c96e53641 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -351,6 +351,34 @@ class Crypt { } + /** + * @brief Decrypt private key and check if the result is a valid keyfile + * @param string $encryptedKey encrypted keyfile + * @param string $passphrase to decrypt keyfile + * @returns encrypted private key or false + * + * This function decrypts a file + */ + public static function decryptPrivateKey($encryptedKey, $passphrase) { + + $plainKey = self::symmetricDecryptFileContent($encryptedKey, $passphrase); + + // check if this a valid private key + $res = openssl_pkey_get_private($plainKey); + if(is_resource($res)) { + $sslInfo = openssl_pkey_get_details($res); + if(!isset($sslInfo['key'])) { + $plainKey = false; + } + } else { + $plainKey = false; + } + + return $plainKey; + + } + + /** * @brief Creates symmetric keyfile content using a generated key * @param string $plainContent content to be encrypted diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index e078ab3554..42871a4a95 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -93,6 +93,7 @@ class Helper { * @return bool */ public static function adminEnableRecovery($recoveryKeyId, $recoveryPassword) { + $view = new \OC\Files\View('/'); if ($recoveryKeyId === null) { @@ -127,13 +128,6 @@ class Helper { // Save private key $view->file_put_contents('/owncloud_private_key/' . $recoveryKeyId . '.private.key', $encryptedPrivateKey); - // create control file which let us check later on if the entered password was correct. - $encryptedControlData = \OCA\Encryption\Crypt::keyEncrypt("ownCloud", $keypair['publicKey']); - if (!$view->is_dir('/control-file')) { - $view->mkdir('/control-file'); - } - $view->file_put_contents('/control-file/controlfile.enc', $encryptedControlData); - \OC_FileProxy::$enabled = true; // Set recoveryAdmin as enabled diff --git a/apps/files_encryption/lib/session.php b/apps/files_encryption/lib/session.php index bff1737554..9b0ca224c8 100644 --- a/apps/files_encryption/lib/session.php +++ b/apps/files_encryption/lib/session.php @@ -89,7 +89,7 @@ class Session { \OC_FileProxy::$enabled = false; $encryptedKey = $this->view->file_get_contents( '/owncloud_private_key/' . $publicShareKeyId . '.private.key' ); - $privateKey = Crypt::symmetricDecryptFileContent( $encryptedKey, '' ); + $privateKey = Crypt::decryptPrivateKey($encryptedKey, ''); $this->setPublicSharePrivateKey( $privateKey ); \OC_FileProxy::$enabled = $proxyStatus; diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 04bd4dc8ac..6923b81b92 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1372,26 +1372,24 @@ class Util { */ public function checkRecoveryPassword($password) { + $result = false; $pathKey = '/owncloud_private_key/' . $this->recoveryKeyId . ".private.key"; - $pathControlData = '/control-file/controlfile.enc'; $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; $recoveryKey = $this->view->file_get_contents($pathKey); - $decryptedRecoveryKey = Crypt::symmetricDecryptFileContent($recoveryKey, $password); + $decryptedRecoveryKey = Crypt::decryptPrivateKey($recoveryKey, $password); - $controlData = $this->view->file_get_contents($pathControlData); - $decryptedControlData = Crypt::keyDecrypt($controlData, $decryptedRecoveryKey); + if ($decryptedRecoveryKey) { + $result = true; + } \OC_FileProxy::$enabled = $proxyStatus; - if ($decryptedControlData === 'ownCloud') { - return true; - } - return false; + return $result; } /** @@ -1520,7 +1518,7 @@ class Util { $encryptedKey = $this->view->file_get_contents( '/owncloud_private_key/' . $this->recoveryKeyId . '.private.key'); - $privateKey = Crypt::symmetricDecryptFileContent($encryptedKey, $recoveryPassword); + $privateKey = Crypt::decryptPrivateKey($encryptedKey, $recoveryPassword); \OC_FileProxy::$enabled = $proxyStatus; From 42f66af5a306ea959c7be3eb84ff93b4faf6cb43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 3 Jun 2013 14:21:30 +0200 Subject: [PATCH 025/145] control files are no longer needed, remove them from the tests --- apps/files_encryption/tests/share.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index 6d92881ceb..28f0de4941 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -646,9 +646,6 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { \OCA\Encryption\Helper::adminEnableRecovery(null, 'test123'); $recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId'); - // check if control file created - $this->assertTrue($this->view->file_exists('/control-file/controlfile.enc')); - // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); @@ -748,9 +745,6 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { \OCA\Encryption\Helper::adminEnableRecovery(null, 'test123'); $recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId'); - // check if control file created - $this->assertTrue($this->view->file_exists('/control-file/controlfile.enc')); - // login as user1 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2); From b02f4dc62c797f11818d245015e76b49636afbf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 3 Jun 2013 15:26:58 +0200 Subject: [PATCH 026/145] $session->setPrivateKey expects only one parameter --- apps/files_encryption/hooks/hooks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 47e240769b..5271b51202 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -63,7 +63,7 @@ class Hooks { $session = new \OCA\Encryption\Session($view); - $session->setPrivateKey($privateKey, $params['uid']); + $session->setPrivateKey($privateKey); // Check if first-run file migration has already been performed $migrationCompleted = $util->getMigrationStatus(); From b5820af3cc713bc8c373d28bb6b6ff69a70545b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 3 Jun 2013 15:27:31 +0200 Subject: [PATCH 027/145] let user update private key password in case it was changed from outside, e.g. external auth back-ends --- .../ajax/updatePrivateKeyPassword.php | 54 +++++++++++++++++++ apps/files_encryption/js/settings-personal.js | 30 +++++++++++ apps/files_encryption/settings-personal.php | 4 ++ .../templates/settings-personal.php | 30 +++++++++++ 4 files changed, 118 insertions(+) create mode 100644 apps/files_encryption/ajax/updatePrivateKeyPassword.php diff --git a/apps/files_encryption/ajax/updatePrivateKeyPassword.php b/apps/files_encryption/ajax/updatePrivateKeyPassword.php new file mode 100644 index 0000000000..e0b3d55d8b --- /dev/null +++ b/apps/files_encryption/ajax/updatePrivateKeyPassword.php @@ -0,0 +1,54 @@ + + * This file is licensed under the Affero General Public License version 3 or later. + * See the COPYING-README file. + * + * @brief Script to change recovery key password + * + */ + +use OCA\Encryption; + +\OCP\JSON::checkLoggedIn(); +\OCP\JSON::checkAppEnabled('files_encryption'); +\OCP\JSON::callCheck(); + +$l = OC_L10N::get('core'); + +$return = false; + +$oldPassword = $_POST['oldPassword']; +$newPassword = $_POST['newPassword']; + +$view = new \OC\Files\View('/'); +$session = new \OCA\Encryption\Session($view); +$user = \OCP\User::getUser(); + +$proxyStatus = \OC_FileProxy::$enabled; +\OC_FileProxy::$enabled = false; + +$keyPath = '/' . $user . '/files_encryption/'.$user.'.private.key'; + +$encryptedKey = $view->file_get_contents($keyPath); +$decryptedKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, $oldPassword); + +if ($decryptedKey) { + + $encryptedKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($decryptedKey, $newPassword); + $view->file_put_contents($keyPath, $encryptedKey); + + $session->getPrivateKey($decryptedKey); + + $return = true; +} + +\OC_FileProxy::$enabled = $proxyStatus; + +// success or failure +if ($return) { + \OCP\JSON::success(array('data' => array('message' => $l->t('Private key password successfully updated.')))); +} else { + \OCP\JSON::error(array('data' => array('message' => $l->t('Could not update the private key password. Maybe the old password was not correct.')))); +} \ No newline at end of file diff --git a/apps/files_encryption/js/settings-personal.js b/apps/files_encryption/js/settings-personal.js index 312b672ad4..46105176c2 100644 --- a/apps/files_encryption/js/settings-personal.js +++ b/apps/files_encryption/js/settings-personal.js @@ -57,4 +57,34 @@ $(document).ready(function(){ } ); + + // update private key password + + $('input:password[name="changePrivateKeyPassword"]').keyup(function(event) { + var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val(); + var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val(); + if (newPrivateKeyPassword != '' && oldPrivateKeyPassword != '' ) { + $('button:button[name="submitChangePrivateKeyPassword"]').removeAttr("disabled"); + } else { + $('button:button[name="submitChangePrivateKeyPassword"]').attr("disabled", "true"); + } + }); + + $('button:button[name="submitChangePrivateKeyPassword"]').click(function() { + var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val(); + var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val(); + OC.msg.startSaving('#encryption .msg'); + $.post( + OC.filePath( 'files_encryption', 'ajax', 'updatePrivateKeyPassword.php' ) + , { oldPassword: oldPrivateKeyPassword, newPassword: newPrivateKeyPassword } + , function( data ) { + if (data.status == "error") { + OC.msg.finishedSaving('#encryption .msg', data); + } else { + OC.msg.finishedSaving('#encryption .msg', data); + } + } + ); + }); + }); \ No newline at end of file diff --git a/apps/files_encryption/settings-personal.php b/apps/files_encryption/settings-personal.php index 3e96565949..d23a4cfdde 100644 --- a/apps/files_encryption/settings-personal.php +++ b/apps/files_encryption/settings-personal.php @@ -14,6 +14,9 @@ $tmpl = new OCP\Template('files_encryption', 'settings-personal'); $user = \OCP\USER::getUser(); $view = new \OC_FilesystemView('/'); $util = new \OCA\Encryption\Util($view, $user); +$session = new \OCA\Encryption\Session($view); + +$privateKeySet = ($session->getPrivateKey() !== false) ? true : false; $recoveryAdminEnabled = OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'); $recoveryEnabledForUser = $util->recoveryEnabledForUser(); @@ -23,6 +26,7 @@ $recoveryEnabledForUser = $util->recoveryEnabledForUser(); $tmpl->assign('recoveryEnabled', $recoveryAdminEnabled); $tmpl->assign('recoveryEnabledForUser', $recoveryEnabledForUser); +$tmpl->assign("privateKeySet" , $privateKeySet); return $tmpl->fetchPage(); diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index 04d6e79179..bacdc13337 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -3,6 +3,35 @@ t( 'Encryption' ) ); ?> + + +

+ +
+ t( "Set your old private key password to your current log-in password." ) ); ?> +
+ + +
+ + +
+ + +

+ + +

@@ -28,6 +57,7 @@

t( 'Could not update file recovery' ) ); ?>

+
From 35c91ff9010f84aa204030f4bb60f36dca1cb664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 3 Jun 2013 17:34:43 +0200 Subject: [PATCH 028/145] added test for decryptPrivateKey() --- apps/files_encryption/tests/crypt.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php index 32156eea27..74f91e9b03 100755 --- a/apps/files_encryption/tests/crypt.php +++ b/apps/files_encryption/tests/crypt.php @@ -226,6 +226,24 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } + function testDecryptPrivateKey() { + + $keypair = Encryption\Crypt::createKeypair(); + + // test successful decrypt + $crypted = Encryption\Crypt::symmetricEncryptFileContent($keypair['privateKey'], 'hat'); + + $decrypted = Encryption\Crypt::decryptPrivateKey($crypted, 'hat'); + + $this->assertEquals($keypair['privateKey'], $decrypted); + + //test private key decrypt with wrong password + $wrongPasswd = Encryption\Crypt::decryptPrivateKey($crypted, 'hat2'); + + $this->assertEquals(false, $wrongPasswd); + + } + function testSymmetricEncryptFileContent() { # TODO: search in keyfile for actual content as IV will ensure this test always passes From 1e601cd6f1a4be0f3736467e08c6de8603b6aad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 3 Jun 2013 17:43:06 +0200 Subject: [PATCH 029/145] use generated private key fro m setUp() --- apps/files_encryption/tests/crypt.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php index 74f91e9b03..bb84ff2690 100755 --- a/apps/files_encryption/tests/crypt.php +++ b/apps/files_encryption/tests/crypt.php @@ -228,14 +228,12 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { function testDecryptPrivateKey() { - $keypair = Encryption\Crypt::createKeypair(); - // test successful decrypt - $crypted = Encryption\Crypt::symmetricEncryptFileContent($keypair['privateKey'], 'hat'); + $crypted = Encryption\Crypt::symmetricEncryptFileContent($this->genPrivateKey, 'hat'); $decrypted = Encryption\Crypt::decryptPrivateKey($crypted, 'hat'); - $this->assertEquals($keypair['privateKey'], $decrypted); + $this->assertEquals($this->genPrivateKey, $decrypted); //test private key decrypt with wrong password $wrongPasswd = Encryption\Crypt::decryptPrivateKey($crypted, 'hat2'); From dc8bcf0688c80220a864b5829ecefbd2c0d70ea4 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Mon, 3 Jun 2013 18:42:13 +0200 Subject: [PATCH 030/145] reformat code --- .../ajax/updatePrivateKeyPassword.php | 2 +- apps/files_encryption/hooks/hooks.php | 11 +-- apps/files_encryption/lib/crypt.php | 4 +- apps/files_encryption/lib/helper.php | 2 +- apps/files_encryption/lib/session.php | 13 ++-- apps/files_encryption/lib/util.php | 45 +++++++----- apps/files_encryption/settings-personal.php | 2 +- .../templates/settings-admin.php | 72 ++++++++++--------- apps/files_encryption/tests/crypt.php | 3 +- apps/files_encryption/tests/share.php | 3 +- 10 files changed, 83 insertions(+), 74 deletions(-) diff --git a/apps/files_encryption/ajax/updatePrivateKeyPassword.php b/apps/files_encryption/ajax/updatePrivateKeyPassword.php index e0b3d55d8b..49f97dd323 100644 --- a/apps/files_encryption/ajax/updatePrivateKeyPassword.php +++ b/apps/files_encryption/ajax/updatePrivateKeyPassword.php @@ -29,7 +29,7 @@ $user = \OCP\User::getUser(); $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; -$keyPath = '/' . $user . '/files_encryption/'.$user.'.private.key'; +$keyPath = '/' . $user . '/files_encryption/' . $user . '.private.key'; $encryptedKey = $view->file_get_contents($keyPath); $decryptedKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, $oldPassword); diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 5271b51202..cfe9e9d2a3 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -57,8 +57,9 @@ class Hooks { $privateKey = Crypt::decryptPrivateKey($encryptedKey, $params['password']); - if($privateKey === false) { - \OCP\Util::writeLog('Encryption library', 'Private key for user "' . $params['uid'] . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access', \OCP\Util::ERROR); + if ($privateKey === false) { + \OCP\Util::writeLog('Encryption library', 'Private key for user "' . $params['uid'] + . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access', \OCP\Util::ERROR); } $session = new \OCA\Encryption\Session($view); @@ -332,7 +333,7 @@ class Hooks { $sharingEnabled = \OCP\Share::isEnabled(); // get the path including mount point only if not a shared folder - if(strncmp($path, '/Shared' , strlen('/Shared') !== 0)) { + if (strncmp($path, '/Shared', strlen('/Shared') !== 0)) { // get path including the the storage mount point $path = $util->getPathWithMountPoint($params['itemSource']); } @@ -409,14 +410,14 @@ class Hooks { } // get the path including mount point only if not a shared folder - if(strncmp($path, '/Shared' , strlen('/Shared') !== 0)) { + if (strncmp($path, '/Shared', strlen('/Shared') !== 0)) { // get path including the the storage mount point $path = $util->getPathWithMountPoint($params['itemSource']); } // if we unshare a folder we need a list of all (sub-)files if ($params['itemType'] === 'folder') { - $allFiles = $util->getAllFiles( $path ); + $allFiles = $util->getAllFiles($path); } else { $allFiles = array($path); } diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 8c96e53641..ecbec2e8b2 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -365,9 +365,9 @@ class Crypt { // check if this a valid private key $res = openssl_pkey_get_private($plainKey); - if(is_resource($res)) { + if (is_resource($res)) { $sslInfo = openssl_pkey_get_details($res); - if(!isset($sslInfo['key'])) { + if (!isset($sslInfo['key'])) { $plainKey = false; } } else { diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 42871a4a95..3e581a6ee3 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -73,7 +73,7 @@ class Helper { if (!$util->ready()) { \OCP\Util::writeLog('Encryption library', 'User account "' . $util->getUserId() - . '" is not ready for encryption; configuration started', \OCP\Util::DEBUG); + . '" is not ready for encryption; configuration started', \OCP\Util::DEBUG); if (!$util->setupServerSide($password)) { return false; diff --git a/apps/files_encryption/lib/session.php b/apps/files_encryption/lib/session.php index 9b0ca224c8..1911386cd1 100644 --- a/apps/files_encryption/lib/session.php +++ b/apps/files_encryption/lib/session.php @@ -88,9 +88,10 @@ class Session { $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - $encryptedKey = $this->view->file_get_contents( '/owncloud_private_key/' . $publicShareKeyId . '.private.key' ); + $encryptedKey = $this->view->file_get_contents( + '/owncloud_private_key/' . $publicShareKeyId . '.private.key'); $privateKey = Crypt::decryptPrivateKey($encryptedKey, ''); - $this->setPublicSharePrivateKey( $privateKey ); + $this->setPublicSharePrivateKey($privateKey); \OC_FileProxy::$enabled = $proxyStatus; } @@ -121,7 +122,7 @@ class Session { if (\OCA\Encryption\Helper::isPublicAccess()) { return $this->getPublicSharePrivateKey(); } else { - if (!is_null( \OC::$session->get('privateKey') )) { + if (!is_null(\OC::$session->get('privateKey'))) { return \OC::$session->get('privateKey'); } else { return false; @@ -136,7 +137,7 @@ class Session { */ public function setPublicSharePrivateKey($privateKey) { - \OC::$session->set('publicSharePrivateKey', $privateKey); + \OC::$session->set('publicSharePrivateKey', $privateKey); return true; @@ -149,7 +150,7 @@ class Session { */ public function getPublicSharePrivateKey() { - if (!is_null( \OC::$session->get('publicSharePrivateKey') )) { + if (!is_null(\OC::$session->get('publicSharePrivateKey'))) { return \OC::$session->get('publicSharePrivateKey'); } else { return false; @@ -176,7 +177,7 @@ class Session { */ public function getLegacyKey() { - if ( !is_null( \OC::$session->get('legacyKey') ) ) { + if (!is_null(\OC::$session->get('legacyKey'))) { return \OC::$session->get('legacyKey'); diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 6923b81b92..6446e83222 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -302,7 +302,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if($result->numRows() > 0) { + if ($result->numRows() > 0) { $row = $result->fetchRow(); if (isset($row['recovery_enabled'])) { $recoveryEnabled[] = $row['recovery_enabled']; @@ -442,7 +442,7 @@ class Util { // If the file uses old // encryption system - } elseif ( Crypt::isLegacyEncryptedContent( $data, $relPath ) ) { + } elseif (Crypt::isLegacyEncryptedContent($data, $relPath)) { $found['legacy'][] = array( 'name' => $file, @@ -573,7 +573,9 @@ class Util { // get relative path $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); - if (isset($pathParts[2]) && $pathParts[2] === 'files' && $this->view->file_exists($path) && $this->isEncryptedPath($path)) { + if (isset($pathParts[2]) && $pathParts[2] === 'files' && $this->view->file_exists($path) + && $this->isEncryptedPath($path) + ) { // get the size from filesystem $fullPath = $this->view->getLocalFile($path); @@ -643,7 +645,7 @@ class Util { return $result; } - + /** * @param $path * @return bool @@ -687,28 +689,32 @@ class Util { $relPath = $plainFile['path']; //relative to /data - $rawPath = '/'.$this->userId . '/files/' . $plainFile['path']; + $rawPath = '/' . $this->userId . '/files/' . $plainFile['path']; // Open plain file handle for binary reading - $plainHandle = $this->view->fopen( $rawPath, 'rb' ); + $plainHandle = $this->view->fopen($rawPath, 'rb'); // Open enc file handle for binary writing, with same filename as original plain file - $encHandle = fopen( 'crypt://' . $relPath.'.tmp', 'wb' ); + $encHandle = fopen('crypt://' . $relPath . '.tmp', 'wb'); // Move plain file to a temporary location - $size = stream_copy_to_stream( $plainHandle, $encHandle ); + $size = stream_copy_to_stream($plainHandle, $encHandle); fclose($encHandle); $fakeRoot = $this->view->getRoot(); - $this->view->chroot('/'.$this->userId.'/files'); + $this->view->chroot('/' . $this->userId . '/files'); $this->view->rename($relPath . '.tmp', $relPath); $this->view->chroot($fakeRoot); // Add the file to the cache - \OC\Files\Filesystem::putFileInfo( $relPath, array( 'encrypted' => true, 'size' => $size, 'unencrypted_size' => $size ) ); + \OC\Files\Filesystem::putFileInfo($relPath, array( + 'encrypted' => true, + 'size' => $size, + 'unencrypted_size' => $size + )); } // Encrypt legacy encrypted files @@ -735,7 +741,7 @@ class Util { $publicKeys = Keymanager::getPublicKeys($this->view, $uniqueUserIds); // Recrypt data, generate catfile - $recrypted = Crypt::legacyKeyRecryptKeyfile( $legacyData, $legacyPassphrase, $publicKeys ); + $recrypted = Crypt::legacyKeyRecryptKeyfile($legacyData, $legacyPassphrase, $publicKeys); $rawPath = $legacyFile['path']; $relPath = \OCA\Encryption\Helper::stripUserFilesPath($rawPath); @@ -831,7 +837,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if($result->numRows() > 0) { + if ($result->numRows() > 0) { $row = $result->fetchRow(); $path = substr($row['path'], strlen('files')); } @@ -1102,7 +1108,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if($result->numRows() > 0) { + if ($result->numRows() > 0) { $row = $result->fetchRow(); if (isset($row['migration_status'])) { $migrationStatus[] = $row['migration_status']; @@ -1191,7 +1197,8 @@ class Util { $result = array(); - $content = $this->view->getDirectoryContent(\OC\Files\Filesystem::normalizePath($this->userFilesDir . '/' . $dir)); + $content = $this->view->getDirectoryContent(\OC\Files\Filesystem::normalizePath( + $this->userFilesDir . '/' . $dir)); // handling for re shared folders $pathSplit = explode('/', $dir); @@ -1252,7 +1259,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if($result->numRows() > 0) { + if ($result->numRows() > 0) { $row = $result->fetchRow(); } } @@ -1278,7 +1285,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if($result->numRows() > 0) { + if ($result->numRows() > 0) { $row = $result->fetchRow(); } } @@ -1303,7 +1310,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if($result->numRows() > 0) { + if ($result->numRows() > 0) { $source = $result->fetchRow(); } } @@ -1324,7 +1331,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if($result->numRows() > 0) { + if ($result->numRows() > 0) { $item = $result->fetchRow(); } } @@ -1534,7 +1541,7 @@ class Util { list($storage, $internalPath) = \OC\Files\Cache\Cache::getById($id); $mount = \OC\Files\Filesystem::getMountByStorageId($storage); $mountPoint = $mount[0]->getMountPoint(); - $path = \OC\Files\Filesystem::normalizePath($mountPoint.'/'.$internalPath); + $path = \OC\Files\Filesystem::normalizePath($mountPoint . '/' . $internalPath); // reformat the path to be relative e.g. /user/files/folder becomes /folder/ $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); diff --git a/apps/files_encryption/settings-personal.php b/apps/files_encryption/settings-personal.php index d23a4cfdde..3aa8b39935 100644 --- a/apps/files_encryption/settings-personal.php +++ b/apps/files_encryption/settings-personal.php @@ -26,7 +26,7 @@ $recoveryEnabledForUser = $util->recoveryEnabledForUser(); $tmpl->assign('recoveryEnabled', $recoveryAdminEnabled); $tmpl->assign('recoveryEnabledForUser', $recoveryEnabledForUser); -$tmpl->assign("privateKeySet" , $privateKeySet); +$tmpl->assign('privateKeySet', $privateKeySet); return $tmpl->fetchPage(); diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php index 18fea1845f..c420b006c4 100644 --- a/apps/files_encryption/templates/settings-admin.php +++ b/apps/files_encryption/templates/settings-admin.php @@ -1,54 +1,56 @@
- +

- t( 'Encryption' )); ?> -
+ t('Encryption')); ?> +

+

- t( "Enable encryption passwords recovery key (allow sharing to recovery key):" )); ?> -
-
- - -
- /> - t( "Enabled" )); ?> -
- - /> - t( "Disabled" )); ?> + t("Enable encryption passwords recovery key (allow sharing to recovery key):")); ?> +
+
+ + +
+ /> + t("Enabled")); ?> +
+ + /> + t("Disabled")); ?>

-

+

+

- t( "Change encryption passwords recovery key:" )); ?> -

- t("Change encryption passwords recovery key:")); ?> +

+ /> - -
- /> + +
+ /> - -
+ /> + +

diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php index bb84ff2690..d856e5d59b 100755 --- a/apps/files_encryption/tests/crypt.php +++ b/apps/files_encryption/tests/crypt.php @@ -92,8 +92,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { // reset app files_trashbin if ($this->stateFilesTrashbin) { OC_App::enable('files_trashbin'); - } - else { + } else { OC_App::disable('files_trashbin'); } } diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index 28f0de4941..9a0d542c6d 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -111,8 +111,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // reset app files_trashbin if ($this->stateFilesTrashbin) { OC_App::enable('files_trashbin'); - } - else { + } else { OC_App::disable('files_trashbin'); } } From 563f343291fb5d0292c66cb761a053557bfdae47 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Mon, 3 Jun 2013 19:06:20 +0200 Subject: [PATCH 031/145] fix password change when files_encryption app is disabled --- settings/ajax/changepassword.php | 52 ++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 23 deletions(-) diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index cb66c57c74..90d213f179 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -7,38 +7,44 @@ OC_JSON::checkLoggedIn(); // Manually load apps to ensure hooks work correctly (workaround for issue 1503) OC_APP::loadApps(); -$username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); -$password = isset($_POST["password"]) ? $_POST["password"] : null; -$oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:''; -$recoveryPassword=isset($_POST["recoveryPassword"])?$_POST["recoveryPassword"]:null; +$username = isset($_POST['username']) ? $_POST['username'] : OC_User::getUser(); +$password = isset($_POST['password']) ? $_POST['password'] : null; +$oldPassword = isset($_POST['oldpassword']) ? $_POST['oldpassword'] : ''; +$recoveryPassword = isset($_POST['recoveryPassword']) ? $_POST['recoveryPassword'] : null; $userstatus = null; -if(OC_User::isAdminUser(OC_User::getUser())) { +if (OC_User::isAdminUser(OC_User::getUser())) { $userstatus = 'admin'; } -if(OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { +if (OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { $userstatus = 'subadmin'; } -if(OC_User::getUser() === $username && OC_User::checkPassword($username, $oldPassword)) { +if (OC_User::getUser() === $username && OC_User::checkPassword($username, $oldPassword)) { $userstatus = 'user'; } -if(is_null($userstatus)) { - OC_JSON::error( array( "data" => array( "message" => "Authentication error" ))); +if (is_null($userstatus)) { + OC_JSON::error(array('data' => array('message' => 'Authentication error'))); exit(); } +if (\OCP\App::isEnabled('files_encryption')) { + $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $username); + $recoveryAdminEnabled = OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'); + $recoveryEnabledForUser = $util->recoveryEnabledForUser(); -$util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $username); -$recoveryAdminEnabled = OC_Appconfig::getValue( 'files_encryption', 'recoveryAdminEnabled' ); -$recoveryEnabledForUser = $util->recoveryEnabledForUser(); - -if ($recoveryAdminEnabled && $recoveryEnabledForUser && $recoveryPassword == '') { - OC_JSON::error(array("data" => array( "message" => "Please provide a admin recovery password, otherwise all user data will be lost" ))); -}elseif ( $recoveryPassword && ! $util->checkRecoveryPassword($recoveryPassword) ) { - OC_JSON::error(array("data" => array( "message" => "Wrong admin recovery password. Please check the password and try again." ))); -}elseif(!is_null($password) && OC_User::setPassword( $username, $password, $recoveryPassword )) { - OC_JSON::success(array("data" => array( "username" => $username ))); -} -else{ - OC_JSON::error(array("data" => array( "message" => "Unable to change password" ))); -} + if ($recoveryAdminEnabled && $recoveryEnabledForUser && $recoveryPassword === '') { + OC_JSON::error(array('data' => array('message' => 'Please provide a admin recovery password, otherwise all user data will be lost'))); + } elseif ($recoveryPassword && !$util->checkRecoveryPassword($recoveryPassword)) { + OC_JSON::error(array('data' => array('message' => 'Wrong admin recovery password. Please check the password and try again.'))); + } elseif (!is_null($password) && OC_User::setPassword($username, $password, $recoveryPassword)) { + OC_JSON::success(array('data' => array('username' => $username))); + } else { + OC_JSON::error(array('data' => array('message' => 'Unable to change password'))); + } +} else { + if (!is_null($password) && OC_User::setPassword($username, $password)) { + OC_JSON::success(array('data' => array('username' => $username))); + } else { + OC_JSON::error(array('data' => array('message' => 'Unable to change password'))); + } +} \ No newline at end of file From b46e7323ec6189f16405b8a22b073ca2d18d3bdb Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Mon, 3 Jun 2013 19:10:55 +0200 Subject: [PATCH 032/145] fixed typo --- apps/files_encryption/ajax/updatePrivateKeyPassword.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/ajax/updatePrivateKeyPassword.php b/apps/files_encryption/ajax/updatePrivateKeyPassword.php index 49f97dd323..6fd63dae9c 100644 --- a/apps/files_encryption/ajax/updatePrivateKeyPassword.php +++ b/apps/files_encryption/ajax/updatePrivateKeyPassword.php @@ -39,7 +39,7 @@ if ($decryptedKey) { $encryptedKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($decryptedKey, $newPassword); $view->file_put_contents($keyPath, $encryptedKey); - $session->getPrivateKey($decryptedKey); + $session->setPrivateKey($decryptedKey); $return = true; } From ef97481a0d7dcedba830bc423d623111f6c2e774 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Mon, 3 Jun 2013 23:41:57 +0200 Subject: [PATCH 033/145] changed redirect handling --- apps/files_encryption/files/error.php | 18 +++++++++++++ apps/files_encryption/lib/helper.php | 9 +++++++ apps/files_encryption/lib/stream.php | 25 +++++++------------ .../templates/invalid_private_key.php | 10 ++++++++ 4 files changed, 46 insertions(+), 16 deletions(-) create mode 100644 apps/files_encryption/files/error.php create mode 100644 apps/files_encryption/templates/invalid_private_key.php diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php new file mode 100644 index 0000000000..3118299b51 --- /dev/null +++ b/apps/files_encryption/files/error.php @@ -0,0 +1,18 @@ + array('message' => $l->t('Your private key is not valid! Maybe the your password was changed from outside.')))); + } else { + header('HTTP/1.0 404 ' . $l->t('Your private key is not valid! Maybe the your password was changed from outside.')); + $tmpl = new OC_Template('files_encryption', 'invalid_private_key', 'guest'); + $tmpl->printPage(); + } + + exit; +} +?> diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 3e581a6ee3..daa95f3f89 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -194,4 +194,13 @@ class Helper { return $relPath; } + + /** + * @brief redirect to a error page + */ + public static function redirectToErrorPage() { + $location = \OC_Helper::linkToAbsolute('apps/files_encryption/files', 'error.php'); + header('Location: ' . $location); + exit(); + } } \ No newline at end of file diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index dee5a7cccc..3c1eb2c5f5 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -116,6 +116,11 @@ class Stream { } else { + if($this->privateKey === false) { + // if private key is not valid redirect user to a error page + \OCA\Encryption\Helper::redirectToErrorPage(); + } + $this->size = $this->rootView->filesize($this->rawPath, $mode); } @@ -239,12 +244,8 @@ class Stream { // if there is no valid private key return false if ($this->privateKey === false) { - if (\OC_Util::isCallRegistered()) { - $l = \OC_L10N::get('core'); - \OCP\JSON::error(array('data' => array('message' => $l->t('Private key is not valid! Maybe the user password was changed from outside if so please change it back to gain access')))); - throw new \Exception('Private key for user "' . $this->userId - . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access'); - } + // if private key is not valid redirect user to a error page + \OCA\Encryption\Helper::redirectToErrorPage(); return false; } @@ -450,10 +451,6 @@ class Stream { // if there is no valid private key return false if ($this->privateKey === false) { - if (\OC_Util::isCallRegistered()) { - $l = \OC_L10N::get('core'); - \OCP\JSON::error(array('data' => array('message' => $l->t('Private key is not valid! Maybe the user password was changed from outside if so please change it back to gain access')))); - // cleanup if ($this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb') { @@ -469,12 +466,8 @@ class Stream { \OC_FileProxy::$enabled = $proxyStatus; } - throw new \Exception('Private key for user "' . $this->userId - . '" is not valid! Maybe the user password was changed from outside if so please change it back to gain access'); - } - - - return false; + // if private key is not valid redirect user to a error page + \OCA\Encryption\Helper::redirectToErrorPage(); } if ( diff --git a/apps/files_encryption/templates/invalid_private_key.php b/apps/files_encryption/templates/invalid_private_key.php new file mode 100644 index 0000000000..b0ff1db599 --- /dev/null +++ b/apps/files_encryption/templates/invalid_private_key.php @@ -0,0 +1,10 @@ +
    +
  • + + + t('Your private key is not valid! Maybe the your password was changed from outside.')); ?> +
    + t('You can unlock your private key in your ')); ?> t('personal settings')); ?>. +
    +
  • +
From 14ac4fab054c332fe3a0e110bec6cb118bf83186 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Tue, 4 Jun 2013 00:41:47 +0200 Subject: [PATCH 034/145] better handling for http post --- apps/files_encryption/files/error.php | 4 ++++ apps/files_encryption/lib/helper.php | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index 3118299b51..37e94e5658 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -4,6 +4,10 @@ if (!isset($_)) { //also provide standalone error page $l = OC_L10N::get('files_encryption'); + if(isset($_GET['p']) && $_GET['p'] === '1') { + header('HTTP/1.0 404 ' . $l->t('Your private key is not valid! Maybe the your password was changed from outside.')); + } + // check if ajax request if(!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { \OCP\JSON::error(array('data' => array('message' => $l->t('Your private key is not valid! Maybe the your password was changed from outside.')))); diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index daa95f3f89..923cc2ce9d 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -200,7 +200,11 @@ class Helper { */ public static function redirectToErrorPage() { $location = \OC_Helper::linkToAbsolute('apps/files_encryption/files', 'error.php'); - header('Location: ' . $location); + $post = 0; + if(count($_POST) > 0) { + $post = 1; + } + header('Location: ' . $location . '?p=' . $post); exit(); } } \ No newline at end of file From f6089920997d42bb4728c9f2f6e81ece1c398861 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 3 Jun 2013 19:43:43 -0400 Subject: [PATCH 035/145] Revise Contributing document --- CONTRIBUTING.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fd87513ec2..803b946498 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,11 +1,11 @@ ## Submitting issues -If you have questions about how to use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. +If you have questions about how to install or use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. ### Guidelines -* Please search the existing issues first, it's likely that your issue was already reported. -* [Report the issue](https://github.com/owncloud/core/issues/new) using our [template][template], it includes all the informations we need to track down the issue. -* This repository is *only* for issues within the ownCloud core code. Issues in other compontents should be reported in their own repositores: +* Please search the existing issues first, it's likely that your issue was already reported or even fixed. +* This repository is *only* for issues within the ownCloud core code. This also includes the apps: files, encryption, external storage, sharing, trashbin, versions, LDAP, and WebDAV Auth +* The issues in other components should be reported in their respective repositories: - [Android client](https://github.com/owncloud/android/issues) - [iOS client](https://github.com/owncloud/ios-issues/issues) - [Desktop client](https://github.com/owncloud/mirall/issues) @@ -14,12 +14,12 @@ If you have questions about how to use ownCloud, please direct these to the [mai - [Calendar](https://github.com/owncloud/calendar/issues) - [Contacts](https://github.com/owncloud/contacts/issues) - [Mail](https://github.com/owncloud/mail/issues) + - [Media/Music](https://github.com/owncloud/media/issues) - [News](https://github.com/owncloud/news/issues) - [Notes](https://github.com/owncloud/notes/issues) - [Shorty](https://github.com/owncloud/shorty/issues) - - [other apps](https://github.com/owncloud/apps/issues) (e.g. Pictures, Music, Tasks, ...) - -If your issue appears to be a bug, and hasn't been reported, open a new issue. + - [All other apps](https://github.com/owncloud/apps/issues) (e.g. Pictures, Tasks, ...) +* [Report the issue](https://github.com/owncloud/core/issues/new) using our [template][template], it includes all the information we need to track down the issue. Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. @@ -34,7 +34,7 @@ Thanks for wanting to contribute source code to ownCloud. That's great! Before we're able to merge your code into the ownCloud core, you need to sign our [Contributor Agreement][agreement]. -Please read the [Developer Manuals][devmanual] to get useful infos like how to create your first application or how to test the ownCloud code with phpunit. +Please read the [Developer Manuals][devmanual] to learn how to create your first application or how to test the ownCloud code with PHPUnit. [agreement]: http://owncloud.org/about/contributor-agreement/ [devmanual]: http://owncloud.org/dev/ From 4ee7a428ae691352138550f9bbd003cbe4dbe35f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 4 Jun 2013 10:49:58 +0200 Subject: [PATCH 036/145] link directly to the encryption settings --- apps/files_encryption/templates/invalid_private_key.php | 2 +- apps/files_encryption/templates/settings-personal.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_encryption/templates/invalid_private_key.php b/apps/files_encryption/templates/invalid_private_key.php index b0ff1db599..5c086d6514 100644 --- a/apps/files_encryption/templates/invalid_private_key.php +++ b/apps/files_encryption/templates/invalid_private_key.php @@ -1,6 +1,6 @@
From 7fc5151d95d7b4c6f27fd1d6207c93015da8315a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 5 Jun 2013 18:53:02 +0200 Subject: [PATCH 043/145] add a hint that the admin can recover your files; Don't let the user change the recovery settings if no private key is set --- .../files_encryption/templates/settings-personal.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index 8dab48828a..3851245320 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -7,9 +7,15 @@

- +
- t( "Set your old private key password to your current log-in password." ) ); ?> + t( "Set your old private key password to your current log-in password." ) ); ?> + t( " If you don't remember your old password you can ask your administrator to recover your files." ) ); + endif; ?> +
- +


From 9d535d0034f4a8c3c1028301fac1e01db433e528 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 5 Jun 2013 21:50:38 +0300 Subject: [PATCH 044/145] trashbin -> deleted files --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 803b946498..f5733e7310 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ If you have questions about how to install or use ownCloud, please direct these ### Guidelines * Please search the existing issues first, it's likely that your issue was already reported or even fixed. -* This repository is *only* for issues within the ownCloud core code. This also includes the apps: files, encryption, external storage, sharing, trashbin, versions, LDAP, and WebDAV Auth +* This repository is *only* for issues within the ownCloud core code. This also includes the apps: files, encryption, external storage, sharing, deleted files, versions, LDAP, and WebDAV Auth * The issues in other components should be reported in their respective repositories: - [Android client](https://github.com/owncloud/android/issues) - [iOS client](https://github.com/owncloud/ios-issues/issues) From 97e05b71f8615e17ef07066df2b53896c794b5e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 6 Jun 2013 12:26:05 +0200 Subject: [PATCH 045/145] add hint about what the recovery password field is for --- settings/templates/users.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/settings/templates/users.php b/settings/templates/users.php index a6df85983d..b0637814f5 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -31,7 +31,11 @@ $_['subadmingroups'] = array_flip($items);

From fdaab7372ede9f09905a94e574a6b91beb2314ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 6 Jun 2013 13:30:18 +0200 Subject: [PATCH 046/145] always emit the preSetPassword hook, this should only indicate the intention. Finally the post-hooks indicate if it was successful or not --- lib/user/user.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/user/user.php b/lib/user/user.php index f9466b7149..55d7848a97 100644 --- a/lib/user/user.php +++ b/lib/user/user.php @@ -131,10 +131,10 @@ class User { * @return bool */ public function setPassword($password, $recoveryPassword) { + if ($this->emitter) { + $this->emitter->emit('\OC\User', 'preSetPassword', array($this, $password, $recoveryPassword)); + } if ($this->backend->implementsActions(\OC_USER_BACKEND_SET_PASSWORD)) { - if ($this->emitter) { - $this->emitter->emit('\OC\User', 'preSetPassword', array($this, $password, $recoveryPassword)); - } $result = $this->backend->setPassword($this->uid, $password); if ($this->emitter) { $this->emitter->emit('\OC\User', 'postSetPassword', array($this, $password, $recoveryPassword)); From d7a9852f7b1ea7999f730fde8bd9816da68dad8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 6 Jun 2013 13:32:02 +0200 Subject: [PATCH 047/145] use pre_setPassword hook to update the encryption keys if the back-end doesn't support password change; improved output to let the admin know what happened --- apps/files_encryption/hooks/hooks.php | 9 ++++++++ apps/files_encryption/lib/helper.php | 1 + settings/ajax/changepassword.php | 30 +++++++++++++++++++-------- 3 files changed, 31 insertions(+), 9 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index d1b08a0b97..c4b247da1e 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -141,6 +141,15 @@ class Hooks { \OC_FileProxy::$enabled = $proxyStatus; } + /** + * @brief If the password can't be changed within ownCloud, than update the key password in advance. + */ + public static function preSetPassphrase($params) { + if ( ! \OC_User::canUserChangePassword($params['uid']) ) { + self::setPassphrase($params); + } + } + /** * @brief Change a user's encryption passphrase * @param array $params keys: uid, password diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index e078ab3554..184e178249 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -48,6 +48,7 @@ class Helper { \OCP\Util::connectHook('OC_User', 'post_login', 'OCA\Encryption\Hooks', 'login'); \OCP\Util::connectHook('OC_User', 'post_setPassword', 'OCA\Encryption\Hooks', 'setPassphrase'); + \OCP\Util::connectHook('OC_User', 'pre_setPassword', 'OCA\Encryption\Hooks', 'preSetPassphrase'); \OCP\Util::connectHook('OC_User', 'post_createUser', 'OCA\Encryption\Hooks', 'postCreateUser'); \OCP\Util::connectHook('OC_User', 'post_deleteUser', 'OCA\Encryption\Hooks', 'postDeleteUser'); } diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index cb66c57c74..3087781055 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -28,17 +28,29 @@ if(is_null($userstatus)) { exit(); } -$util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $username); $recoveryAdminEnabled = OC_Appconfig::getValue( 'files_encryption', 'recoveryAdminEnabled' ); -$recoveryEnabledForUser = $util->recoveryEnabledForUser(); -if ($recoveryAdminEnabled && $recoveryEnabledForUser && $recoveryPassword == '') { + +$validRecoveryPassword = false; +$recoveryPasswordSupported = false; + +if ($recoveryAdminEnabled) { + $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $username); + $validRecoveryPassword = $util->checkRecoveryPassword($recoveryPassword); + $recoveryPasswordSupported = $util->recoveryEnabledForUser(); +} + +if ($recoveryPasswordSupported && $recoveryPassword == '') { OC_JSON::error(array("data" => array( "message" => "Please provide a admin recovery password, otherwise all user data will be lost" ))); -}elseif ( $recoveryPassword && ! $util->checkRecoveryPassword($recoveryPassword) ) { +} elseif ( $recoveryPasswordSupported && ! $validRecoveryPassword) { OC_JSON::error(array("data" => array( "message" => "Wrong admin recovery password. Please check the password and try again." ))); -}elseif(!is_null($password) && OC_User::setPassword( $username, $password, $recoveryPassword )) { - OC_JSON::success(array("data" => array( "username" => $username ))); -} -else{ - OC_JSON::error(array("data" => array( "message" => "Unable to change password" ))); +} else { // now we know that everything is file regarding the recovery password, let's try to change the password + $result = OC_User::setPassword($username, $password, $recoveryPassword); + if (!$result && $recoveryPasswordSupported) { + OC_JSON::error(array("data" => array( "message" => "Back-end doesn't support password change, but the users encryption key was successfully updated." ))); + } elseif (!$result && !$recoveryPasswordSupported) { + OC_JSON::error(array("data" => array( "message" => "Unable to change password" ))); + } else { + OC_JSON::success(array("data" => array( "username" => $username ))); + } } From cf7321915d3913888e03e0624b32296194a91e6e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 6 Jun 2013 23:51:44 +0200 Subject: [PATCH 048/145] seperate mimetype guessing from filename --- lib/helper.php | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index 225e9fd2a9..c3dc8740ee 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -363,6 +363,26 @@ class OC_Helper { } } + /** + * Try to guess the mimetype based on filename + * + * @param string $name + * @return string + */ + static public function getFileNameMimeType($name){ + if(strpos($path, '.')) { + //try to guess the type by the file extension + if(!self::$mimetypes || self::$mimetypes != include 'mimetypes.list.php') { + self::$mimetypes=include 'mimetypes.list.php'; + } + $extension=strtolower(strrchr(basename($path), ".")); + $extension=substr($extension, 1);//remove leading . + $mimeType=(isset(self::$mimetypes[$extension]))?self::$mimetypes[$extension]:'application/octet-stream'; + }else{ + $mimeType='application/octet-stream'; + } + } + /** * get the mimetype form a local file * @param string $path @@ -377,17 +397,7 @@ class OC_Helper { return "httpd/unix-directory"; } - if(strpos($path, '.')) { - //try to guess the type by the file extension - if(!self::$mimetypes || self::$mimetypes != include 'mimetypes.list.php') { - self::$mimetypes=include 'mimetypes.list.php'; - } - $extension=strtolower(strrchr(basename($path), ".")); - $extension=substr($extension, 1);//remove leading . - $mimeType=(isset(self::$mimetypes[$extension]))?self::$mimetypes[$extension]:'application/octet-stream'; - }else{ - $mimeType='application/octet-stream'; - } + $mimeType = self::getFileNameMimeType($path); if($mimeType=='application/octet-stream' and function_exists('finfo_open') and function_exists('finfo_file') and $finfo=finfo_open(FILEINFO_MIME)) { @@ -609,7 +619,7 @@ class OC_Helper { } /** - * remove all files in PHP /oc-noclean temp dir + * remove all files in PHP /oc-noclean temp dir */ public static function cleanTmpNoClean() { $tmpDirNoCleanFile=get_temp_dir().'/oc-noclean/'; From 0470a5ba94d08447c169114387783d87c70c4382 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 7 Jun 2013 00:17:51 +0200 Subject: [PATCH 049/145] fix variable name --- lib/helper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index c3dc8740ee..84ebcf1d55 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -366,10 +366,10 @@ class OC_Helper { /** * Try to guess the mimetype based on filename * - * @param string $name + * @param string $path * @return string */ - static public function getFileNameMimeType($name){ + static public function getFileNameMimeType($path){ if(strpos($path, '.')) { //try to guess the type by the file extension if(!self::$mimetypes || self::$mimetypes != include 'mimetypes.list.php') { From 85abede9bf91b0bdbc2bbb938dc2cb5ef26fd361 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 7 Jun 2013 00:22:05 +0200 Subject: [PATCH 050/145] actually return result --- lib/helper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index 84ebcf1d55..a315c640d1 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -377,9 +377,9 @@ class OC_Helper { } $extension=strtolower(strrchr(basename($path), ".")); $extension=substr($extension, 1);//remove leading . - $mimeType=(isset(self::$mimetypes[$extension]))?self::$mimetypes[$extension]:'application/octet-stream'; + return (isset(self::$mimetypes[$extension]))?self::$mimetypes[$extension]:'application/octet-stream'; }else{ - $mimeType='application/octet-stream'; + return 'application/octet-stream'; } } From b25ab94a08ab9ba5e322043ac470d5352d456c71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 7 Jun 2013 20:17:48 +0200 Subject: [PATCH 051/145] only check for recovery key if someone else than the user wants to change the password --- settings/ajax/changepassword.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 90d213f179..e8adb8c959 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -27,7 +27,7 @@ if (is_null($userstatus)) { OC_JSON::error(array('data' => array('message' => 'Authentication error'))); exit(); } -if (\OCP\App::isEnabled('files_encryption')) { +if (\OCP\App::isEnabled('files_encryption') && $userstatus !== 'user') { $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $username); $recoveryAdminEnabled = OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'); $recoveryEnabledForUser = $util->recoveryEnabledForUser(); From b39113ae3ea59db7058fe829fc0a5e4dfd49bac6 Mon Sep 17 00:00:00 2001 From: infoneo Date: Sat, 8 Jun 2013 18:39:25 +0300 Subject: [PATCH 052/145] Update mapper.php Now slugify is performed on whole filename (including extension). Changed method of adding index number (using regular expressions pathinfo() method removed). --- lib/files/mapper.php | 33 ++++++++------------------------- 1 file changed, 8 insertions(+), 25 deletions(-) diff --git a/lib/files/mapper.php b/lib/files/mapper.php index d9e116bf25..748b65dc4f 100644 --- a/lib/files/mapper.php +++ b/lib/files/mapper.php @@ -174,26 +174,7 @@ class Mapper $sluggedElements = array(); $last= end($pathElements); - $parts = pathinfo($last); - $filename = $parts['filename']; - $extension = $parts['extension']; - - - if ((preg_match('~[-\w]+~', $filename)) && (preg_match('~[-\w]+~', $extension))){ - - // rip off the extension ext from last element - array_pop($pathElements); - array_push($pathElements, $filename); - - } else { - - if (isset($parts['extension'])) { - unset($parts['extension']); - } - - } - foreach ($pathElements as $pathElement) { // remove empty elements if (empty($pathElement)) { @@ -206,13 +187,15 @@ class Mapper // apply index to file name if ($index !== null) { $last= array_pop($sluggedElements); - array_push($sluggedElements, $last.'-'.$index); - } + + // if filename contains periods - add index number before last period + if (preg_match('~\.[^\.]+$~i',$last,$extension)){ + array_push($sluggedElements, substr($last,0,-(strlen($extension[0]))).'-'.$index.$extension[0]); + } else { + // if filename doesn't contain periods add index ofter the last char + array_push($sluggedElements, $last.'-'.$index); + } - // add back the extension - if (isset($parts['extension'])) { - $last= array_pop($sluggedElements); - array_push($sluggedElements, $last.'.'.$parts['extension']); } $sluggedPath = $this->unchangedPhysicalRoot.implode('/', $sluggedElements); From 199207253e2b02808809b79ef1aa27e050b0aff1 Mon Sep 17 00:00:00 2001 From: infoneo Date: Sat, 8 Jun 2013 19:44:58 +0300 Subject: [PATCH 053/145] Update mapper.php --- tests/lib/files/mapper.php | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/tests/lib/files/mapper.php b/tests/lib/files/mapper.php index e3859bc0f2..48ae95b7e7 100644 --- a/tests/lib/files/mapper.php +++ b/tests/lib/files/mapper.php @@ -45,8 +45,20 @@ class Mapper extends \PHPUnit_Framework_TestCase { $this->assertEquals('D:/a/b/text', $this->mapper->slugifyPath('D:/a/b/text')); // with double dot - $this->assertEquals('D:/text-text.txt', $this->mapper->slugifyPath('D:/text.text.txt')); - $this->assertEquals('D:/text-text-2.txt', $this->mapper->slugifyPath('D:/text.text.txt', 2)); - $this->assertEquals('D:/a/b/text-text.txt', $this->mapper->slugifyPath('D:/a/b/text.text.txt')); + $this->assertEquals('D:/text.text.txt', $this->mapper->slugifyPath('D:/text.text.txt')); + $this->assertEquals('D:/text.text-2.txt', $this->mapper->slugifyPath('D:/text.text.txt', 2)); + $this->assertEquals('D:/a/b/text.text.txt', $this->mapper->slugifyPath('D:/a/b/text.text.txt')); + + // foldername and filename with periods + $this->assertEquals('D:/folder.name.with.periods', $this->mapper->slugifyPath('D:/folder.name.with.periods')); + $this->assertEquals('D:/folder.name.with.periods/test-2.txt', $this->mapper->slugifyPath('D:/folder.name.with.periods/test.txt', 2)); + $this->assertEquals('D:/folder.name.with.periods/test.txt', $this->mapper->slugifyPath('D:/folder.name.with.periods/test.txt')); + + // foldername and filename with periods and spaces + $this->assertEquals('D:/folder.name.with.peri-ods', $this->mapper->slugifyPath('D:/folder.name.with.peri ods')); + $this->assertEquals('D:/folder.name.with.peri-ods/te-st-2.t-x-t', $this->mapper->slugifyPath('D:/folder.name.with.peri ods/te st.t x t', 2)); + $this->assertEquals('D:/folder.name.with.peri-ods/te-st.t-x-t', $this->mapper->slugifyPath('D:/folder.name.with.peri ods/te st.t x t')); + + } } From 73fb722a9e34dccc428bbf38adf40657ac98c94e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 09:31:22 +0200 Subject: [PATCH 054/145] add timeouts 3/30/90 to phpunit tests --- apps/files_encryption/tests/crypt.php | 67 ++++++++++++++++++++++ apps/files_encryption/tests/keymanager.php | 18 ++++++ apps/files_encryption/tests/share.php | 16 ++++++ apps/files_encryption/tests/trashbin.php | 2 + apps/files_encryption/tests/util.php | 16 ++++++ tests/lib/dbschema.php | 3 + tests/lib/files/cache/watcher.php | 3 + tests/lib/files/view.php | 24 ++++++++ tests/phpunit-autotest.xml | 7 ++- 9 files changed, 155 insertions(+), 1 deletion(-) diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php index 32156eea27..341904b118 100755 --- a/apps/files_encryption/tests/crypt.php +++ b/apps/files_encryption/tests/crypt.php @@ -103,6 +103,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { \OC_User::deleteUser(\Test_Encryption_Crypt::TEST_ENCRYPTION_CRYPT_USER1); } + /** + * @medium + */ function testGenerateKey() { # TODO: use more accurate (larger) string length for test confirmation @@ -114,6 +117,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @large * @return String */ function testGenerateIv() { @@ -127,6 +131,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @large * @depends testGenerateIv */ function testConcatIv($iv) { @@ -159,6 +164,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @depends testConcatIv */ function testSplitIv($testConcatIv) { @@ -175,6 +181,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @return string padded */ function testAddPadding() { @@ -190,6 +197,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @depends testAddPadding */ function testRemovePadding($padded) { @@ -200,6 +208,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testEncrypt() { $random = openssl_random_pseudo_bytes(13); @@ -212,6 +223,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testDecrypt() { $random = openssl_random_pseudo_bytes(13); @@ -226,6 +240,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testSymmetricEncryptFileContent() { # TODO: search in keyfile for actual content as IV will ensure this test always passes @@ -241,6 +258,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testSymmetricStreamEncryptShortFileContent() { $filename = 'tmp-' . time() . '.test'; @@ -291,6 +311,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief Test that data that is written by the crypto stream wrapper * @note Encrypted data is manually prepared and decrypted here to avoid dependency on success of stream_read * @note If this test fails with truncate content, check that enough array slices are being rejoined to form $e, as the crypt.php file may have gotten longer and broken the manual @@ -377,6 +398,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief Test that data that is read by the crypto stream wrapper */ function testSymmetricStreamDecryptShortFileContent() { @@ -406,6 +428,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $this->view->unlink($this->userId . '/files/' . $filename); } + /** + * @medium + */ function testSymmetricStreamDecryptLongFileContent() { $filename = 'tmp-' . time(); @@ -425,6 +450,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $this->view->unlink($this->userId . '/files/' . $filename); } + /** + * @medium + */ function testSymmetricEncryptFileContentKeyfile() { # TODO: search in keyfile for actual content as IV will ensure this test always passes @@ -440,6 +468,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testIsEncryptedContent() { $this->assertFalse(Encryption\Crypt::isCatfileContent($this->dataUrl)); @@ -452,6 +483,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } + /** + * @large + */ function testMultiKeyEncrypt() { # TODO: search in keyfile for actual content as IV will ensure this test always passes @@ -476,6 +510,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testKeyEncrypt() { // Generate keypair @@ -494,6 +531,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test encryption using legacy blowfish method */ function testLegacyEncryptShort() { @@ -510,6 +548,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test decryption using legacy blowfish method * @depends testLegacyEncryptShort */ @@ -522,6 +561,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test encryption using legacy blowfish method */ function testLegacyEncryptLong() { @@ -538,6 +578,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test decryption using legacy blowfish method * @depends testLegacyEncryptLong */ @@ -551,6 +592,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test generation of legacy encryption key * @depends testLegacyDecryptShort */ @@ -570,6 +612,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test decryption using legacy blowfish method * @depends testLegacyEncryptLong */ @@ -586,6 +629,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testRenameFile() { $filename = 'tmp-' . time(); @@ -614,6 +660,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $view->unlink($newFilename); } + /** + * @medium + */ function testMoveFileIntoFolder() { $filename = 'tmp-' . time(); @@ -644,6 +693,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $view->unlink($newFolder); } + /** + * @medium + */ function testMoveFolder() { $view = new \OC\Files\View('/' . $this->userId . '/files'); @@ -679,6 +731,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $view->unlink('/newfolder'); } + /** + * @medium + */ function testChangePassphrase() { $filename = 'tmp-' . time(); @@ -713,6 +768,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $view->unlink($filename); } + /** + * @medium + */ function testViewFilePutAndGetContents() { $filename = '/tmp-' . time(); @@ -744,6 +802,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $view->unlink($filename); } + /** + * @large + */ function testTouchExistingFile() { $filename = '/tmp-' . time(); $view = new \OC\Files\View('/' . $this->userId . '/files'); @@ -765,6 +826,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $view->unlink($filename); } + /** + * @medium + */ function testTouchFile() { $filename = '/tmp-' . time(); $view = new \OC\Files\View('/' . $this->userId . '/files'); @@ -786,6 +850,9 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $view->unlink($filename); } + /** + * @medium + */ function testFopenFile() { $filename = '/tmp-' . time(); $view = new \OC\Files\View('/' . $this->userId . '/files'); diff --git a/apps/files_encryption/tests/keymanager.php b/apps/files_encryption/tests/keymanager.php index 40ae1659a5..19ba9a8117 100644 --- a/apps/files_encryption/tests/keymanager.php +++ b/apps/files_encryption/tests/keymanager.php @@ -103,6 +103,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase { \OC_FileProxy::$enabled = true; } + /** + * @medium + */ function testGetPrivateKey() { $key = Encryption\Keymanager::getPrivateKey($this->view, $this->userId); @@ -119,6 +122,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testGetPublicKey() { $publiceKey = Encryption\Keymanager::getPublicKey($this->view, $this->userId); @@ -132,6 +138,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase { $this->assertArrayHasKey('key', $sslInfo); } + /** + * @medium + */ function testSetFileKey() { # NOTE: This cannot be tested until we are able to break out @@ -165,6 +174,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testGetUserKeys() { $keys = Encryption\Keymanager::getUserKeys($this->view, $this->userId); @@ -188,6 +200,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase { $this->assertArrayHasKey('key', $sslInfoPrivate); } + /** + * @medium + */ function testFixPartialFilePath() { $partFilename = 'testfile.txt.part'; @@ -202,6 +217,9 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase { $this->assertEquals('testfile.txt', Encryption\Keymanager::fixPartialFilePath($filename)); } + /** + * @medium + */ function testRecursiveDelShareKeys() { // generate filename diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index 816bc709f2..15dd5058eb 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -129,6 +129,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { } /** + * @medium * @param bool $withTeardown */ function testShareFile($withTeardown = true) { @@ -205,6 +206,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { } /** + * @medium * @param bool $withTeardown */ function testReShareFile($withTeardown = true) { @@ -275,6 +277,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { } /** + * @medium * @param bool $withTeardown * @return array */ @@ -363,6 +366,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { } /** + * @medium * @param bool $withTeardown */ function testReShareFolder($withTeardown = true) { @@ -564,6 +568,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { . $this->filename . '.' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '.shareKey')); } + /** + * @medium + */ function testShareFileWithGroup() { // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); @@ -639,6 +646,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { } + /** + * @large + */ function testRecoveryFile() { // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); @@ -741,6 +751,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { $this->assertEquals(0, \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled')); } + /** + * @large + */ function testRecoveryForUser() { // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); @@ -837,6 +850,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { $this->assertEquals(0, \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled')); } + /** + * @medium + */ function testFailShareFile() { // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); diff --git a/apps/files_encryption/tests/trashbin.php b/apps/files_encryption/tests/trashbin.php index 29f8fb5a39..591113e736 100755 --- a/apps/files_encryption/tests/trashbin.php +++ b/apps/files_encryption/tests/trashbin.php @@ -184,6 +184,7 @@ class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test restore file * * @depends testDeleteFile @@ -215,6 +216,7 @@ class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test delete file forever */ function testPermanentDeleteFile() { diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index 0dc452a41c..6d6c8bca3d 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -118,6 +118,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test that paths set during User construction are correct */ function testKeyPaths() { @@ -132,6 +133,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test setup of encryption directories */ function testSetupServerSide() { @@ -139,6 +141,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test checking whether account is ready for encryption, */ function testUserIsReady() { @@ -159,6 +162,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { // } /** + * @medium * @brief test checking whether account is not ready for encryption, */ function testIsLegacyUser() { @@ -186,6 +190,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { $this->assertEquals($this->legacyKey, \OC::$session->get('legacyKey')); } + /** + * @medium + */ function testRecoveryEnabledForUser() { $util = new Encryption\Util($this->view, $this->userId); @@ -206,6 +213,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { } + /** + * @medium + */ function testGetUidAndFilename() { \OC_User::setUserId(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1); @@ -232,6 +242,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { $this->view->unlink($this->userId . '/files/' . $filename); } + /** + * @medium + */ function testIsSharedPath() { $sharedPath = '/user1/files/Shared/test'; $path = '/user1/files/test'; @@ -241,6 +254,9 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->util->isSharedPath($path)); } + /** + * @large + */ function testEncryptLegacyFiles() { \Test_Encryption_Util::loginHelper(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER); diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index e20a04ef7f..a2ef1572fd 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -36,6 +36,9 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { } // everything in one test, they depend on each other + /** + * @medium + */ public function testSchema() { $this->doTestSchemaCreating(); $this->doTestSchemaChanging(); diff --git a/tests/lib/files/cache/watcher.php b/tests/lib/files/cache/watcher.php index e43c86ed43..d9301a903c 100644 --- a/tests/lib/files/cache/watcher.php +++ b/tests/lib/files/cache/watcher.php @@ -63,6 +63,9 @@ class Watcher extends \PHPUnit_Framework_TestCase { $this->assertFalse($cache->inCache('folder/bar2.txt')); } + /** + * @medium + */ public function testFileToFolder() { $storage = $this->getTestStorage(); $cache = $storage->getCache(); diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 01f9a9cca1..830913a91a 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -33,6 +33,9 @@ class View extends \PHPUnit_Framework_TestCase { } } + /** + * @medium + */ public function testCacheAPI() { $storage1 = $this->getTestStorage(); $storage2 = $this->getTestStorage(); @@ -104,6 +107,9 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertEquals(array(), $rootView->getDirectoryContent('/non/existing')); } + /** + * @medium + */ function testGetPath() { $storage1 = $this->getTestStorage(); $storage2 = $this->getTestStorage(); @@ -127,6 +133,9 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertNull($folderView->getPath($id1)); } + /** + * @medium + */ function testMountPointOverwrite() { $storage1 = $this->getTestStorage(false); $storage2 = $this->getTestStorage(); @@ -170,6 +179,9 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertEquals($textSize, $folderData[0]['size']); } + /** + * @medium + */ function testSearch() { $storage1 = $this->getTestStorage(); $storage2 = $this->getTestStorage(); @@ -217,6 +229,9 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertEquals(3, count($folderView->searchByMime('text'))); } + /** + * @medium + */ function testWatcher() { $storage1 = $this->getTestStorage(); \OC\Files\Filesystem::mount($storage1, array(), '/'); @@ -234,6 +249,9 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertEquals(3, $cachedData['size']); } + /** + * @medium + */ function testCopyBetweenStorages() { $storage1 = $this->getTestStorage(); $storage2 = $this->getTestStorage(); @@ -255,6 +273,9 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertTrue($rootView->file_exists('/substorage/folder/bar.txt')); } + /** + * @medium + */ function testMoveBetweenStorages() { $storage1 = $this->getTestStorage(); $storage2 = $this->getTestStorage(); @@ -271,6 +292,9 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertTrue($rootView->file_exists('anotherfolder/bar.txt')); } + /** + * @medium + */ function testTouch() { $storage = $this->getTestStorage(true, '\Test\Files\TemporaryNoTouch'); diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index e9ee7d8d70..d74451cbe6 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -1,5 +1,10 @@ - + lib/ apps.php From 124f34422c3b488869e0348c97d87aa0a69a3fe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 09:53:29 +0200 Subject: [PATCH 055/145] add missing backticks all over the place --- apps/files_encryption/lib/util.php | 8 ++++---- lib/files/cache/backgroundwatcher.php | 4 ++-- lib/files/cache/cache.php | 6 +++--- lib/public/share.php | 12 ++++++------ tests/lib/db.php | 22 +++++++++++----------- 5 files changed, 26 insertions(+), 26 deletions(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 04bd4dc8ac..a6711880c2 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -289,7 +289,7 @@ class Util { */ public function recoveryEnabledForUser() { - $sql = 'SELECT `recovery_enabled` FROM `*PREFIX*encryption` WHERE uid = ?'; + $sql = 'SELECT `recovery_enabled` FROM `*PREFIX*encryption` WHERE `uid` = ?'; $args = array($this->userId); @@ -347,7 +347,7 @@ class Util { // Create a new record instead } else { - $sql = 'UPDATE `*PREFIX*encryption` SET recovery_enabled = ? WHERE uid = ?'; + $sql = 'UPDATE `*PREFIX*encryption` SET `recovery_enabled` = ? WHERE `uid` = ?'; $args = array( $enabled, @@ -1060,7 +1060,7 @@ class Util { */ public function setMigrationStatus($status) { - $sql = 'UPDATE `*PREFIX*encryption` SET migration_status = ? WHERE uid = ?'; + $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ?'; $args = array( $status, @@ -1089,7 +1089,7 @@ class Util { */ public function getMigrationStatus() { - $sql = 'SELECT `migration_status` FROM `*PREFIX*encryption` WHERE uid = ?'; + $sql = 'SELECT `migration_status` FROM `*PREFIX*encryption` WHERE `uid` = ?'; $args = array($this->userId); diff --git a/lib/files/cache/backgroundwatcher.php b/lib/files/cache/backgroundwatcher.php index 8933101577..8e68f41cf4 100644 --- a/lib/files/cache/backgroundwatcher.php +++ b/lib/files/cache/backgroundwatcher.php @@ -59,9 +59,9 @@ class BackgroundWatcher { */ 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); + $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); + $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()) { diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index cae2e63e4d..6c2ef71098 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -241,7 +241,7 @@ class Cache { $params[] = $id; $query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET ' . implode(' = ?, ', $queryParts) . '=?' - . ' WHERE fileid = ?'); + . ' WHERE `fileid` = ?'); $query->execute($params); } @@ -385,10 +385,10 @@ class Cache { * remove all entries for files that are stored on the storage from the cache */ public function clear() { - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*filecache` WHERE storage = ?'); + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*filecache` WHERE `storage` = ?'); $query->execute(array($this->getNumericStorageId())); - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*storages` WHERE id = ?'); + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*storages` WHERE `id` = ?'); $query->execute(array($this->storageId)); } diff --git a/lib/public/share.php b/lib/public/share.php index 81f5515bb4..6a26101a1c 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -152,11 +152,11 @@ class Share { // Fetch all shares of this file path from DB $query = \OC_DB::prepare( - 'SELECT share_with + 'SELECT `share_with` FROM `*PREFIX*share` WHERE - item_source = ? AND share_type = ?' + `item_source` = ? AND `share_type` = ?' ); $result = $query->execute(array($source, self::SHARE_TYPE_USER)); @@ -171,11 +171,11 @@ class Share { // We also need to take group shares into account $query = \OC_DB::prepare( - 'SELECT share_with + 'SELECT `share_with` FROM `*PREFIX*share` WHERE - item_source = ? AND share_type = ?' + `item_source` = ? AND `share_type` = ?' ); $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); @@ -192,11 +192,11 @@ class Share { //check for public link shares if (!$publicShare) { $query = \OC_DB::prepare( - 'SELECT share_with + 'SELECT `share_with` FROM `*PREFIX*share` WHERE - item_source = ? AND share_type = ?' + `item_source` = ? AND `share_type` = ?' ); $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); diff --git a/tests/lib/db.php b/tests/lib/db.php index 440f3fb6bf..eff01bd906 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -33,15 +33,15 @@ class Test_DB extends PHPUnit_Framework_TestCase { } public function testQuotes() { - $query = OC_DB::prepare('SELECT `fullname` FROM *PREFIX*'.$this->table2.' WHERE `uri` = ?'); + $query = OC_DB::prepare('SELECT `fullname` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_1')); $this->assertTrue((bool)$result); $row = $result->fetchRow(); $this->assertFalse($row); - $query = OC_DB::prepare('INSERT INTO *PREFIX*'.$this->table2.' (`fullname`,`uri`) VALUES (?,?)'); + $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); $result = $query->execute(array('fullname test', 'uri_1')); $this->assertTrue((bool)$result); - $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM *PREFIX*'.$this->table2.' WHERE `uri` = ?'); + $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_1')); $this->assertTrue((bool)$result); $row = $result->fetchRow(); @@ -52,19 +52,19 @@ class Test_DB extends PHPUnit_Framework_TestCase { } public function testNOW() { - $query = OC_DB::prepare('INSERT INTO *PREFIX*'.$this->table2.' (`fullname`,`uri`) VALUES (NOW(),?)'); + $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (NOW(),?)'); $result = $query->execute(array('uri_2')); $this->assertTrue((bool)$result); - $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM *PREFIX*'.$this->table2.' WHERE `uri` = ?'); + $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_2')); $this->assertTrue((bool)$result); } public function testUNIX_TIMESTAMP() { - $query = OC_DB::prepare('INSERT INTO *PREFIX*'.$this->table2.' (`fullname`,`uri`) VALUES (UNIX_TIMESTAMP(),?)'); + $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (UNIX_TIMESTAMP(),?)'); $result = $query->execute(array('uri_3')); $this->assertTrue((bool)$result); - $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM *PREFIX*'.$this->table2.' WHERE `uri` = ?'); + $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_3')); $this->assertTrue((bool)$result); } @@ -88,7 +88,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->assertTrue((bool)$result); } - $query = OC_DB::prepare('SELECT * FROM *PREFIX*'.$this->table3); + $query = OC_DB::prepare('SELECT * FROM `*PREFIX*'.$this->table3.'`'); $result = $query->execute(); $this->assertTrue((bool)$result); $this->assertEquals('4', $result->numRows()); @@ -100,10 +100,10 @@ class Test_DB extends PHPUnit_Framework_TestCase { $carddata = 'This is a vCard'; // Normal test to have same known data inserted. - $query = OC_DB::prepare('INSERT INTO *PREFIX*'.$this->table2.' (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)'); + $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)'); $result = $query->execute(array($fullname, $uri, $carddata)); $this->assertTrue((bool)$result); - $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM *PREFIX*'.$this->table2.' WHERE `uri` = ?'); + $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); $row = $result->fetchRow(); @@ -119,7 +119,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { )); $this->assertTrue((bool)$result); - $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM *PREFIX*'.$this->table2.' WHERE `uri` = ?'); + $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); $row = $result->fetchRow(); From 307f1626e8ef86b1d4a04502c317e60066f92dd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 10:04:52 +0200 Subject: [PATCH 056/145] convert LIMIT to parameter --- lib/files/cache/legacy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/cache/legacy.php b/lib/files/cache/legacy.php index b8e2548639..ab8ae6dfad 100644 --- a/lib/files/cache/legacy.php +++ b/lib/files/cache/legacy.php @@ -45,7 +45,7 @@ class Legacy { return $this->cacheHasItems; } try { - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*fscache` WHERE `user` = ? LIMIT 1'); + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*fscache` WHERE `user` = ?',1); } catch (\Exception $e) { $this->cacheHasItems = false; return false; From b6f8d2b8595b3db9e1304694869946a4105d26d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 10:17:47 +0200 Subject: [PATCH 057/145] raise failed tests from first commit to size @medium --- apps/files_encryption/tests/stream.php | 3 +++ tests/lib/db.php | 3 +++ tests/lib/files/cache/watcher.php | 3 +++ tests/lib/geo.php | 4 ++++ 4 files changed, 13 insertions(+) diff --git a/apps/files_encryption/tests/stream.php b/apps/files_encryption/tests/stream.php index 3d97876754..50ac41e453 100644 --- a/apps/files_encryption/tests/stream.php +++ b/apps/files_encryption/tests/stream.php @@ -140,6 +140,9 @@ class Test_Encryption_Stream extends \PHPUnit_Framework_TestCase { $view->unlink($filename); } + /** + * @medium + */ function testStreamSetTimeout() { $filename = '/tmp-' . time(); $view = new \OC\Files\View('/' . $this->userId . '/files'); diff --git a/tests/lib/db.php b/tests/lib/db.php index 440f3fb6bf..924236604c 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -51,6 +51,9 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->assertFalse($row); } + /** + * @medium + */ public function testNOW() { $query = OC_DB::prepare('INSERT INTO *PREFIX*'.$this->table2.' (`fullname`,`uri`) VALUES (NOW(),?)'); $result = $query->execute(array('uri_2')); diff --git a/tests/lib/files/cache/watcher.php b/tests/lib/files/cache/watcher.php index d9301a903c..749b1ab75a 100644 --- a/tests/lib/files/cache/watcher.php +++ b/tests/lib/files/cache/watcher.php @@ -29,6 +29,9 @@ class Watcher extends \PHPUnit_Framework_TestCase { } } + /** + * @medium + */ function testWatcher() { $storage = $this->getTestStorage(); $cache = $storage->getCache(); diff --git a/tests/lib/geo.php b/tests/lib/geo.php index 82e6160868..2c3611c092 100644 --- a/tests/lib/geo.php +++ b/tests/lib/geo.php @@ -7,6 +7,10 @@ */ class Test_Geo extends PHPUnit_Framework_TestCase { + + /** + * @medium + */ function testTimezone() { $result = OC_Geo::timezone(3, 3); $expected = 'Africa/Porto-Novo'; From 5ec13742b312959f5e391e792c53433fb107975c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 10:33:02 +0200 Subject: [PATCH 058/145] use to_char to allow comparing string to CLOB cloumns in oracle --- lib/app.php | 3 ++- lib/connector/sabre/locks.php | 22 ++++++++++++++++++---- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/lib/app.php b/lib/app.php index c6f6e92e60..3e6cadfe2c 100644 --- a/lib/app.php +++ b/lib/app.php @@ -174,7 +174,8 @@ class OC_App{ $apps=array('files'); $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' .' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\''; - if (OC_Config::getValue( 'dbtype', 'sqlite' ) === 'oci') { //FIXME oracle hack + if (OC_Config::getValue( 'dbtype', 'sqlite' ) === 'oci') { + //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' .' WHERE `configkey` = \'enabled\' AND to_char(`configvalue`)=\'yes\''; } diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index e58e584fb4..745523c7a5 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -45,7 +45,12 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { // but otherwise reading locks from SQLite Databases will return // nothing $query = 'SELECT * FROM `*PREFIX*locks`' - .' WHERE `userid` = ? AND (`created` + `timeout`) > '.time().' AND (( `uri` = ?)'; + .' WHERE `userid` = ? AND (`created` + `timeout`) > '.time().' AND (( `uri` = ?)'; + if (OC_Config::getValue( "dbtype") === 'oci') { + //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison + $query = 'SELECT * FROM `*PREFIX*locks`' + .' WHERE `userid` = ? AND (`created` + `timeout`) > '.time().' AND (( to_char(`uri`) = ?)'; + } $params = array(OC_User::getUser(), $uri); // We need to check locks for every part in the uri. @@ -60,15 +65,24 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { if ($currentPath) $currentPath.='/'; $currentPath.=$part; - - $query.=' OR (`depth` != 0 AND `uri` = ?)'; + //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison + if (OC_Config::getValue( "dbtype") === 'oci') { + $query.=' OR (`depth` != 0 AND to_char(`uri`) = ?)'; + } else { + $query.=' OR (`depth` != 0 AND `uri` = ?)'; + } $params[] = $currentPath; } if ($returnChildLocks) { - $query.=' OR (`uri` LIKE ?)'; + //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison + if (OC_Config::getValue( "dbtype") === 'oci') { + $query.=' OR (to_char(`uri`) LIKE ?)'; + } else { + $query.=' OR (`uri` LIKE ?)'; + } $params[] = $uri . '/%'; } From fc27052887edc0475eafed87a5673ef5ab74536c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 11:44:04 +0200 Subject: [PATCH 059/145] shorten table identifiers in tests --- tests/data/db_structure.xml | 4 ++-- tests/data/db_structure2.xml | 2 +- tests/lib/db.php | 4 ++-- tests/lib/dbschema.php | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/data/db_structure.xml b/tests/data/db_structure.xml index af2e5ce343..8f6dc5e2ec 100644 --- a/tests/data/db_structure.xml +++ b/tests/data/db_structure.xml @@ -9,7 +9,7 @@ - *dbprefix*contacts_addressbooks + *dbprefix*cntcts_addrsbks @@ -77,7 +77,7 @@
- *dbprefix*contacts_cards + *dbprefix*cntcts_cards diff --git a/tests/data/db_structure2.xml b/tests/data/db_structure2.xml index c1bbb55048..fc6fe0bba7 100644 --- a/tests/data/db_structure2.xml +++ b/tests/data/db_structure2.xml @@ -9,7 +9,7 @@
- *dbprefix*contacts_addressbooks + *dbprefix*cntcts_addrsbks diff --git a/tests/lib/db.php b/tests/lib/db.php index 440f3fb6bf..d6626bc256 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -22,8 +22,8 @@ class Test_DB extends PHPUnit_Framework_TestCase { OC_DB::createDbFromStructure(self::$schema_file); $this->test_prefix = $r; - $this->table1 = $this->test_prefix.'contacts_addressbooks'; - $this->table2 = $this->test_prefix.'contacts_cards'; + $this->table1 = $this->test_prefix.'cntcts_addrsbks'; + $this->table2 = $this->test_prefix.'cntcts_cards'; $this->table3 = $this->test_prefix.'vcategory'; } diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index e20a04ef7f..dbc1283964 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -26,8 +26,8 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { file_put_contents( self::$schema_file2, $content ); $this->test_prefix = $r; - $this->table1 = $this->test_prefix.'contacts_addressbooks'; - $this->table2 = $this->test_prefix.'contacts_cards'; + $this->table1 = $this->test_prefix.'cntcts_addrsbks'; + $this->table2 = $this->test_prefix.'cntcts_cards'; } public function tearDown() { From c0bdbd9d81eb22ded95cd7ea9b26a0c36cfa1be0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 12:56:45 +0200 Subject: [PATCH 060/145] introduce and use executeAudited in db.php --- lib/db.php | 150 ++++++++++++++++++++++++++++++++--------------- lib/template.php | 21 +++++++ 2 files changed, 124 insertions(+), 47 deletions(-) diff --git a/lib/db.php b/lib/db.php index 6183655183..ccbfcf3ab5 100644 --- a/lib/db.php +++ b/lib/db.php @@ -23,7 +23,8 @@ class DatabaseException extends Exception{ private $query; - public function __construct($message, $query){ + //FIXME getQuery seems to be unused, maybe use parent constructor with $message, $code and $previous + public function __construct($message, $query = null){ parent::__construct($message); $this->query = $query; } @@ -391,10 +392,63 @@ class OC_DB { return $result; } + /** + * @brief execute a prepared statement, on error write log and throw exception + * @param mixed $stmt PDOStatementWrapper | MDB2_Statement_Common , + * an array with 'sql' and optionally 'limit' and 'offset' keys + * .. or a simple sql query string + * @param array $parameters + * @return result + * @throws DatabaseException + */ + static public function executeAudited( $stmt, array $parameters = null) { + if (is_string($stmt)) { + // convert to an array with 'sql' + if (stripos($stmt,'LIMIT') !== false) { //OFFSET requires LIMIT, se we only neet to check for LIMIT + // TODO try to convert LIMIT OFFSET notation to parameters, see fixLimitClauseForMSSQL + $message = 'LIMIT and OFFSET are forbidden for portability reasons,' + . ' pass an array with \'limit\' and \'offset\' instead'; + \OCP\Util::writeLog('db', $message, \OCP\Util::FATAL); + throw new DatabaseException($message); + } + $stmt = array('sql' => $stmt, 'limit' => null, 'offset' => null); + } + if (is_array($stmt)){ + // convert to prepared statement + if ( ! array_key_exists('sql', $stmt) ) { + $message = 'statement array must at least contain key \'sql\''; + \OCP\Util::writeLog('db', $message, \OCP\Util::FATAL); + throw new DatabaseException($message); + } + if ( ! array_key_exists('limit', $stmt) ) { + $stmt['limit'] = null; + } + if ( ! array_key_exists('limit', $stmt) ) { + $stmt['offset'] = null; + } + $stmt = self::prepare($stmt['sql'], $stmt['limit'], $stmt['offset']); + } + self::raiseExceptionOnError($stmt, 'Could not prepare statement'); + if ($stmt instanceof PDOStatementWrapper || $stmt instanceof MDB2_Statement_Common) { + $result = $stmt->execute($parameters); + self::raiseExceptionOnError($result, 'Could not execute statement'); + } else { + if (is_object($stmt)) { + $message = 'Expected a prepared statement or array got ' . get_class($stmt); + } else { + $message = 'Expected a prepared statement or array got ' . gettype($stmt); + } + \OCP\Util::writeLog('db', $message, \OCP\Util::FATAL); + throw new DatabaseException($message); + } + return $result; + } + /** * @brief gets last value of autoincrement * @param string $table The optional table name (will replace *PREFIX*) and add sequence suffix * @return int id + * @throws DatabaseException * * MDB2 lastInsertID() * @@ -404,25 +458,27 @@ class OC_DB { public static function insertid($table=null) { self::connect(); $type = OC_Config::getValue( "dbtype", "sqlite" ); - if( $type == 'pgsql' ) { - $query = self::prepare('SELECT lastval() AS id'); - $row = $query->execute()->fetchRow(); + if( $type === 'pgsql' ) { + $result = self::executeAudited('SELECT lastval() AS id'); + $row = $result->fetchRow(); + self::raiseExceptionOnError($row, 'fetching row for insertid failed'); return $row['id']; - } - if( $type == 'mssql' ) { + } else if( $type === 'mssql') { if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); $table = str_replace( '*PREFIX*', $prefix, $table ); } - return self::$connection->lastInsertId($table); - }else{ + $result = self::$connection->lastInsertId($table); + } else { if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); $suffix = OC_Config::getValue( "dbsequencesuffix", "_id_seq" ); $table = str_replace( '*PREFIX*', $prefix, $table ).$suffix; } - return self::$connection->lastInsertId($table); + $result = self::$connection->lastInsertId($table); } + self::raiseExceptionOnError($result, 'insertid failed'); + return $result; } /** @@ -512,6 +568,8 @@ class OC_DB { //clean up memory unlink( $file2 ); + + self::raiseExceptionOnError($definition,'Failed to parse the database definition'); // Die in case something went wrong if( $definition instanceof MDB2_Schema_Error ) { @@ -528,11 +586,7 @@ class OC_DB { $ret=self::$schema->createDatabase( $definition ); - // Die in case something went wrong - if( $ret instanceof MDB2_Error ) { - OC_Template::printErrorPage( self::$MDB2->getDebugOutput().' '.$ret->getMessage() . ': ' - . $ret->getUserInfo() ); - } + self::raiseExceptionOnError($ret,'Failed to create the database structure'); return true; } @@ -552,13 +606,7 @@ class OC_DB { $content = file_get_contents( $file ); $previousSchema = self::$schema->getDefinitionFromDatabase(); - if (PEAR::isError($previousSchema)) { - $error = $previousSchema->getMessage(); - $detail = $previousSchema->getDebugInfo(); - $message = 'Failed to get existing database structure for updating ('.$error.', '.$detail.')'; - OC_Log::write('core', $message, OC_Log::FATAL); - throw new Exception($message); - } + self::raiseExceptionOnError($previousSchema,'Failed to get existing database structure for updating'); // Make changes and save them to an in-memory file $file2 = 'static://db_scheme'; @@ -582,13 +630,7 @@ class OC_DB { //clean up memory unlink( $file2 ); - if (PEAR::isError($op)) { - $error = $op->getMessage(); - $detail = $op->getDebugInfo(); - $message = 'Failed to update database structure ('.$error.', '.$detail.')'; - OC_Log::write('core', $message, OC_Log::FATAL); - throw new Exception($message); - } + self::raiseExceptionOnError($op,'Failed to update database structure'); return true; } @@ -641,15 +683,9 @@ class OC_DB { } $query = substr($query, 0, strlen($query) - 5); try { - $stmt = self::prepare($query); - $result = $stmt->execute($inserts); - - } catch(PDOException $e) { - $entry = 'DB Error: "'.$e->getMessage() . '"
'; - $entry .= 'Offending command was: ' . $query . '
'; - OC_Log::write('core', $entry, OC_Log::FATAL); - error_log('DB error: '.$entry); - OC_Template::printErrorPage( $entry ); + $result = self::executeAudited($query, $inserts); + } catch(DatabaseException $e) { + OC_Template::printExceptionErrorPage( $e ); } if((int)$result->numRows() === 0) { @@ -674,16 +710,12 @@ class OC_DB { } try { - $result = self::prepare($query); + $result = self::executeAudited($query, $inserts); } catch(PDOException $e) { - $entry = 'DB Error: "'.$e->getMessage() . '"
'; - $entry .= 'Offending command was: ' . $query.'
'; - OC_Log::write('core', $entry, OC_Log::FATAL); - error_log('DB error: ' . $entry); - OC_Template::printErrorPage( $entry ); + OC_Template::printExceptionErrorPage( $e ); } - return $result->execute($inserts); + return $result; } /** @@ -891,7 +923,33 @@ class OC_DB { return false; } } + /** + * check if a result is an error, writes a log entry and throws an exception, works with MDB2 and PDOException + * @param mixed $result + * @param string message + * @return void + * @throws DatabaseException + */ + public static function raiseExceptionOnError($result, $message = null) { + if(self::isError($result)) { + if ($message === null) { + $message = self::getErrorMessage($result); + } else { + $message .= ', Root cause:' . self::getErrorMessage($result); + } + OC_Log::write('db', $message, OC_Log::FATAL); + throw new DatabaseException($message, getErrorCode($result)); + } + } + public static function getErrorCode($error) { + if ( self::$backend==self::BACKEND_MDB2 and PEAR::isError($error) ) { + $code = $error->getCode(); + } elseif ( self::$backend==self::BACKEND_PDO and self::$PDO ) { + $code = self::$PDO->errorCode(); + } + return $code; + } /** * returns the error code and message as a string for logging * works with MDB2 and PDOException @@ -901,9 +959,7 @@ class OC_DB { public static function getErrorMessage($error) { if ( self::$backend==self::BACKEND_MDB2 and PEAR::isError($error) ) { $msg = $error->getCode() . ': ' . $error->getMessage(); - if (defined('DEBUG') && DEBUG) { - $msg .= '(' . $error->getDebugInfo() . ')'; - } + $msg .= ' (' . $error->getDebugInfo() . ')'; } elseif (self::$backend==self::BACKEND_PDO and self::$PDO) { $msg = self::$PDO->errorCode() . ': '; $errorInfo = self::$PDO->errorInfo(); diff --git a/lib/template.php b/lib/template.php index 9467dedb62..01f0fc28b6 100644 --- a/lib/template.php +++ b/lib/template.php @@ -535,4 +535,25 @@ class OC_Template{ $content->printPage(); die(); } + + /** + * print error page using Exception details + * @param Exception $exception + */ + + public static function printExceptionErrorPage(Exception $exception) { + $error_msg = $exception->getMessage(); + if ($exception->getCode()) { + $error_msg = '['.$exception->getCode().'] '.$error_msg; + } + $hint = $exception->getTraceAsString(); + while ($exception = $exception->previous()) { + $error_msg .= '
Caused by: '; + if ($exception->getCode()) { + $error_msg .= '['.$exception->getCode().'] '; + } + $error_msg .= $exception->getMessage(); + }; + self::printErrorPage($error_msg, $hint); + } } From 8dc6bdd96b9088b87fe8d11346338343135c77e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 13:45:19 +0200 Subject: [PATCH 061/145] clean up usage of DatabaseSetupException and catch Exceptions in entrypoints --- cron.php | 124 +++++++++++++++++++++++++---------------------- index.php | 13 ++++- lib/response.php | 4 ++ lib/setup.php | 24 ++++----- public.php | 42 ++++++++++------ remote.php | 77 ++++++++++++++++------------- status.php | 23 ++++++--- 7 files changed, 173 insertions(+), 134 deletions(-) diff --git a/cron.php b/cron.php index 95cedf8bf4..fbea7f26ae 100644 --- a/cron.php +++ b/cron.php @@ -44,75 +44,81 @@ function handleUnexpectedShutdown() { } } -require_once 'lib/base.php'; +try { -session_write_close(); + require_once 'lib/base.php'; -// Don't do anything if ownCloud has not been installed -if (!OC_Config::getValue('installed', false)) { - exit(0); -} + session_write_close(); -// Handle unexpected errors -register_shutdown_function('handleUnexpectedShutdown'); - -// Delete temp folder -OC_Helper::cleanTmpNoClean(); - -// Exit if background jobs are disabled! -$appmode = OC_BackgroundJob::getExecutionType(); -if ($appmode == 'none') { - TemporaryCronClass::$sent = true; - if (OC::$CLI) { - echo 'Background Jobs are disabled!' . PHP_EOL; - } else { - OC_JSON::error(array('data' => array('message' => 'Background jobs disabled!'))); - } - exit(1); -} - -if (OC::$CLI) { - // Create lock file first - TemporaryCronClass::$lockfile = OC_Config::getValue("datadirectory", OC::$SERVERROOT . '/data') . '/cron.lock'; - - // We call ownCloud from the CLI (aka cron) - if ($appmode != 'cron') { - // Use cron in feature! - OC_BackgroundJob::setExecutionType('cron'); + // Don't do anything if ownCloud has not been installed + if (!OC_Config::getValue('installed', false)) { + exit(0); } - // check if backgroundjobs is still running - if (file_exists(TemporaryCronClass::$lockfile)) { - TemporaryCronClass::$keeplock = true; + // Handle unexpected errors + register_shutdown_function('handleUnexpectedShutdown'); + + // Delete temp folder + OC_Helper::cleanTmpNoClean(); + + // Exit if background jobs are disabled! + $appmode = OC_BackgroundJob::getExecutionType(); + if ($appmode == 'none') { TemporaryCronClass::$sent = true; - echo "Another instance of cron.php is still running!"; + if (OC::$CLI) { + echo 'Background Jobs are disabled!' . PHP_EOL; + } else { + OC_JSON::error(array('data' => array('message' => 'Background jobs disabled!'))); + } exit(1); } - // Create a lock file - touch(TemporaryCronClass::$lockfile); + if (OC::$CLI) { + // Create lock file first + TemporaryCronClass::$lockfile = OC_Config::getValue("datadirectory", OC::$SERVERROOT . '/data') . '/cron.lock'; - // Work - $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') { - // Cron is cron :-P - OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!'))); - } else { - // Work and success :-) + // We call ownCloud from the CLI (aka cron) + if ($appmode != 'cron') { + // Use cron in feature! + OC_BackgroundJob::setExecutionType('cron'); + } + + // check if backgroundjobs is still running + if (file_exists(TemporaryCronClass::$lockfile)) { + TemporaryCronClass::$keeplock = true; + TemporaryCronClass::$sent = true; + echo "Another instance of cron.php is still running!"; + exit(1); + } + + // Create a lock file + touch(TemporaryCronClass::$lockfile); + + // Work $jobList = new \OC\BackgroundJob\JobList(); - $job = $jobList->getNext(); - $job->execute($jobList); - $jobList->setLastJob($job); - OC_JSON::success(); + $jobs = $jobList->getAll(); + foreach ($jobs as $job) { + $job->execute($jobList); + } + } else { + // We call cron.php from some website + if ($appmode == 'cron') { + // Cron is cron :-P + OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!'))); + } else { + // Work and success :-) + $jobList = new \OC\BackgroundJob\JobList(); + $job = $jobList->getNext(); + $job->execute($jobList); + $jobList->setLastJob($job); + OC_JSON::success(); + } } -} -// done! -TemporaryCronClass::$sent = true; -exit(); + // done! + TemporaryCronClass::$sent = true; + exit(); + +} catch (Exception $ex) { + \OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL); +} \ No newline at end of file diff --git a/index.php b/index.php index bf0b287a64..a064aa5c76 100755 --- a/index.php +++ b/index.php @@ -23,6 +23,15 @@ $RUNTIME_NOAPPS = true; //no apps, yet -require_once 'lib/base.php'; +try { + + require_once 'lib/base.php'; -OC::handleRequest(); + OC::handleRequest(); + +} catch (Exception $ex) { + //show the user a detailed error page + OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); + \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL); + OC_Template::printExceptionErrorPage($ex); +} \ No newline at end of file diff --git a/lib/response.php b/lib/response.php index 49d79fda70..674176d078 100644 --- a/lib/response.php +++ b/lib/response.php @@ -11,6 +11,7 @@ class OC_Response { const STATUS_NOT_MODIFIED = 304; const STATUS_TEMPORARY_REDIRECT = 307; const STATUS_NOT_FOUND = 404; + const STATUS_INTERNAL_SERVER_ERROR = 500; /** * @brief Enable response caching by sending correct HTTP headers @@ -70,6 +71,9 @@ class OC_Response { case self::STATUS_NOT_FOUND; $status = $status . ' Not Found'; break; + case self::STATUS_INTERNAL_SERVER_ERROR; + $status = $status . ' Internal Server Error'; + break; } header($protocol.' '.$status); } diff --git a/lib/setup.php b/lib/setup.php index a63cc664db..71a2d13937 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -106,12 +106,6 @@ class OC_Setup { 'hint' => $e->getHint() ); return($error); - } catch (Exception $e) { - $error[] = array( - 'error' => $e->getMessage(), - 'hint' => '' - ); - return($error); } } elseif($dbtype == 'pgsql') { @@ -127,7 +121,7 @@ class OC_Setup { try { self::setupPostgreSQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username); - } catch (Exception $e) { + } catch (DatabaseSetupException $e) { $error[] = array( 'error' => $l->t('PostgreSQL username and/or password not valid'), 'hint' => $l->t('You need to enter either an existing account or the administrator.') @@ -150,7 +144,7 @@ class OC_Setup { try { self::setupOCIDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $dbtablespace, $username); - } catch (Exception $e) { + } catch (DatabaseSetupException $e) { $error[] = array( 'error' => $l->t('Oracle connection could not be established'), 'hint' => $e->getMessage().' Check environment: ORACLE_HOME='.getenv('ORACLE_HOME') @@ -177,7 +171,7 @@ class OC_Setup { try { self::setupMSSQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix); - } catch (Exception $e) { + } catch (DatabaseSetupException $e) { $error[] = array( 'error' => 'MS SQL username and/or password not valid', 'hint' => 'You need to enter either an existing account or the administrator.' @@ -326,7 +320,7 @@ class OC_Setup { $connection_string = "host='$e_host' dbname=postgres user='$e_user' password='$e_password'"; $connection = @pg_connect($connection_string); if(!$connection) { - throw new Exception($l->t('PostgreSQL username and/or password not valid')); + throw new DatabaseSetupException($l->t('PostgreSQL username and/or password not valid')); } $e_user = pg_escape_string($dbuser); //check for roles creation rights in postgresql @@ -371,7 +365,7 @@ class OC_Setup { $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' password='$e_password'"; $connection = @pg_connect($connection_string); if(!$connection) { - throw new Exception($l->t('PostgreSQL username and/or password not valid')); + throw new DatabaseSetupException($l->t('PostgreSQL username and/or password not valid')); } $query = "select count(*) FROM pg_class WHERE relname='{$dbtableprefix}users' limit 1"; $result = pg_query($connection, $query); @@ -461,9 +455,9 @@ class OC_Setup { if(!$connection) { $e = oci_error(); if (is_array ($e) && isset ($e['message'])) { - throw new Exception($e['message']); + throw new DatabaseSetupException($e['message']); } - throw new Exception($l->t('Oracle username and/or password not valid')); + throw new DatabaseSetupException($l->t('Oracle username and/or password not valid')); } //check for roles creation rights in oracle @@ -530,7 +524,7 @@ class OC_Setup { } $connection = @oci_connect($dbuser, $dbpass, $easy_connect_string); if(!$connection) { - throw new Exception($l->t('Oracle username and/or password not valid')); + throw new DatabaseSetupException($l->t('Oracle username and/or password not valid')); } $query = "SELECT count(*) FROM user_tables WHERE table_name = :un"; $stmt = oci_parse($connection, $query); @@ -641,7 +635,7 @@ class OC_Setup { } else { $entry = ''; } - throw new Exception($l->t('MS SQL username and/or password not valid: %s', array($entry))); + throw new DatabaseSetupException($l->t('MS SQL username and/or password not valid: %s', array($entry))); } OC_Config::setValue('dbuser', $dbuser); diff --git a/public.php b/public.php index 3d7fd378af..0154b59cce 100644 --- a/public.php +++ b/public.php @@ -1,21 +1,31 @@ getMessage(), \OCP\Util::FATAL); + OC_Template::printExceptionErrorPage($ex); +} \ No newline at end of file diff --git a/remote.php b/remote.php index 7738de04f6..ec0f2ecef7 100644 --- a/remote.php +++ b/remote.php @@ -1,40 +1,49 @@ getMessage(), \OCP\Util::FATAL); + OC_Template::printExceptionErrorPage($ex); +} \ No newline at end of file diff --git a/status.php b/status.php index 9d6ac87c67..bac01c11b2 100644 --- a/status.php +++ b/status.php @@ -23,13 +23,20 @@ $RUNTIME_NOAPPS = true; //no apps, yet -require_once 'lib/base.php'; +try { -if(OC_Config::getValue('installed')==1) $installed='true'; else $installed='false'; -$values=array( - 'installed'=>$installed, - 'version'=>implode('.', OC_Util::getVersion()), - 'versionstring'=>OC_Util::getVersionString(), - 'edition'=>OC_Util::getEditionString()); + require_once 'lib/base.php'; -echo(json_encode($values)); + if(OC_Config::getValue('installed')==1) $installed='true'; else $installed='false'; + $values=array( + 'installed'=>$installed, + 'version'=>implode('.', OC_Util::getVersion()), + 'versionstring'=>OC_Util::getVersionString(), + 'edition'=>OC_Util::getEditionString()); + + echo(json_encode($values)); + +} catch (Exception $ex) { + OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); + \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL); +} \ No newline at end of file From 86c5243be5525b97b232b23c241a60524455a41c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 14:03:12 +0200 Subject: [PATCH 062/145] remove duplicate logging from db.php, now happens in entrypoints --- lib/db.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/db.php b/lib/db.php index ccbfcf3ab5..080e895e35 100644 --- a/lib/db.php +++ b/lib/db.php @@ -408,7 +408,6 @@ class OC_DB { // TODO try to convert LIMIT OFFSET notation to parameters, see fixLimitClauseForMSSQL $message = 'LIMIT and OFFSET are forbidden for portability reasons,' . ' pass an array with \'limit\' and \'offset\' instead'; - \OCP\Util::writeLog('db', $message, \OCP\Util::FATAL); throw new DatabaseException($message); } $stmt = array('sql' => $stmt, 'limit' => null, 'offset' => null); @@ -417,7 +416,6 @@ class OC_DB { // convert to prepared statement if ( ! array_key_exists('sql', $stmt) ) { $message = 'statement array must at least contain key \'sql\''; - \OCP\Util::writeLog('db', $message, \OCP\Util::FATAL); throw new DatabaseException($message); } if ( ! array_key_exists('limit', $stmt) ) { @@ -438,7 +436,6 @@ class OC_DB { } else { $message = 'Expected a prepared statement or array got ' . gettype($stmt); } - \OCP\Util::writeLog('db', $message, \OCP\Util::FATAL); throw new DatabaseException($message); } return $result; @@ -937,7 +934,6 @@ class OC_DB { } else { $message .= ', Root cause:' . self::getErrorMessage($result); } - OC_Log::write('db', $message, OC_Log::FATAL); throw new DatabaseException($message, getErrorCode($result)); } } From c70a0f791ded08cb0c8c4a0e131c328d36cbec33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 14:45:39 +0200 Subject: [PATCH 063/145] allow 30 sec for testDeleteFile --- apps/files_encryption/tests/trashbin.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_encryption/tests/trashbin.php b/apps/files_encryption/tests/trashbin.php index 591113e736..ade968fbec 100755 --- a/apps/files_encryption/tests/trashbin.php +++ b/apps/files_encryption/tests/trashbin.php @@ -113,6 +113,7 @@ class Test_Encryption_Trashbin extends \PHPUnit_Framework_TestCase { } /** + * @medium * @brief test delete file */ function testDeleteFile() { From 875c18b115e649dae3a633d197ec8e2c156bbcb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 10 Jun 2013 11:07:41 +0200 Subject: [PATCH 064/145] fix fetchRow checks to also work with MDB2 --- lib/files/cache/cache.php | 8 +++++++- tests/lib/db.php | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 6c2ef71098..5b2fcfaadf 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -96,7 +96,7 @@ class Cache { * get the stored metadata of a file or folder * * @param string/int $file - * @return array + * @return array | false */ public function get($file) { if (is_string($file) or $file == '') { @@ -115,6 +115,12 @@ class Cache { $result = $query->execute($params); $data = $result->fetchRow(); + //FIXME hide this HACK in the next database layer, or just use doctrine and get rid of MDB2 and PDO + //PDO returns false, MDB2 returns null, oracle always uses MDB2, so convert null to false + if ($data === null) { + $data = false; + } + //merge partial data if (!$data and is_string($file)) { if (isset($this->partial[$file])) { diff --git a/tests/lib/db.php b/tests/lib/db.php index 7b2a5e309f..df39092997 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -37,7 +37,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $result = $query->execute(array('uri_1')); $this->assertTrue((bool)$result); $row = $result->fetchRow(); - $this->assertFalse($row); + $this->assertFalse((bool)$row); //PDO returns false, MDB2 returns null $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); $result = $query->execute(array('fullname test', 'uri_1')); $this->assertTrue((bool)$result); @@ -48,7 +48,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->assertArrayHasKey('fullname', $row); $this->assertEquals($row['fullname'], 'fullname test'); $row = $result->fetchRow(); - $this->assertFalse($row); + $this->assertFalse((bool)$row); //PDO returns false, MDB2 returns null } public function testNOW() { From 4f0f537b422015fb5573d3b50c3d0a7137a1384d Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 11 Jun 2013 02:02:44 +0200 Subject: [PATCH 065/145] [tx-robot] updated from transifex --- apps/files_encryption/l10n/el.php | 10 ++++- apps/files_encryption/l10n/pt_PT.php | 15 ++++++- apps/user_ldap/l10n/pt_PT.php | 9 +++++ core/l10n/el.php | 1 + l10n/af_ZA/core.po | 4 +- l10n/af_ZA/lib.po | 4 +- l10n/af_ZA/settings.po | 58 +++++++++++++++------------- l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 40 +++++++++++-------- l10n/ar/user_ldap.po | 4 +- l10n/be/settings.po | 58 +++++++++++++++------------- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 40 +++++++++++-------- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 4 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 40 +++++++++++-------- l10n/bn_BD/user_ldap.po | 4 +- l10n/ca/core.po | 4 +- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 42 +++++++++++--------- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 42 +++++++++++--------- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 4 +- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 4 +- l10n/cy_GB/settings.po | 40 +++++++++++-------- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 4 +- l10n/da/files.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 40 +++++++++++-------- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 4 +- l10n/de/files.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 42 +++++++++++--------- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 42 +++++++++++--------- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 9 +++-- l10n/el/files.po | 4 +- l10n/el/files_encryption.po | 23 +++++------ l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 41 ++++++++++++-------- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/en@pirate/settings.po | 58 +++++++++++++++------------- l10n/eo/core.po | 4 +- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 40 +++++++++++-------- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files.po | 4 +- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 42 +++++++++++--------- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 40 +++++++++++-------- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 42 +++++++++++--------- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 40 +++++++++++-------- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 4 +- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 40 +++++++++++-------- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 40 +++++++++++-------- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 42 +++++++++++--------- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 4 +- l10n/gl/files.po | 4 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 42 +++++++++++--------- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 4 +- l10n/he/files.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 42 +++++++++++--------- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 4 +- l10n/hi/files.po | 4 +- l10n/hi/lib.po | 4 +- l10n/hi/settings.po | 58 +++++++++++++++------------- l10n/hr/core.po | 4 +- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 40 +++++++++++-------- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 42 +++++++++++--------- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 2 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 40 +++++++++++-------- l10n/ia/core.po | 4 +- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 40 +++++++++++-------- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 4 +- l10n/id/files.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 40 +++++++++++-------- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 4 +- l10n/is/files.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 42 +++++++++++--------- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 4 +- l10n/it/files.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 42 +++++++++++--------- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 4 +- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 4 +- l10n/ja_JP/settings.po | 42 +++++++++++--------- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka/settings.po | 58 +++++++++++++++------------- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 40 +++++++++++-------- l10n/ka_GE/user_ldap.po | 4 +- l10n/kn/settings.po | 58 +++++++++++++++------------- l10n/ko/core.po | 4 +- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 40 +++++++++++-------- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 4 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/lib.po | 4 +- l10n/ku_IQ/settings.po | 40 +++++++++++-------- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 4 +- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 40 +++++++++++-------- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 40 +++++++++++-------- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 4 +- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 40 +++++++++++-------- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 4 +- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 40 +++++++++++-------- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 4 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 40 +++++++++++-------- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 4 +- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/my_MM/settings.po | 58 +++++++++++++++------------- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 40 +++++++++++-------- l10n/nb_NO/user_ldap.po | 4 +- l10n/ne/settings.po | 58 +++++++++++++++------------- l10n/nl/core.po | 4 +- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 42 +++++++++++--------- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 40 +++++++++++-------- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 4 +- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/settings.po | 40 +++++++++++-------- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 4 +- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 42 +++++++++++--------- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 42 +++++++++++--------- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 4 +- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_encryption.po | 33 ++++++++-------- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 4 +- l10n/pt_PT/settings.po | 42 +++++++++++--------- l10n/pt_PT/user_ldap.po | 25 ++++++------ l10n/ro/core.po | 4 +- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 40 +++++++++++-------- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 4 +- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 42 +++++++++++--------- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 40 +++++++++++-------- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/settings.po | 58 +++++++++++++++------------- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 42 +++++++++++--------- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 40 +++++++++++-------- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 40 +++++++++++-------- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 4 +- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 40 +++++++++++-------- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 4 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 40 +++++++++++-------- l10n/sv/core.po | 4 +- l10n/sv/files.po | 4 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 42 +++++++++++--------- l10n/sv/user_ldap.po | 4 +- l10n/sw_KE/settings.po | 58 +++++++++++++++------------- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 40 +++++++++++-------- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 4 +- l10n/te/files.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 4 +- l10n/te/settings.po | 40 +++++++++++-------- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 38 ++++++++++-------- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 40 +++++++++++-------- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 42 +++++++++++--------- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 4 +- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 4 +- l10n/ug/settings.po | 40 +++++++++++-------- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 4 +- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 40 +++++++++++-------- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 4 +- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 40 +++++++++++-------- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 4 +- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 40 +++++++++++-------- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 4 +- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 42 +++++++++++--------- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 42 +++++++++++--------- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 40 +++++++++++-------- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 4 +- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 42 +++++++++++--------- l10n/zh_TW/user_ldap.po | 4 +- settings/l10n/el.php | 1 + 544 files changed, 2827 insertions(+), 2340 deletions(-) diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 7067799cd2..c73fbf5646 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -1,4 +1,12 @@ "Ο κωδικός αλλάχτηκε επιτυχώς.", +"Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", "Saving..." => "Γίνεται αποθήκευση...", -"Encryption" => "Κρυπτογράφηση" +"Encryption" => "Κρυπτογράφηση", +"Recovery account password" => "Επαναφορά κωδικού πρόσβασης λογαριασμού", +"Enabled" => "Ενεργοποιημένο", +"Disabled" => "Απενεργοποιημένο", +"Change Password" => "Αλλαγή Κωδικού Πρόσβασης", +"Enable password recovery by sharing all files with your administrator:" => "Ενεργοποιήστε την επαναφορά κωδικού πρόσβασης με το να μοιραστείτε όλα τα αρχεία με τον διαχειριστή σας:", +"File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" ); diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index e1bb17ecaa..eede4804cf 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -1,9 +1,22 @@ "Chave de recuperação activada com sucesso", +"Could not enable recovery key. Please check your recovery key password!" => "Não foi possível activar a chave de recuperação. Por favor verifique a password da chave de recuperação!", +"Recovery key successfully disabled" => "Chave de recuperação descativada com sucesso", +"Could not disable recovery key. Please check your recovery key password!" => "Não foi possível desactivar a chave de recuperação. Por favor verifique a password da chave de recuperação.", "Password successfully changed." => "Password alterada com sucesso.", "Could not change the password. Maybe the old password was not correct." => "Não foi possivel alterar a password. Possivelmente a password antiga não está correcta.", "Saving..." => "A guardar...", "Encryption" => "Encriptação", +"Enable encryption passwords recovery key (allow sharing to recovery key):" => "Activar a chave de recuperação das passwords de encriptação (permitir partilha da chave de recuperação):", +"Recovery account password" => "Password de recuperação de conta", "Enabled" => "Activado", "Disabled" => "Desactivado", -"Change Password" => "Mudar a Password" +"Change encryption passwords recovery key:" => "Alterar a chave de recuperação da password de encriptação:", +"Old Recovery account password" => "Password de recuperação de conta antiga:", +"New Recovery account password" => "Nova password de recuperação de conta", +"Change Password" => "Mudar a Password", +"Enable password recovery by sharing all files with your administrator:" => "Activar a recuperação de password ao partilhar todos os ficheiros com o administrador:", +"Enabling this option will allow you to reobtain access to your encrypted files if your password is lost" => "Activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password.", +"File recovery settings updated" => "Actualizadas as definições de recuperação de ficheiros", +"Could not update file recovery" => "Não foi possível actualizar a recuperação de ficheiros" ); diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index ed1e0f376d..308fd34760 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -1,4 +1,5 @@ "Falhou a limpar os mapas", "Failed to delete the server configuration" => "Erro ao eliminar as configurações do servidor", "The configuration is valid and the connection could be established!" => "A configuração está correcta e foi possível estabelecer a ligação!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "A configuração está correcta, mas não foi possível estabelecer o \"laço\", por favor, verifique as configurações do servidor e as credenciais.", @@ -7,6 +8,7 @@ "Take over settings from recent server configuration?" => "Assumir as configurações da configuração do servidor mais recente?", "Keep settings?" => "Manter as definições?", "Cannot add server configuration" => "Não foi possível adicionar as configurações do servidor.", +"mappings cleared" => "Mapas limpos", "Success" => "Sucesso", "Error" => "Erro", "Connection test succeeded" => "Teste de conecção passado com sucesso.", @@ -72,6 +74,13 @@ "Email Field" => "Campo de email", "User Home Folder Naming Rule" => "Regra da pasta inicial do utilizador", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD.", +"Internal Username" => "Nome de utilizador interno", +"Internal Username Attribute:" => "Atributo do nome de utilizador interno", +"Override UUID detection" => "Passar a detecção do UUID", +"UUID Attribute:" => "Atributo UUID:", +"Username-LDAP User Mapping" => "Mapeamento do utilizador LDAP", +"Clear Username-LDAP User Mapping" => "Limpar mapeamento do utilizador-LDAP", +"Clear Groupname-LDAP Group Mapping" => "Limpar o mapeamento do nome de grupo LDAP", "Test Configuration" => "Testar a configuração", "Help" => "Ajuda" ); diff --git a/core/l10n/el.php b/core/l10n/el.php index 11295105e3..e11e2263e1 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -125,6 +125,7 @@ "Database host" => "Διακομιστής βάσης δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", +"%s is available. Get more information on how to update." => "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε.", "Log out" => "Αποσύνδεση", "Automatic logon rejected!" => "Απορρίφθηκε η αυτόματη σύνδεση!", "If you did not change your password recently, your account may be compromised!" => "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 935097dcae..8a90de1a4f 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 4c03f98e89..c6e90c22e0 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 868778c6d7..abaa446790 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-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 2dd51b6e68..fe15956376 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 c5e4dfaf5b..13fdac78bb 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 89f61d6a70..00f96d84fd 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4efbb284b1..2fec6330cd 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 530ac04701..e3aead3f43 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f4ef980078..90816a1c40 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "تراجع" msgid "Unable to remove user" msgstr "تعذر حذف المستخدم" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "مجموعات" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "مدير المجموعة" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "إلغاء" @@ -399,7 +399,7 @@ msgstr "احصل على التطبيقات لمزامنة ملفاتك" msgid "Show First Run Wizard again" msgstr "ابدأ خطوات بداية التشغيل من جديد" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "كلمة المرور" @@ -423,7 +423,7 @@ msgstr "كلمات سر جديدة" msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "اسم الحساب" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "اسم الدخول" @@ -463,34 +463,40 @@ msgstr "اسم الدخول" msgid "Create" msgstr "انشئ" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "وحدة التخزين الافتراضية" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "غير محدود" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "شيء آخر" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "وحدة التخزين" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "تغيير اسم الحساب" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "اعداد كلمة مرور جديدة" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "افتراضي" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 184a1e448b..eb971f8e40 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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/settings.po b/l10n/be/settings.po index 77d13b3886..3efffd109d 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-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 7ad91889b1..eb125ea64e 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 0633f9ea96..c644037ea6 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 6c1a66f184..ff016dec28 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 295bdf91f9..07beb96f64 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 9ee0cfa285..164bf587c1 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index a956477453..4fb44322c4 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "възтановяване" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Групи" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Изтриване" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "Покажи настройките за първоначално зареждане отново" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Парола" @@ -423,7 +423,7 @@ msgstr "Нова парола" msgid "Change password" msgstr "Промяна на паролата" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Екранно име" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Потребител" @@ -463,34 +463,40 @@ msgstr "Потребител" msgid "Create" msgstr "Създаване" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Хранилище по подразбиране" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Неограничено" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Други" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Хранилище" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "По подразбиране" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 2f6d617ab5..9b6ce08d56 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 53062d9c8c..20c44d83d6 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 046c1216b0..d47a538564 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 2123c0223f..2bae81308b 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 c9b40333ec..ee46468ac7 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4cd1399201..063ad92c94 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 7efba216d3..62c465271a 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 6c71a9e389..815333c3ef 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "ক্রিয়া প্রত্যাহার" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "গোষ্ঠীসমূহ" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "গোষ্ঠী প্রশাসক" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "মুছে" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "কূটশব্দ" @@ -423,7 +423,7 @@ msgstr "নতুন কূটশব্দ" msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "তৈরী কর" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "পূর্বনির্ধারিত সংরক্ষণাগার" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "অসীম" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "অন্যান্য" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "সংরক্ষণাগার" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "পূর্বনির্ধারিত" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index cee6a26631..b6252a0f8f 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 dc1e99d35a..2565c7aa64 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 7718d1fbc6..42bb79a298 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 8e31960745..5ee2aa5067 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 890613baf0..7c723b6946 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 44af7f1e71..ddc6cf6bb6 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b550849f94..e665ff53aa 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 1a92bdbc9d..0010c7a086 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "desfés" msgid "Unable to remove user" msgstr "No s'ha pogut eliminar l'usuari" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grups" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grup Admin" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Esborra" @@ -401,7 +401,7 @@ msgstr "Obtén les aplicacions per sincronitzar fitxers" msgid "Show First Run Wizard again" msgstr "Torna a mostrar l'assistent de primera execució" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasenya" @@ -425,7 +425,7 @@ msgstr "Contrasenya nova" msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Nom a mostrar" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Nom d'accés" @@ -465,34 +465,40 @@ msgstr "Nom d'accés" msgid "Create" msgstr "Crea" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Recuperació de contrasenya d'administrador" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Emmagatzemament per defecte" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Il·limitat" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Un altre" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Emmagatzemament" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "canvia el nom a mostrar" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "estableix nova contrasenya" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Per defecte" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 8e8ba6de89..67e18fc7d0 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index ba2c7d9a2a..dfb1f05909 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index ba63540c30..54a2982d2f 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 689603626f..d1025ae695 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 1d9b492d24..70ad6a2b37 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 2f57966e95..39eeb6d46a 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 26ab19a9de..ceb1a86288 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index d77b6f9fdf..a8446b558a 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "zpět" msgid "Unable to remove user" msgstr "Nelze odebrat uživatele" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Skupiny" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Správa skupiny" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Smazat" @@ -400,7 +400,7 @@ msgstr "Získat aplikace pro synchronizaci vašich souborů" msgid "Show First Run Wizard again" msgstr "Znovu zobrazit průvodce prvním spuštěním" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" @@ -424,7 +424,7 @@ msgstr "Nové heslo" msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované jméno" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Přihlašovací jméno" @@ -464,34 +464,40 @@ msgstr "Přihlašovací jméno" msgid "Create" msgstr "Vytvořit" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Heslo obnovy správce" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Výchozí úložiště" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Neomezeně" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Jiný" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Úložiště" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "změnit zobrazované jméno" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "nastavit nové heslo" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Výchozí" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 68c8e1e7af..be08eb3a9e 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 2220311fc2..0f3f306b05 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index ec92083874..065d871845 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 3dcb482644..262b2cec28 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 89548ee5f9..60d3faea4f 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 15f6d4ee2a..e10335ef7b 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 16149fb3e5..386f92d100 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 584081f7c5..9f161a6944 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "dadwneud" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grwpiau" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Dileu" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Cyfrinair" @@ -423,7 +423,7 @@ msgstr "Cyfrinair newydd" msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Arall" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index d26988e8fb..7ffdef7c86 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index e41352ec86..96a3b038bf 100644 --- a/l10n/da/core.po +++ b/l10n/da/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Peter Jespersen \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 ff5b7a2122..02939ca19c 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 8ccff72965..e16624e176 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 7bc46e34ad..3fd2b7f196 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 494218876b..fa25aa9b14 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 8e123f9887..b425c17457 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 490f51b273..6a40d87792 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "fortryd" msgid "Unable to remove user" msgstr "Kan ikke fjerne bruger" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupper" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Gruppe Administrator" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Slet" @@ -400,7 +400,7 @@ msgstr "Hent applikationerne for at synkronisere dine filer" msgid "Show First Run Wizard again" msgstr "Vis Første Kørsels Guiden igen." -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kodeord" @@ -424,7 +424,7 @@ msgstr "Nyt kodeord" msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Skærmnavn" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Loginnavn" @@ -464,34 +464,40 @@ msgstr "Loginnavn" msgid "Create" msgstr "Ny" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Standard opbevaring" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Ubegrænset" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Andet" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Opbevaring" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "skift skærmnavn" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "skift kodeord" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Standard" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 13c7c8fcf8..20a5e8e39c 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 9d9ae24c67..4b9a7ea705 100644 --- a/l10n/de/core.po +++ b/l10n/de/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index cf950694d9..1628e9fad1 100644 --- a/l10n/de/files.po +++ b/l10n/de/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: ninov \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 003024ac2c..bb017db894 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 6bdad06225..05f66c0958 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Mirodin \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 aa4e28f2cd..37abe3cacc 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 684e63fcdf..fe236b8ee9 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 0198447f48..a26dae9809 100644 --- a/l10n/de/settings.po +++ b/l10n/de/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: ninov \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,16 +139,16 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Benutzer konnte nicht entfernt werden." -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Gruppen" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Löschen" @@ -402,7 +402,7 @@ msgstr "Lade die Apps zur Synchronisierung Deiner Daten herunter" msgid "Show First Run Wizard again" msgstr "Erstinstallation erneut durchführen" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" @@ -426,7 +426,7 @@ msgstr "Neues Passwort" msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" @@ -458,7 +458,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Loginname" @@ -466,34 +466,40 @@ msgstr "Loginname" msgid "Create" msgstr "Anlegen" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Admin-Wiederherstellungspasswort" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Standard-Speicher" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Andere" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Speicher" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "Anzeigenamen ändern" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "Neues Passwort setzen" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Standard" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 6de01c006e..81819cf6a1 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 d6c7f97f3c..58782c2d64 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index d06e7c6d8a..a80df87fa6 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: a.tangemann \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 e88d0f48c0..bba770a545 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 962ad5c70b..6ac126c213 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Mirodin \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 9767fc045b..00f2533ca8 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 0708fa2b36..b90698dca6 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 4517606c13..52845a98ed 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -140,16 +140,16 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Gruppen" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Löschen" @@ -403,7 +403,7 @@ msgstr "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren" msgid "Show First Run Wizard again" msgstr "Den Einrichtungsassistenten erneut anzeigen" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" @@ -427,7 +427,7 @@ msgstr "Neues Passwort" msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" @@ -459,7 +459,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Loginname" @@ -467,34 +467,40 @@ msgstr "Loginname" msgid "Create" msgstr "Erstellen" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Admin-Paswort-Wiederherstellung" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Standard-Speicher" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Andere" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Speicher" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "Anzeigenamen ändern" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "Neues Passwort setzen" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Standard" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index dcc2c0a3ee..3fda98cb9d 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index a581df8133..48d7917de0 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Teogramm , 2013 # Wasilis , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"Last-Translator: Teogramm \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" @@ -569,7 +570,7 @@ msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" #: templates/layout.user.php:37 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε." #: templates/layout.user.php:62 msgid "Log out" diff --git a/l10n/el/files.po b/l10n/el/files.po index c9a284845a..cfef12ba5f 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Efstathios Iosifidis \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 d5c014762f..363e932788 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Teogramm , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-30 02:27+0200\n" -"PO-Revision-Date: 2013-05-30 00:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 15:00+0000\n" +"Last-Translator: Teogramm \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" @@ -37,11 +38,11 @@ msgstr "" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Ο κωδικός αλλάχτηκε επιτυχώς." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός." #: js/settings-admin.js:11 msgid "Saving..." @@ -58,15 +59,15 @@ msgstr "" #: templates/settings-admin.php:13 msgid "Recovery account password" -msgstr "" +msgstr "Επαναφορά κωδικού πρόσβασης λογαριασμού" #: templates/settings-admin.php:20 templates/settings-personal.php:18 msgid "Enabled" -msgstr "" +msgstr "Ενεργοποιημένο" #: templates/settings-admin.php:28 templates/settings-personal.php:26 msgid "Disabled" -msgstr "" +msgstr "Απενεργοποιημένο" #: templates/settings-admin.php:32 msgid "Change encryption passwords recovery key:" @@ -82,11 +83,11 @@ msgstr "" #: templates/settings-admin.php:51 msgid "Change Password" -msgstr "" +msgstr "Αλλαγή Κωδικού Πρόσβασης" #: templates/settings-personal.php:9 msgid "Enable password recovery by sharing all files with your administrator:" -msgstr "" +msgstr "Ενεργοποιήστε την επαναφορά κωδικού πρόσβασης με το να μοιραστείτε όλα τα αρχεία με τον διαχειριστή σας:" #: templates/settings-personal.php:11 msgid "" @@ -96,7 +97,7 @@ msgstr "" #: templates/settings-personal.php:27 msgid "File recovery settings updated" -msgstr "" +msgstr "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" #: templates/settings-personal.php:28 msgid "Could not update file recovery" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index e24ab1d106..88b11e4a3b 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 6003dd739c..61e1795f73 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 8d8ecee7de..9b1650a44d 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 98fd002bf5..f182d3bc74 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f54c66cce0..35e9e3ae42 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Teogramm , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +138,16 @@ msgstr "αναίρεση" msgid "Unable to remove user" msgstr "Αδυναμία αφαίρεση χρήστη" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Ομάδες" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Ομάδα Διαχειριστών" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Διαγραφή" @@ -400,7 +401,7 @@ msgstr "Λήψη της εφαρμογής για συγχρονισμό των msgid "Show First Run Wizard again" msgstr "Προβολή Πρώτης Εκτέλεσης Οδηγού πάλι" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Συνθηματικό" @@ -424,7 +425,7 @@ msgstr "Νέο συνθηματικό" msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Όνομα εμφάνισης" @@ -456,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Όνομα Σύνδεσης" @@ -464,34 +465,40 @@ msgstr "Όνομα Σύνδεσης" msgid "Create" msgstr "Δημιουργία" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" +msgstr "Κωδικός Επαναφοράς Διαχειριστή " + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" msgstr "" -#: templates/users.php:38 +#: templates/users.php:42 msgid "Default Storage" msgstr "Προκαθορισμένη Αποθήκευση " -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Απεριόριστο" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Άλλο" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Αποθήκευση" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "αλλαγή ονόματος εμφάνισης" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "επιλογή νέου κωδικού" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Προκαθορισμένο" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 639ce39303..8d0db741fa 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index c66e0b335d..ff75bd76cf 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index ca065c0596..8204ac2847 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: lhpalacio \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 2dd26cf0d9..4459d6d106 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 1dde4cff84..83adcbfa21 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 b94c929247..b0e4a29b8c 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 05e9e56a5c..d62a034233 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 dc3cfdda69..ec3bdd7d56 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 88aed749d9..951c41f84d 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 7776c6761c..68d2b6e726 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "malfari" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupoj" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupadministranto" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Forigi" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasvorto" @@ -423,7 +423,7 @@ msgstr "Nova pasvorto" msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Krei" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Defaŭlta konservejo" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Senlima" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Alia" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Konservejo" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Defaŭlta" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 5daf7e0f01..717c154199 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 8e1d7080df..658cdb8536 100644 --- a/l10n/es/core.po +++ b/l10n/es/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index e7ca04f999..82d7438ad6 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Art O. Pal \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 5cb34b9ac1..e671258376 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 85e841e215..6dee73a77a 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e7a92574d3..6232fb9e94 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 bc847baf94..059e8366a4 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index e195752040..550de686a5 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -139,16 +139,16 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "No se puede eliminar el usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupos" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupo administrador" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Eliminar" @@ -402,7 +402,7 @@ msgstr "Obtener las aplicaciones para sincronizar sus archivos" msgid "Show First Run Wizard again" msgstr "Mostrar asistente para iniciar otra vez" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contraseña" @@ -426,7 +426,7 @@ msgstr "Nueva contraseña" msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Nombre a mostrar" @@ -458,7 +458,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Nombre de usuario" @@ -466,34 +466,40 @@ msgstr "Nombre de usuario" msgid "Create" msgstr "Crear" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Recuperación de la contraseña de administración" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Almacenamiento predeterminado" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Otro" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Almacenamiento" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "Cambiar nombre a mostrar" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "Configurar nueva contraseña" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Predeterminado" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 3492a970c9..f2e9405d65 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 727d03a799..3baad4a8f1 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 d9e2e53a2e..8b367fad68 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Agustin Ferrario \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 9eede88f24..e91fe22e2e 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b238bca305..2412adc0db 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 56dcea4599..e89f354341 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 d7ef7401c5..cd37a7aba1 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 7a71ab611c..f0c1bb57d6 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "Imposible remover usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupos" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Borrar" @@ -400,7 +400,7 @@ msgstr "Obtené aplicaciones para sincronizar tus archivos" msgid "Show First Run Wizard again" msgstr "Mostrar de nuevo el asistente de primera ejecución" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contraseña" @@ -424,7 +424,7 @@ msgstr "Nueva contraseña:" msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Nombre a mostrar" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Nombre de " @@ -464,34 +464,40 @@ msgstr "Nombre de " msgid "Create" msgstr "Crear" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Almacenamiento Predeterminado" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Otros" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Almacenamiento" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "Cambiar el nombre que se muestra" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "Configurar nueva contraseña" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Predeterminado" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 239834a369..1e742c923e 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 9e9074ef68..f1e4fcc238 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 39ebd8be08..34d61a1d85 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 598c6ab86d..a15e0a7deb 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 67fba4649e..482fbacec8 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 05e9b28941..0cde7fec2e 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 1178f6d167..bf5fd8ced2 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index d1364b6871..7b0d4451cf 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "tagasi" msgid "Unable to remove user" msgstr "Kasutaja eemaldamine ebaõnnestus" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupid" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupi admin" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Kustuta" @@ -401,7 +401,7 @@ msgstr "Hangi rakendusi failide sünkroniseerimiseks" msgid "Show First Run Wizard again" msgstr "Näita veelkord Esmase Käivituse Juhendajat" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parool" @@ -425,7 +425,7 @@ msgstr "Uus parool" msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Näidatav nimi" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Kasuta seda aadressi ühendamaks oma ownCloudi failihalduriga" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Kasutajanimi" @@ -465,34 +465,40 @@ msgstr "Kasutajanimi" msgid "Create" msgstr "Lisa" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Admin taasteparool" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Vaikimisi maht" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Piiramatult" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Muu" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Maht" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "muuda näidatavat nime" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "määra uus parool" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Vaikeväärtus" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 0543ae5258..a87f06ffa5 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index fa45cb1a5f..9458ed3bdb 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 027b499cf0..5ea564b021 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 1dca4130ec..18ef5b2795 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f4022f637b..de2799c505 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4200e182be..8d152c3e25 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 bcacb051ea..ce6e8a04ea 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e20ca8ffaf..66e67c2b58 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "desegin" msgid "Unable to remove user" msgstr "Ezin izan da erabiltzailea aldatu" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Taldeak" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Talde administradorea" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Ezabatu" @@ -399,7 +399,7 @@ msgstr "Lortu aplikazioak zure fitxategiak sinkronizatzeko" msgid "Show First Run Wizard again" msgstr "Erakutsi berriz Lehenengo Aldiko Morroia" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasahitza" @@ -423,7 +423,7 @@ msgstr "Pasahitz berria" msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Bistaratze Izena" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Sarrera Izena" @@ -463,34 +463,40 @@ msgstr "Sarrera Izena" msgid "Create" msgstr "Sortu" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Lehenetsitako Biltegiratzea" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Mugarik gabe" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Bestelakoa" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Biltegiratzea" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "aldatu bistaratze izena" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "ezarri pasahitz berria" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Lehenetsia" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 982075fe6c..f1d6dbc107 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4f77315e6b..310bb19832 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 55637830aa..65259873a4 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 d9fdb59a7a..da02656440 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e24ced2bed..93e02b1507 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 9b91652c1a..de003e3b96 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 0ceea35285..418a0b9646 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 88ea7add2e..00e95cfd8d 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "بازگشت" msgid "Unable to remove user" msgstr "حذف کاربر امکان پذیر نیست" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "گروه ها" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "گروه مدیران" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "حذف" @@ -399,7 +399,7 @@ msgstr "برنامه ها را دریافت کنید تا فایل هایتان msgid "Show First Run Wizard again" msgstr "راهبری کمکی اجرای اول را دوباره نمایش بده" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "گذرواژه" @@ -423,7 +423,7 @@ msgstr "گذرواژه جدید" msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "نام نمایشی" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "نام کاربری" @@ -463,34 +463,40 @@ msgstr "نام کاربری" msgid "Create" msgstr "ایجاد کردن" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "ذخیره سازی پیش فرض" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "نامحدود" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "دیگر" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "حافظه" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "تغییر نام نمایشی" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "تنظیم کلمه عبور جدید" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "پیش فرض" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 9cbf6d746d..59d4eaf3f8 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 789d30a471..f8a6fcca23 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index cc9cb30de3..3b0e737749 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 4a7a1b6c08..25e7105bd7 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 9e9b36d024..5acb54ff5a 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 0dad42f946..036d7f1cd6 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 08b94bc57d..5bb148cbc2 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 920ce9d22b..6eb310a2c1 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "kumoa" msgid "Unable to remove user" msgstr "Käyttäjän poistaminen ei onnistunut" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Ryhmät" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Poista" @@ -400,7 +400,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "Näytä ensimmäisen käyttökerran avustaja uudelleen" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Salasana" @@ -424,7 +424,7 @@ msgstr "Uusi salasana" msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Näyttönimi" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Kirjautumisnimi" @@ -464,34 +464,40 @@ msgstr "Kirjautumisnimi" msgid "Create" msgstr "Luo" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Oletustallennustila" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Rajoittamaton" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Muu" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Tallennustila" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "vaihda näyttönimi" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "aseta uusi salasana" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Oletus" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index e2fb3a9d1e..1ad4848202 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 0be18b5c86..5ea2bba3ff 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: red0ne \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 52deb357fe..7ac10abbcb 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 89e344d9a5..22c34e6886 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 c25a8e9fb1..05bbab8ad9 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 c3885f6517..ff3af9888a 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b2ce6f5669..af45568749 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Cyril Glapa \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 0fd6886fed..0e24f27e98 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: red0ne \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "annuler" msgid "Unable to remove user" msgstr "Impossible de retirer l'utilisateur" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Groupes" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Groupe Admin" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Supprimer" @@ -401,7 +401,7 @@ msgstr "Obtenez les applications de synchronisation de vos fichiers" msgid "Show First Run Wizard again" msgstr "Revoir le premier lancement de l'installeur" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Mot de passe" @@ -425,7 +425,7 @@ msgstr "Nouveau mot de passe" msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Nom affiché" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Nom de la connexion" @@ -465,34 +465,40 @@ msgstr "Nom de la connexion" msgid "Create" msgstr "Créer" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Récupération du mot de passe administrateur" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Support de stockage par défaut" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Illimité" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Autre" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Support de stockage" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "Changer le nom affiché" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "Changer le mot de passe" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Défaut" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index d3875f024d..9b99ed0854 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index beb77651d2..d8f74dc22f 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 4b2c33823b..fdc2b1fa1c 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 613d780e9b..c35bb32e84 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e9ebbc805c..72b88f908b 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 d684a659d2..120165caeb 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 de8c6f3811..d6abaa5967 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 8ad76aba5d..c3cbc5de08 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "desfacer" msgid "Unable to remove user" msgstr "Non é posíbel retirar o usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupos" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupo Admin" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Eliminar" @@ -400,7 +400,7 @@ msgstr "Obteña os aplicativos para sincronizar os seus ficheiros" msgid "Show First Run Wizard again" msgstr "Amosar o axudante da primeira execución outra vez" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasinal" @@ -424,7 +424,7 @@ msgstr "Novo contrasinal" msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Amosar o nome" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Nome de acceso" @@ -464,34 +464,40 @@ msgstr "Nome de acceso" msgid "Create" msgstr "Crear" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Recuperación do contrasinal do administrador" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Almacenamento predeterminado" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Sen límites" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Outro" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Almacenamento" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "cambiar o nome visíbel" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "estabelecer un novo contrasinal" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Predeterminado" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 1076935be8..23a87e823d 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 89731dad0c..7ad804720b 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 1986ca3e10..d961de548d 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 59b59768f6..974ab5db98 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b479885034..74b5c28823 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 6933c83798..cadc4be381 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 4a4693a1b4..d596a65542 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 8a2b03237a..b7bf6a769f 100644 --- a/l10n/he/settings.po +++ b/l10n/he/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: Yaron Shahrabani \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "ביטול" msgid "Unable to remove user" msgstr "לא ניתן להסיר את המשתמש" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "קבוצות" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "מנהל הקבוצה" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "מחיקה" @@ -400,7 +400,7 @@ msgstr "השג את האפליקציות על מנת לסנכרן את הקבצ msgid "Show First Run Wizard again" msgstr "הצגת אשף ההפעלה הראשונית שוב" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "סיסמא" @@ -424,7 +424,7 @@ msgstr "ססמה חדשה" msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "שם תצוגה" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים." -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "שם כניסה" @@ -464,34 +464,40 @@ msgstr "שם כניסה" msgid "Create" msgstr "יצירה" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "ססמת השחזור של המנהל" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "אחסון בררת המחדל" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "ללא הגבלה" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "אחר" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "אחסון" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "החלפת שם התצוגה" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "הגדרת ססמה חדשה" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "בררת מחדל" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 272e5848a0..2a03b8604d 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 ed462ff5ed..8b7cb4730b 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: rktaiwala \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 0c037bf515..b98770c398 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 cc59336602..3be5f9c622 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index c81fb256e3..3f1dc098e5 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-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 28fc762e07..99d1cddf37 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 47be78fbc6..3e55af2b27 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 45e0f77b1b..49fa9fb18e 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 c7fbdfe0dd..ef3e4f6b4d 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 ab38bad668..cf4e8e95b2 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 bc44c9a00e..7d37ea2f28 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "vrati" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupe" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupa Admin" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Obriši" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" @@ -423,7 +423,7 @@ msgstr "Nova lozinka" msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Izradi" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "ostali" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 601a1c0d45..de34e9457e 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 0f7f933a57..0bf5354407 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index a4d374448e..d926421359 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 36ee16c2ec..930d042664 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 0ee7516608..4300707cb8 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b534563b70..a4e05bb53f 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 1f3ef9be7b..cdd940d27a 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 24a1594418..be2d44f495 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: Adam Toth \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "visszavonás" msgid "Unable to remove user" msgstr "A felhasználót nem sikerült eltávolítáni" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Csoportok" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Csoportadminisztrátor" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Törlés" @@ -401,7 +401,7 @@ msgstr "Töltse le az állományok szinkronizációjához szükséges programoka msgid "Show First Run Wizard again" msgstr "Nézzük meg újra az első bejelentkezéskori segítséget!" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Jelszó" @@ -425,7 +425,7 @@ msgstr "Az új jelszó" msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "A megjelenített név" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait." -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Bejelentkezési név" @@ -465,34 +465,40 @@ msgstr "Bejelentkezési név" msgid "Create" msgstr "Létrehozás" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "A jelszóvisszaállítás adminisztrációja" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Alapértelmezett tárhely" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Korlátlan" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Más" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Tárhely" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "a megjelenített név módosítása" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "új jelszó beállítása" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Alapértelmezett" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index a19bd05493..e03432f663 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 4712f97e45..d66d6a8286 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index f4a5b7fcb6..e09f5096b6 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index ea15661c4f..694b0c24db 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index b0a9624f7b..b3a591da46 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index e66b48b513..2ff999d46e 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Ջնջել" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" @@ -423,7 +423,7 @@ msgstr "" msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Այլ" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index b28c250643..e9505c6358 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 3a1934e37b..11212ba486 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 6759aeb2e0..7f9d3d9f2f 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 46605ef5fb..baa6c94a5e 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 05b3198446..5119be176e 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 d4974143bf..e9f27bba66 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 432eb89c63..f7e1597ed1 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Gruppos" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Deler" @@ -399,7 +399,7 @@ msgstr "Obtene le apps (applicationes) pro synchronizar tu files" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasigno" @@ -423,7 +423,7 @@ msgstr "Nove contrasigno" msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Crear" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Altere" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 24f9ef7f55..1942bca216 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f4ece7889e..8b6c3621ee 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 8c524f26f6..01cec4e33c 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 4802899166..f70053bee6 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 1af81ed21b..8abdbc9871 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 998d3891f2..ea107995e8 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f7da35bc96..30b5dc8ff2 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b98b4a091d..5425b7ffc7 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "urungkan" msgid "Unable to remove user" msgstr "Tidak dapat menghapus pengguna" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grup" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Admin Grup" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Hapus" @@ -399,7 +399,7 @@ msgstr "Dapatkan aplikasi untuk sinkronisasi berkas Anda" msgid "Show First Run Wizard again" msgstr "Tampilkan Penuntun Konfigurasi Awal" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Sandi" @@ -423,7 +423,7 @@ msgstr "Sandi baru" msgid "Change password" msgstr "Ubah sandi" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Nama Tampilan" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gunakan alamat ini untuk terhubung ke ownCloud Anda pada manajer berkas " -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Nama Masuk" @@ -463,34 +463,40 @@ msgstr "Nama Masuk" msgid "Create" msgstr "Buat" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Penyimpanan Baku" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Tak terbatas" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Lainnya" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Penyimpanan" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "ubah nama tampilan" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "setel sandi baru" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Baku" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index a64155a0c2..184a04f625 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 ef5b0a92ca..9fc7ec7fc2 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index 61720446f8..cefd8bdee9 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 119517324d..5ef0f33c03 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e5952a1e85..1901dcbe8d 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 2bff349b49..9279dd8767 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b233dcf53e..04fa7060f4 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 3d95c0bb2b..00e385b26f 100644 --- a/l10n/is/settings.po +++ b/l10n/is/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: Magnus Magnusson \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "afturkalla" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Hópar" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Hópstjóri" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Eyða" @@ -400,7 +400,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lykilorð" @@ -424,7 +424,7 @@ msgstr "Nýtt lykilorð" msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Vísa nafn" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -464,34 +464,40 @@ msgstr "" msgid "Create" msgstr "Búa til" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Sjálfgefin gagnageymsla" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Ótakmarkað" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Annað" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "gagnapláss" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Sjálfgefið" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index f419bf02c3..8e9b39f5dc 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 954a035ef7..dbf1b9e418 100644 --- a/l10n/it/core.po +++ b/l10n/it/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index 8dcdde980f..65473f268b 100644 --- a/l10n/it/files.po +++ b/l10n/it/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index d2a159166e..352a3a0f56 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index a7ca8ef56c..7cb8a66f01 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 473ba53184..0ef0ba270f 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index b9ae9cd61d..46edfe81de 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 11a7b9a943..15775aa673 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "annulla" msgid "Unable to remove user" msgstr "Impossibile rimuovere l'utente" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Gruppi" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Gruppi amministrati" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Elimina" @@ -400,7 +400,7 @@ msgstr "Scarica le applicazioni per sincronizzare i tuoi file" msgid "Show First Run Wizard again" msgstr "Mostra nuovamente la procedura di primo avvio" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Password" @@ -424,7 +424,7 @@ msgstr "Nuova password" msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Nome visualizzato" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Nome utente" @@ -464,34 +464,40 @@ msgstr "Nome utente" msgid "Create" msgstr "Crea" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Password di ripristino amministrativa" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Archiviazione predefinita" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Illimitata" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Altro" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Archiviazione" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "cambia il nome visualizzato" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "imposta una nuova password" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Predefinito" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 237899dbaa..16e0eacac7 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index c77db6d747..a80e107429 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 91fd0f4921..abf3d00d5c 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 1b206db9f8..3abff2eaf2 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 6b9e16a32a..c6dddf3f39 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 9f82d0ed3b..6ec8fef041 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 0ea154250f..a316a55d72 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 838184406e..2add76cf5a 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "元に戻す" msgid "Unable to remove user" msgstr "ユーザを削除出来ません" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "グループ" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "グループ管理者" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "削除" @@ -401,7 +401,7 @@ msgstr "ファイルを同期するためのアプリを取得" msgid "Show First Run Wizard again" msgstr "初回ウィザードを再表示する" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "パスワード" @@ -425,7 +425,7 @@ msgstr "新しいパスワードを入力" msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "表示名" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "ログイン名" @@ -465,34 +465,40 @@ msgstr "ログイン名" msgid "Create" msgstr "作成" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "管理者復旧パスワード" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "デフォルトストレージ" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "無制限" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "その他" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "ストレージ" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "表示名を変更" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "新しいパスワードを設定" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "デフォルト" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index a6c787db08..fce67d51bf 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index e4d32d7412..71cbc64d70 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 9a4106ecda..09d09a592f 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 fe9f5ba85c..6c4f017b65 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-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 5c1aac0a3b..e4763f4157 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 2796280947..9efe4f432e 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 2e68b29c28..1e3186d108 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 83088eb7f5..71fdd4c7da 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 6990feb95e..308d32af16 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f7aad03ea8..8831bad30b 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "დაბრუნება" msgid "Unable to remove user" msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "ჯგუფები" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "ჯგუფის ადმინისტრატორი" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "წაშლა" @@ -400,7 +400,7 @@ msgstr "აპლიკაცია ფაილების სინქრო msgid "Show First Run Wizard again" msgstr "მაჩვენე თავიდან გაშვებული ვიზარდი" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "პაროლი" @@ -424,7 +424,7 @@ msgstr "ახალი პაროლი" msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "დისპლეის სახელი" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "მომხმარებლის სახელი" @@ -464,34 +464,40 @@ msgstr "მომხმარებლის სახელი" msgid "Create" msgstr "შექმნა" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "საწყისი საცავი" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "ულიმიტო" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "სხვა" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "საცავი" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "შეცვალე დისფლეის სახელი" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "დააყენეთ ახალი პაროლი" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "საწყისი პარამეტრები" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index bf6a366159..fc0dd6cfae 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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/settings.po b/l10n/kn/settings.po index 899150546d..435aa50322 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-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 7e9b18c3c9..061262d641 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 b1a27686b3..fbbeaec4eb 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 689547694e..5aeac5a6fb 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 df92a1b727..0371f7cd72 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b1a6d13081..1d51a99e03 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 f77d977fcd..c2a37c3630 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "되돌리기" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "그룹" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "그룹 관리자" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "삭제" @@ -399,7 +399,7 @@ msgstr "앱을 이용하여 당신의 파일을 동기화 할 수 있습니다." msgid "Show First Run Wizard again" msgstr "첫 실행 마법사 다시 보이기" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "암호" @@ -423,7 +423,7 @@ msgstr "새 암호" msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "표시 이름" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오." -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "로그인 이름" @@ -463,34 +463,40 @@ msgstr "로그인 이름" msgid "Create" msgstr "만들기" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "기본 저장소" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "무제한" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "기타" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "저장소" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "표시 이름 변경" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "새 암호 설정" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "기본값" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index a2ccc231e9..68d651e73f 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4e77de5d81..b4e0bb9ae0 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 e50657299d..cd20bf0905 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 7125a2c575..c3befa9be8 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 42f52717b6..c72b98a626 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 ee1a6b9a11..6f3e8a2f64 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index a70601ea51..dba270fbd9 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "وشەی تێپەربو" @@ -423,7 +423,7 @@ msgstr "وشەی نهێنی نوێ" msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index ccd0d27583..ecbb5f5751 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 1d2b758381..d9bd2a972c 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 71d0b5c5f6..e27cb70cd7 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 b271b1b153..203f3ae768 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 383d33fe44..5a0963ac35 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 04b3b0aee7..aae54e6c91 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b35aa00cda..0d2727e2f1 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 ee89997b7f..1f5af19596 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "réckgängeg man" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Gruppen" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Gruppen Admin" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Läschen" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwuert" @@ -423,7 +423,7 @@ msgstr "Neit Passwuert" msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Erstellen" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Aner" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index b4f2857a1e..7658c6d272 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4d099f364d..e76dd08cb3 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 93d831d4da..2895014797 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 6be0edc012..d6c1e0803d 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index ea4ed5e423..67915cf893 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index d3c2715743..1dfdb11876 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index bba563de03..c19dda11e4 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index ef026ee43c..2be895a0bc 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "anuliuoti" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupės" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Ištrinti" @@ -399,7 +399,7 @@ msgstr "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Slaptažodis" @@ -423,7 +423,7 @@ msgstr "Naujas slaptažodis" msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Sukurti" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Kita" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index c10fa0a0a8..3e3267b94c 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4ae8f28b9f..0de3a3d806 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 cb43c60d53..811a9fa7e1 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 2633445b05..88174c907f 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 363c509eee..477ef7237a 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 18ebc2211d..f04155c7bd 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 786ee3a999..3465513c8d 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 c03dbefd32..1a2e1ef447 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "atsaukt" msgid "Unable to remove user" msgstr "Nevar izņemt lietotāju" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupas" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupas administrators" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Dzēst" @@ -399,7 +399,7 @@ msgstr "Saņem lietotnes, lai sinhronizētu savas datnes" msgid "Show First Run Wizard again" msgstr "Vēlreiz rādīt pirmās palaišanas vedni" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parole" @@ -423,7 +423,7 @@ msgstr "Jauna parole" msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Redzamais vārds" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Izmanto šo adresi, lai, izmantojot datņu pārvaldnieku, savienotos ar savu ownCloud" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Ierakstīšanās vārds" @@ -463,34 +463,40 @@ msgstr "Ierakstīšanās vārds" msgid "Create" msgstr "Izveidot" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Noklusējuma krātuve" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Neierobežota" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Cits" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Krātuve" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "mainīt redzamo vārdu" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "iestatīt jaunu paroli" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Noklusējuma" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index ffca50ac33..4e71f1daf7 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 0f4afc9a65..ec36155795 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 e09a4d413c..21e7d44865 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 9f5c977fb5..a969dc67c4 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 9add39736b..ecf36754a8 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 74723ed7f1..e84fc88279 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f8ca0c7c0e..40da124eac 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 447a29db0a..3ff847fb0f 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "врати" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Групи" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Избриши" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" @@ -423,7 +423,7 @@ msgstr "Нова лозинка" msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користете ја оваа адреса да " -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Создај" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Останато" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 0517541d71..c84d1b6c14 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 694c52efd9..2588057d56 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 0d8a27fcad..6f0e7aad7c 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 b030d2708d..d162f1c8c1 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 810495c550..61490b6cf2 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 692260ced5..b6e0cf73bc 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e9bf60a848..79d90bc924 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 feca0679a9..41ef7653d7 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Kumpulan" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Padam" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kata laluan" @@ -423,7 +423,7 @@ msgstr "Kata laluan baru" msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Buat" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Lain" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 5d2e9b78ce..d36b31d09c 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b6d5743614..27d20c928e 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 3d6c988d93..1b3fabd0d6 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 9c3ee30fdf..422aaf85f4 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 cd297e9eec..57dd1d3609 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 d80dc9bfb1..6053a208e8 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-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 b86598c21e..aab57df4cd 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 2075d40c59..745111851e 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index a9a1ab2645..22e966f8b5 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 3a983dc294..c462eb309a 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index c935187d3c..f0767aad1b 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 0d0ba6a7e6..067ce86ac0 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "angre" msgid "Unable to remove user" msgstr "Kunne ikke slette bruker" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupper" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Gruppeadministrator" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Slett" @@ -400,7 +400,7 @@ msgstr "Få dine apps til å synkronisere dine filer" msgid "Show First Run Wizard again" msgstr "Vis \"Førstegangs veiveiseren\" på nytt" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" @@ -424,7 +424,7 @@ msgstr "Nytt passord" msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Visningsnavn" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressen for å kople til ownCloud i din filbehandler" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Logginn navn" @@ -464,34 +464,40 @@ msgstr "Logginn navn" msgid "Create" msgstr "Opprett" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Standard lager" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Ubegrenset" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Annet" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Lager" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "endre visningsnavn" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "sett nytt passord" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Standard" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 2cd88e05a1..72f3433fa0 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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/settings.po b/l10n/ne/settings.po index e1e8ae4a62..4c04e9f3f2 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-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 af31364f85..2784d11809 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 498aa1b544..f1b9bf29eb 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 20a7e6a7d0..491d7e83b6 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 5c58fa41d7..7f36fbde9a 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 8baa981e84..c962bdcb21 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 3832da32cb..21528e37f8 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: helonaut\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "ongedaan maken" msgid "Unable to remove user" msgstr "Kon gebruiker niet verwijderen" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Groepen" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Groep beheerder" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Verwijder" @@ -401,7 +401,7 @@ msgstr "Download de apps om bestanden te syncen" msgid "Show First Run Wizard again" msgstr "Toon de Eerste start Wizard opnieuw" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Wachtwoord" @@ -425,7 +425,7 @@ msgstr "Nieuw" msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Weergavenaam" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Inlognaam" @@ -465,34 +465,40 @@ msgstr "Inlognaam" msgid "Create" msgstr "Creëer" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Beheer herstel wachtwoord" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Standaard Opslaglimiet" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Ongelimiteerd" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Anders" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Opslaglimiet" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "wijzig weergavenaam" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "Instellen nieuw wachtwoord" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Standaard" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index d109ba5725..0f2557d3e8 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 88e61ad1bc..3f3eb8332f 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index c4c2318dc0..f97ef67ce1 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 9f63e8714b..05ae4eb504 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 dca33ac872..33fb848b53 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 99282fd989..06d0f5af15 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index ae0a85d505..af7df0e2c8 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index d678b612a1..fb378d82d7 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "angra" msgid "Unable to remove user" msgstr "Klarte ikkje fjerna brukaren" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupper" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Gruppestyrar" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Slett" @@ -401,7 +401,7 @@ msgstr "Få app-ar som kan synkronisera filene dine" msgid "Show First Run Wizard again" msgstr "Vis Oppstartvegvisaren igjen" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" @@ -425,7 +425,7 @@ msgstr "Nytt passord" msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Visingsnamn" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressa for å kopla til din ownCloud frå filhandsamaren din" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Innloggingsnamn" @@ -465,34 +465,40 @@ msgstr "Innloggingsnamn" msgid "Create" msgstr "Lag" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Standardlagring" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Ubegrensa" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Anna" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Lagring" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "endra visingsnamn" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "lag nytt passord" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Standard" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index e7b5cb9362..26891c0840 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 bf46e93a0d..280be574d1 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 1a76b8b94f..fca7e672f3 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 cfa3ca133c..e92f01aac0 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 704a2037a6..0933766c22 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e80ac3f4bd..ff7f1d0ad6 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 0b88c243c3..fab0d09061 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "defar" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grops" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grop Admin" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Escafa" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senhal" @@ -423,7 +423,7 @@ msgstr "Senhal novèl" msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Crea" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Autres" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index bdbe124d6e..9b93510e31 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 eaf8447ec8..9214bd8016 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 83f8b98f22..0b9dc1b1c1 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: adbrand \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 98f6a3172e..e7e4f919c4 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 9758b743af..4aa2980a59 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 89d8330061..9ef342d250 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 544a98b1b2..cf8aba0bb0 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index d28e3be037..6d4f620e89 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,16 +138,16 @@ msgstr "cofnij" msgid "Unable to remove user" msgstr "Nie można usunąć użytkownika" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupy" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Administrator grupy" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Usuń" @@ -401,7 +401,7 @@ msgstr "Pobierz aplikacje żeby synchronizować swoje pliki" msgid "Show First Run Wizard again" msgstr "Uruchom ponownie kreatora pierwszego uruchomienia" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Hasło" @@ -425,7 +425,7 @@ msgstr "Nowe hasło" msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Wyświetlana nazwa" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Login" @@ -465,34 +465,40 @@ msgstr "Login" msgid "Create" msgstr "Utwórz" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Odzyskiwanie hasła administratora" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Magazyn domyślny" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Bez limitu" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Inne" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Magazyn" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "zmień wyświetlaną nazwę" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "ustaw nowe hasło" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Domyślny" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index a03ad7450d..73460f9f46 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 3a7e54210f..6aa4735f5f 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 45c64bce8d..ef5d497485 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 969d08eae8..156e5ba5b3 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index e2cce3fd3c..dd203c1174 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 ba65453957..962449a889 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 8bdcf5164e..2018551051 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 6b725ef911..6d22375b61 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Impossível remover usuário" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupos" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupo Administrativo" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Excluir" @@ -400,7 +400,7 @@ msgstr "Faça com que os apps sincronize seus arquivos" msgid "Show First Run Wizard again" msgstr "Mostrar este Assistente de novo" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senha" @@ -424,7 +424,7 @@ msgstr "Nova senha" msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Nome de Exibição" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usar este endereço para conectar-se ao seu ownCloud no seu gerenciador de arquivos" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Nome de Login" @@ -464,34 +464,40 @@ msgstr "Nome de Login" msgid "Create" msgstr "Criar" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Recuperação da Senha do Administrador" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Armazenamento Padrão" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Outro" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Armazenamento" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "alterar nome de exibição" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "definir nova senha" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Padrão" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 739d302b67..079b6a30db 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 5249521a89..471ef2e90a 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: bmgmatias \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 100d39e239..56ea27aa64 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: bmgmatias \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 0cba5c44e3..77340fd72a 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mouxy , 2013 # Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-30 02:27+0200\n" -"PO-Revision-Date: 2013-05-30 00:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 01:00+0000\n" +"Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,21 +21,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Chave de recuperação activada com sucesso" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Não foi possível activar a chave de recuperação. Por favor verifique a password da chave de recuperação!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Chave de recuperação descativada com sucesso" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Não foi possível desactivar a chave de recuperação. Por favor verifique a password da chave de recuperação." #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -55,11 +56,11 @@ msgstr "Encriptação" #: templates/settings-admin.php:9 msgid "" "Enable encryption passwords recovery key (allow sharing to recovery key):" -msgstr "" +msgstr "Activar a chave de recuperação das passwords de encriptação (permitir partilha da chave de recuperação):" #: templates/settings-admin.php:13 msgid "Recovery account password" -msgstr "" +msgstr "Password de recuperação de conta" #: templates/settings-admin.php:20 templates/settings-personal.php:18 msgid "Enabled" @@ -71,15 +72,15 @@ msgstr "Desactivado" #: templates/settings-admin.php:32 msgid "Change encryption passwords recovery key:" -msgstr "" +msgstr "Alterar a chave de recuperação da password de encriptação:" #: templates/settings-admin.php:39 msgid "Old Recovery account password" -msgstr "" +msgstr "Password de recuperação de conta antiga:" #: templates/settings-admin.php:46 msgid "New Recovery account password" -msgstr "" +msgstr "Nova password de recuperação de conta" #: templates/settings-admin.php:51 msgid "Change Password" @@ -87,18 +88,18 @@ msgstr "Mudar a Password" #: templates/settings-personal.php:9 msgid "Enable password recovery by sharing all files with your administrator:" -msgstr "" +msgstr "Activar a recuperação de password ao partilhar todos os ficheiros com o administrador:" #: templates/settings-personal.php:11 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files if your password is lost" -msgstr "" +msgstr "Activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password." #: templates/settings-personal.php:27 msgid "File recovery settings updated" -msgstr "" +msgstr "Actualizadas as definições de recuperação de ficheiros" #: templates/settings-personal.php:28 msgid "Could not update file recovery" -msgstr "" +msgstr "Não foi possível actualizar a recuperação de ficheiros" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index ffb85d726f..da0220832e 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 13e5fc8902..b11914ce13 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 a08a4f95ab..530ee175fd 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 16196c2d73..7773182c3b 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ba546d0b3a..99fa3574d2 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: bmgmatias \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupos" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Eliminar" @@ -401,7 +401,7 @@ msgstr "Obtenha as aplicações para sincronizar os seus ficheiros" msgid "Show First Run Wizard again" msgstr "Mostrar novamente Wizard de Arranque Inicial" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Password" @@ -425,7 +425,7 @@ msgstr "Nova palavra-chave" msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Nome público" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Nome de utilizador" @@ -465,34 +465,40 @@ msgstr "Nome de utilizador" msgid "Create" msgstr "Criar" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Recuperar password de administrador" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Armazenamento Padrão" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Outro" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Armazenamento" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "modificar nome exibido" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "definir nova palavra-passe" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Padrão" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 9498aa4766..80f41d396c 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mouxy , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Falhou a limpar os mapas" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" @@ -59,7 +60,7 @@ msgstr "Não foi possível adicionar as configurações do servidor." #: js/settings.js:111 msgid "mappings cleared" -msgstr "" +msgstr "Mapas limpos" #: js/settings.js:112 msgid "Success" @@ -342,7 +343,7 @@ msgstr "Deixe vazio para nome de utilizador (padrão). De outro modo, especifiqu #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "Nome de utilizador interno" #: templates/settings.php:102 msgid "" @@ -362,11 +363,11 @@ msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Atributo do nome de utilizador interno" #: templates/settings.php:104 msgid "Override UUID detection" -msgstr "" +msgstr "Passar a detecção do UUID" #: templates/settings.php:105 msgid "" @@ -381,11 +382,11 @@ msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" -msgstr "" +msgstr "Atributo UUID:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Mapeamento do utilizador LDAP" #: templates/settings.php:108 msgid "" @@ -404,11 +405,11 @@ msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Limpar mapeamento do utilizador-LDAP" #: templates/settings.php:109 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Limpar o mapeamento do nome de grupo LDAP" #: templates/settings.php:111 msgid "Test Configuration" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 89d4fee676..c12ce40179 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 e4512308c2..879294fc3c 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 947f072607..531acc5f4f 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 61cb1199de..d2cbca4232 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 36eb61a0a2..920ea21f42 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 c8d1ff669f..7273db1a8c 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 ac37dff821..a2cd4b88d3 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "Anulează ultima acțiune" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupuri" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupul Admin " -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Șterge" @@ -399,7 +399,7 @@ msgstr "Ia acum aplicatia pentru sincronizarea fisierelor " msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parolă" @@ -423,7 +423,7 @@ msgstr "Noua parolă" msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Folosește această adresă pentru a conecta ownCloud cu managerul de fișiere" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Crează" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Stocare implicită" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Nelimitată" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Altele" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Stocare" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Implicită" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 29494dfa91..b04c34ca36 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 68c336d5e0..cccac051f1 100644 --- a/l10n/ru/core.po +++ b/l10n/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Langaru \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 8b9fd67193..666b8c8115 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Friktor \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 9d816b3a9c..31029f5a91 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 98906e9ea3..257cfe11e3 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e74b562225..c61bd2b929 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 5bc02d8d6b..b6ae06366f 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Friktor \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 f976346123..c3dc0abd01 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: Friktor \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "отмена" msgid "Unable to remove user" msgstr "Невозможно удалить пользователя" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Группы" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Группа Администраторы" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Удалить" @@ -401,7 +401,7 @@ msgstr "Получить приложения для синхронизации msgid "Show First Run Wizard again" msgstr "Показать помощник настройки" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" @@ -425,7 +425,7 @@ msgstr "Новый пароль" msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Отображаемое имя" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Используйте этот URL для подключения файлового менеджера к Вашему хранилищу" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Имя пользователя" @@ -465,34 +465,40 @@ msgstr "Имя пользователя" msgid "Create" msgstr "Создать" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Восстановление Пароля Администратора" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Хранилище по-умолчанию" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Неограниченно" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Другое" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Хранилище" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "изменить отображаемое имя" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "установить новый пароль" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "По-умолчанию" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 32d2e292b9..607a3bbc16 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Fenuks \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 17fc6a8ab6..b9d421bedd 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 80c3cb3419..67c47fbda7 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 8adee4517b..ee68ef40df 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 2bd504b679..f64ec864f0 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 706baec00f..b8c79bb807 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 95eb13dd48..9de3f6dedd 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 18fec1042a..85ede4e608 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "නිෂ්ප්‍රභ කරන්න" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "කණ්ඩායම්" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "කාණ්ඩ පරිපාලක" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "මකා දමන්න" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "මුර පදය" @@ -423,7 +423,7 @@ msgstr "නව මුරපදය" msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "තනන්න" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "වෙනත්" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index ff1915aa94..43dfc7d37a 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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/settings.po b/l10n/sk/settings.po index 09d08c8666..145d6154a7 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-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 d87d7bd297..93061558e5 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index a8452cb846..6b82daf913 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 6d6450c3ef..3e65f12b67 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 db8b9fc099..cb08d59bdf 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e8ac3dfa37..8f3dbdcd6e 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index d2c3647725..1c45a8b58d 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "vrátiť" msgid "Unable to remove user" msgstr "Nemožno odobrať používateľa" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Skupiny" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Správca skupiny" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Zmazať" @@ -400,7 +400,7 @@ msgstr "Získať aplikácie na synchronizáciu Vašich súborov" msgid "Show First Run Wizard again" msgstr "Znovu zobraziť sprievodcu prvým spustením" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" @@ -424,7 +424,7 @@ msgstr "Nové heslo" msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované meno" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Prihlasovacie meno" @@ -464,34 +464,40 @@ msgstr "Prihlasovacie meno" msgid "Create" msgstr "Vytvoriť" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Obnovenie hesla administrátora" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Predvolené úložisko" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Nelimitované" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Iné" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Úložisko" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "zmeniť zobrazované meno" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "nastaviť nové heslo" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Predvolené" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index f6ca2a1ef5..9a3291dad6 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 664db039c3..ff92b05553 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 080888f2db..ea02f844a9 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 5c1c7987df..9a237da51b 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index d1c13605c9..f454c3b088 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 569edc4a63..ab5fc6d212 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4f3b3ff203..283b917d7d 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 fca205d88b..b663f9300a 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "razveljavi" msgid "Unable to remove user" msgstr "Uporabnika ni mogoče odstraniti" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Skupine" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Skrbnik skupine" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Izbriši" @@ -400,7 +400,7 @@ msgstr "Pridobi programe za usklajevanje datotek" msgid "Show First Run Wizard again" msgstr "Zaženi čarovnika prvega zagona" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Geslo" @@ -424,7 +424,7 @@ msgstr "Novo geslo" msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Prikazano ime" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud." -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Prijavno ime" @@ -464,34 +464,40 @@ msgstr "Prijavno ime" msgid "Create" msgstr "Ustvari" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Privzeta shramba" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Neomejeno" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Drugo" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Shramba" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "spremeni prikazano ime" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "nastavi novo geslo" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Privzeto" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 068c8cceae..78c7981e8d 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 9139b2a087..36dc29636c 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 c6170c1d29..9f2dbc4255 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 038722e5bc..e130f905aa 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 426cfabe8e..39c470d29c 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 377bc26231..0fad985218 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 eb1dae6863..c3976801bf 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 bf13e0f746..9d14e58f41 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "anulo" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Elimino" @@ -399,7 +399,7 @@ msgstr "Merrni app-et për sinkronizimin e skedarëve tuaj" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kodi" @@ -423,7 +423,7 @@ msgstr "Kodi i ri" msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index af6b0ca9c9..942f654855 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4ec1787219..4dd9fdfc2a 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 90ca6a4966..8f55774b80 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 ec3de55ea6..fdf5055fab 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4c64e7cf04..1b2739626d 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 d456b02c44..957c84f24b 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e35bdd2bc7..a182762e2a 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 9e3774b750..0ac06c7b6c 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "опозови" msgid "Unable to remove user" msgstr "Не могу да уклоним корисника" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Групе" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Управник групе" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Обриши" @@ -399,7 +399,7 @@ msgstr "Преузмите апликације ради синхронизов msgid "Show First Run Wizard again" msgstr "Поново прикажи чаробњак за прво покретање" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" @@ -423,7 +423,7 @@ msgstr "Нова лозинка" msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Име за приказ" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Корисничко име" @@ -463,34 +463,40 @@ msgstr "Корисничко име" msgid "Create" msgstr "Направи" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Подразумевано складиште" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Неограничено" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Друго" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Складиште" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "промени име за приказ" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "постави нову лозинку" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Подразумевано" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 829ed1eb86..b1f8156ffd 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f2c3868a93..04e544fed8 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 372cafb28a..bab96c2f7e 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 4344f0ca09..1ebc994daf 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 53bf736d1b..84b2bd1de4 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 2b986563c3..e287551668 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 1519240040..f621ecf218 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 f1ce782b5e..a766452d68 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupe" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Obriši" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" @@ -423,7 +423,7 @@ msgstr "Nova lozinka" msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "Napravi" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Drugo" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 7f3cf1a0a1..88b9eb8796 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 04d433292d..b907694622 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 8587702e54..364ec19f98 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index beb625bf4d..493b132737 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b51ed96ae7..a29e3fd14f 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 9450f475e1..541fa809da 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 4afbd588c2..076ecd8c40 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "ångra" msgid "Unable to remove user" msgstr "Kan inte ta bort användare" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Grupper" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Gruppadministratör" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Radera" @@ -401,7 +401,7 @@ msgstr "Skaffa apparna för att synkronisera dina filer" msgid "Show First Run Wizard again" msgstr "Visa Första uppstarts-guiden igen" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lösenord" @@ -425,7 +425,7 @@ msgstr "Nytt lösenord" msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Visningsnamn" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Använd denna adress för att ansluta till ownCloud i din filhanterare" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Inloggningsnamn" @@ -465,34 +465,40 @@ msgstr "Inloggningsnamn" msgid "Create" msgstr "Skapa" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Admin återställningslösenord" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Förvald lagring" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Obegränsad" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Annat" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Lagring" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "ändra visningsnamn" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "ange nytt lösenord" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Förvald" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 0a7eecb95e..065300500e 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index a8fd5f1a2c..668dde05ff 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-05-25 02:02+0200\n" -"PO-Revision-Date: 2013-05-25 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:105 +#: templates/admin.php:235 templates/personal.php:111 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:114 msgid "" "Developed by the ownCloud community, the \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 0e19295b90..e2c786bf69 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 4c6eeba14c..65130bc867 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 51a80d720c..bec006510b 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 3c0a6db8c3..aa54bac42e 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 7c44742f5e..3d0648f5a5 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 63e2d32a9f..543510719f 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "முன் செயல் நீக்கம் " msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "குழுக்கள்" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "குழு நிர்வாகி" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "நீக்குக" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "கடவுச்சொல்" @@ -423,7 +423,7 @@ msgstr "புதிய கடவுச்சொல்" msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "உருவாக்குக" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "மற்றவை" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 973ddf58fa..94c0df79e3 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 5a53b4c76b..6aa17c774e 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 59ea136f6f..8c51bd1976 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 5516c4ecc0..37bde93041 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 da12199176..1a61611986 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 7d35cbe2cc..b503d1844f 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index c744b0e704..75a66ae433 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "తొలగించు" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "సంకేతపదం" @@ -423,7 +423,7 @@ msgstr "కొత్త సంకేతపదం" msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index a1d13612a9..bd76a11a38 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 28e960f7fa..8e2258cc47 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-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 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.pot b/l10n/templates/files.pot index b659be23a1..b9a904385e 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-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+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 41a5e9e058..8807165afb 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-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+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 04085c3a1d..e29125e5de 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-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+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 80fd28d067..27b3b6b989 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-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+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 ab030823c2..068b5c9787 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-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+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 f7d313ecf6..5815404b6a 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-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+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 19f98f5087..02960b167a 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-06-10 01:59+0200\n" +"POT-Creation-Date: 2013-06-11 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/settings.pot b/l10n/templates/settings.pot index a359a70931..c53a5b8f69 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-06-10 01:59+0200\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" @@ -423,7 +423,7 @@ msgstr "" msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 5755355a9a..4a7aa072d4 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-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+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 003aa61119..802771dad3 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-06-10 01:58+0200\n" +"POT-Creation-Date: 2013-06-11 01:56+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 9160ef6f8f..ec61276c14 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 499ac8d86b..69bdbb3b34 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 1e76ec514c..ccaf217e3f 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f2d3d62bba..f9a4f05bba 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 04c3dfb2f0..bcf8bc6548 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 10e0ed5593..7c7cc3d6f8 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 88f5faaa8c..03f870df35 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "เลิกทำ" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "กลุ่ม" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "ผู้ดูแลกลุ่ม" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "ลบ" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "แสดงหน้าจอวิซาร์ดนำทางครั้งแรกอีกครั้ง" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "รหัสผ่าน" @@ -423,7 +423,7 @@ msgstr "รหัสผ่านใหม่" msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "ชื่อที่ต้องการแสดง" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ใช้ที่อยู่นี้เพื่อเชื่อมต่อกับ ownCloud ในโปรแกรมจัดการไฟล์ของคุณ" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "ชื่อที่ใช้สำหรับเข้าสู่ระบบ" @@ -463,34 +463,40 @@ msgstr "ชื่อที่ใช้สำหรับเข้าสู่ร msgid "Create" msgstr "สร้าง" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "พื้นที่จำกัดข้อมูลเริ่มต้น" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "ไม่จำกัดจำนวน" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "อื่นๆ" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "พื้นที่จัดเก็บข้อมูล" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "เปลี่ยนชื่อที่ต้องการให้แสดง" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "ตั้งค่ารหัสผ่านใหม่" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "ค่าเริ่มต้น" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 84d0a03ade..6b3bf07f84 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 4d90287755..f9e6486c74 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index f4c759bb89..d3ebdfae68 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 30864d070e..f852edaf64 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 f33f121473..a6e534171e 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 d994fdc912..38601b9c91 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 19a72a9187..7bd5909ca4 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index e3c3da1139..415cd779f2 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: ismail yenigül \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "geri al" msgid "Unable to remove user" msgstr "Kullanıcı kaldırılamıyor" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Gruplar" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Yönetici Grubu " -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Sil" @@ -400,7 +400,7 @@ msgstr "Dosyalarınızı senkronize etmek için uygulamayı indirin" msgid "Show First Run Wizard again" msgstr "İlk Çalıştırma Sihirbazını yeniden göster" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parola" @@ -424,7 +424,7 @@ msgstr "Yeni parola" msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Ekran Adı" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bu adresi kullanarak ownCloud 'unuza dosya yöneticinizde bağlanın" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Giriş Adı" @@ -464,34 +464,40 @@ msgstr "Giriş Adı" msgid "Create" msgstr "Oluştur" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "Yönetici kurtarma parolası" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Varsayılan Depolama" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Limitsiz" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Diğer" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Depolama" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "ekran adını değiştir" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "yeni parola belirle" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Varsayılan" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 84fe2a4a5a..ab1a51ccbd 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 300b68ef35..fc744974b2 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index fb86e4c522..041a47962c 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index a0a3d3e2f8..c8d460a20b 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index a740a72d4b..b024d95d79 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: uqkun \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index f1f09886a2..c305885e46 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 77ebdca63c..8431d09324 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 85010e1d22..bb6b0767cc 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -136,16 +136,16 @@ msgstr "يېنىۋال" msgid "Unable to remove user" msgstr "ئىشلەتكۈچىنى چىقىرىۋېتەلمەيدۇ" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "گۇرۇپپا" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "گۇرۇپپا باشقۇرغۇچى" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "ئۆچۈر" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "ئىم" @@ -423,7 +423,7 @@ msgstr "يېڭى ئىم" msgid "Change password" msgstr "ئىم ئۆزگەرت" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "كۆرسىتىش ئىسمى" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "تىزىمغا كىرىش ئاتى" @@ -463,34 +463,40 @@ msgstr "تىزىمغا كىرىش ئاتى" msgid "Create" msgstr "قۇر" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "كۆڭۈلدىكى ساقلىغۇچ" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "چەكسىز" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "باشقا" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "ساقلىغۇچ" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "كۆرسىتىدىغان ئىسىمنى ئۆزگەرت" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "يېڭى ئىم تەڭشە" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "كۆڭۈلدىكى" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 1497b82e85..9dbe65a748 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index b8ab053529..ec6e346371 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 5cfc465cfb..d89e4461a7 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 0e783376e1..8aa0bbf240 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 cdb719b60b..e0e138eb08 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e9bea37a86..67ddad52da 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 0307e014a4..19907b7581 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 6a0edb56e8..58d6ddb9a9 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "відмінити" msgid "Unable to remove user" msgstr "Неможливо видалити користувача" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Групи" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Адміністратор групи" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Видалити" @@ -399,7 +399,7 @@ msgstr "Отримати додатки для синхронізації ваш msgid "Show First Run Wizard again" msgstr "Показувати Майстер Налаштувань знову" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" @@ -423,7 +423,7 @@ msgstr "Новий пароль" msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Показати Ім'я" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Ім'я Логіну" @@ -463,34 +463,40 @@ msgstr "Ім'я Логіну" msgid "Create" msgstr "Створити" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "сховище за замовчуванням" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Необмежено" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Інше" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Сховище" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "змінити зображене ім'я" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "встановити новий пароль" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "За замовчуванням" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index bbff9e1092..3cdcb7381f 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 6562d96b9e..525e3c50f3 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 669488a7ca..59f793764f 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 1db5a25f47..e662bb1a14 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 42b90916ae..ad310840b8 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 00:02+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 2e794bb41d..fa2688fd3e 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "پاسورڈ" @@ -423,7 +423,7 @@ msgstr "نیا پاسورڈ" msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 2b1ded2759..48334f186b 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 329fef9c31..86474234c6 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 0baeb3a4ae..c48e336fc8 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 31b55a8840..4ca9187a76 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 753cf42762..b1191e63d7 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e649fd5fc7..b1dff0973d 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 7961f29a29..ac38468283 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 19c02048eb..9e7b0c6149 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "lùi lại" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "Nhóm" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Nhóm quản trị" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "Xóa" @@ -399,7 +399,7 @@ msgstr "Nhận ứng dụng để đồng bộ file của bạn" msgid "Show First Run Wizard again" msgstr "Hiện lại việc chạy đồ thuật khởi đầu" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Mật khẩu" @@ -423,7 +423,7 @@ msgstr "Mật khẩu mới" msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "Tên hiển thị" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Sử dụng địa chỉ này để kết nối ownCloud của bạn trong trình quản lý file của bạn" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "Tên đăng nhập" @@ -463,34 +463,40 @@ msgstr "Tên đăng nhập" msgid "Create" msgstr "Tạo" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "Bộ nhớ mặc định" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "Không giới hạn" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "Khác" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "Bộ nhớ" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "Thay đổi tên hiển thị" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "đặt mật khẩu mới" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "Mặc định" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index d9dc91a72c..98461719c9 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e6249054f7..e90a7b93fc 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 6267d8dc2f..f9d2017c0b 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 4e2b2c83f2..477137bac3 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index f99b3c76a3..6dd7cc9a0a 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 d132bb8293..05d3e9d461 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 5c07ebbb2c..fc04255391 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 50483361c8..2ac880c22a 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: hyy0591 \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "撤销" msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "群组" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "群组管理员" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "删除" @@ -400,7 +400,7 @@ msgstr "获取应用并同步您的文件" msgid "Show First Run Wizard again" msgstr "再次显示首次运行向导" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" @@ -424,7 +424,7 @@ msgstr "新密码" msgid "Change password" msgstr "改变密码" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "显示名称" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "使用此地址来在您的文件管理器中连接您的ownCloud" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "登录名" @@ -464,34 +464,40 @@ msgstr "登录名" msgid "Create" msgstr "新建" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "默认容量" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "无限制" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "其他" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "容量" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "更改显示名称" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "设置新的密码" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "默认" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 294b4004cb..ee59a1a2e8 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 b08441ca34..739ab358de 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: zhangmin \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 a08c8d711f..a8e33eda55 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: zhangmin \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 640fc85f41..4b003e8660 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 44312ed4d8..459a8decb7 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 46c482093d..01c19992bc 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 78f653355b..6cea910bd5 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 0a5d52aeb8..af7ca4bd0b 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: modokwang \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -138,16 +138,16 @@ msgstr "撤销" msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "组" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "组管理员" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "删除" @@ -401,7 +401,7 @@ msgstr "安装应用进行文件同步" msgid "Show First Run Wizard again" msgstr "再次显示首次运行向导" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" @@ -425,7 +425,7 @@ msgstr "新密码" msgid "Change password" msgstr "修改密码" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "显示名称" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "用该地址来连接文件管理器中的 ownCloud" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "登录名称" @@ -465,34 +465,40 @@ msgstr "登录名称" msgid "Create" msgstr "创建" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "管理恢复密码" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "默认存储" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "无限" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "其它" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "存储" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "修改显示名称" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "设置新密码" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "默认" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 64263ffbee..5eef1bce51 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index f90883b9cc..866a9269fb 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:17+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 2d607d0d13..c818e894a7 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+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 5c21b80f61..bd2e25b9ef 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 8b29c417cc..31a5969b1b 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 e38f02f6e9..9a39db9eea 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 c8d4bb32a9..f5cc3d2438 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 97fe864568..d9aee240ff 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-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -136,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "群組" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "刪除" @@ -399,7 +399,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" @@ -423,7 +423,7 @@ msgstr "新密碼" msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "" @@ -463,34 +463,40 @@ msgstr "" msgid "Create" msgstr "" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 103c0c926d..d4521dd95f 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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 c44ecd2282..cb2eeb8231 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/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-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index f7c4fea659..4ac318f1f4 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:18+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index f3e6e3d588..125686a62d 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 3a52d7741a..22d719b286 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 31a0d0acdb..a951d989a3 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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 87fa30df69..aef3941ec9 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 39686f8b38..1a340dcb7e 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 23:18+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-06-11 01:57+0200\n" +"PO-Revision-Date: 2013-06-10 23:57+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" @@ -137,16 +137,16 @@ msgstr "復原" msgid "Unable to remove user" msgstr "無法刪除用戶" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" msgstr "群組" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "群組 管理員" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" msgstr "刪除" @@ -400,7 +400,7 @@ msgstr "下載應用程式來同步您的檔案" msgid "Show First Run Wizard again" msgstr "再次顯示首次使用精靈" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" @@ -424,7 +424,7 @@ msgstr "新密碼" msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:56 templates/users.php:85 msgid "Display Name" msgstr "顯示名稱" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 templates/users.php:84 msgid "Login Name" msgstr "登入名稱" @@ -464,34 +464,40 @@ msgstr "登入名稱" msgid "Create" msgstr "建立" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "管理者復原密碼" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "預設儲存區" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "無限制" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" msgstr "其他" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "儲存區" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "修改顯示名稱" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "設定新密碼" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "預設" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 9c279c5084..e1138987a6 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:58+0200\n" -"PO-Revision-Date: 2013-06-09 23:19+0000\n" +"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"PO-Revision-Date: 2013-06-10 23:19+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/settings/l10n/el.php b/settings/l10n/el.php index 3558ae7298..24f3a099cc 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -101,6 +101,7 @@ "Use this address to connect to your ownCloud in your file manager" => "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας", "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", +"Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", "Default Storage" => "Προκαθορισμένη Αποθήκευση ", "Unlimited" => "Απεριόριστο", "Other" => "Άλλο", From 64593e4b84fdd6881a43530461c50464303cc42e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 11 Jun 2013 10:02:55 +0200 Subject: [PATCH 066/145] update submodule --- 3rdparty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty b/3rdparty index a13af72fbe..d59b017922 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit a13af72fbe8983686fc47489a750e60319f68ac2 +Subproject commit d59b017922d9ac3bf985dee0eb721ec1a901ac72 From e3e140993d8a382ea572f08751294cb7d10e714b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 3 Jun 2013 18:28:48 +0200 Subject: [PATCH 067/145] db structure, allow null in columns for '' values --- db_structure.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db_structure.xml b/db_structure.xml index 933b09988f..cefb7fc52c 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -70,7 +70,7 @@ id text - true + false 64 @@ -220,7 +220,7 @@ path text - true + false 512 @@ -244,7 +244,7 @@ name text - true + false 250 From 5fafd55108d1ecd13befaa589902a84a23276af8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 11 Jun 2013 12:03:50 +0200 Subject: [PATCH 068/145] make sure that only one process can enter the migration mode --- apps/files_encryption/hooks/hooks.php | 6 +- apps/files_encryption/lib/util.php | 83 ++++++++++++++++++++++++--- 2 files changed, 77 insertions(+), 12 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index c4b247da1e..9f36393d59 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -67,10 +67,10 @@ class Hooks { $session->setPrivateKey($privateKey, $params['uid']); // Check if first-run file migration has already been performed - $migrationCompleted = $util->getMigrationStatus(); + $ready = $util->beginMigration(); // If migration not yet done - if (!$migrationCompleted) { + if ($ready) { $userView = new \OC_FilesystemView('/' . $params['uid']); @@ -102,7 +102,7 @@ class Hooks { } // Register successful migration in DB - $util->setMigrationStatus(1); + $util->finishMigration(); } diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index a6711880c2..82b6ca2f32 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1058,7 +1058,7 @@ class Util { * @param $status * @return bool */ - public function setMigrationStatus($status) { + private function setMigrationStatus($status) { $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ?'; @@ -1074,7 +1074,7 @@ class Util { return true; } else { - + \OCP\Util::writeLog('Encryption library', "Could not set migration status for " . $this->userId, \OCP\Util::ERROR); return false; } @@ -1082,12 +1082,80 @@ class Util { } /** - * @brief Check whether pwd recovery is enabled for a given user - * @return bool 1 = yes, 0 = no, false = no record + * @brief start migration mode to initially encrypt users data + * @return boolean + */ + public function beginMigration() { + + $return = false; + + $transaction = \OC_DB::beginTransaction(); + + if ($transaction === false) { + \OCP\Util::writeLog('Encryption library', "Your database migration doesn't support transactions", \OCP\Util::WARN); + } + + $migrationStatus = $this->getMigrationStatus(); + + if ($migrationStatus === '0') { + + $return = $this->setMigrationStatus(-1); + + if ($return === true) { + \OCP\Util::writeLog('Encryption library', "Enter migration mode for initial encryption for user " . $this->userId, \OCP\Util::INFO); + } else { + \OCP\Util::writeLog('Encryption library', "Could not activate migration mode for " . $this->userId . ", encryption aborted", \OCP\Util::ERROR); + } + } else { + \OCP\Util::writeLog('Encryption library', "Another process already performs the migration for user " . $this->userId, \OCP\Util::INFO); + } + + \OC_DB::commit(); + + return $return; + } + + /** + * @brief close migration mode after users data has been encrypted successfully + * @return boolean + */ + public function finishMigration() { + + $return = false; + + $transaction = \OC_DB::beginTransaction(); + + if ($transaction === false) { + \OCP\Util::writeLog('Encryption library', "Your database migration doesn't support transactions", \OCP\Util::WARN); + } + + $migrationStatus = $this->getMigrationStatus(); + + if ($migrationStatus === '-1') { + + $return = $this->setMigrationStatus(1); + + if ($return === true) { + \OCP\Util::writeLog('Encryption library', "Leave migration mode for: " . $this->userId . " successfully.", \OCP\Util::INFO); + } else { + \OCP\Util::writeLog('Encryption library', "Could not deactivate migration mode for " . $this->userId, \OCP\Util::ERROR); + } + } else { + \OCP\Util::writeLog('Encryption library', "Someone else finished the migration mode to early for user " . $this->userId, \OCP\Util::ERROR); + } + + \OC_DB::commit(); + + return $return; + } + + /** + * @brief check if files are already migrated to the encryption system + * @return '1' = yes, '0' = no, '-1' = migration in progress, false = no record * @note If records are not being returned, check for a hidden space * at the start of the uid in db */ - public function getMigrationStatus() { + private function getMigrationStatus() { $sql = 'SELECT `migration_status` FROM `*PREFIX*encryption` WHERE `uid` = ?'; @@ -1112,14 +1180,11 @@ class Util { // If no record is found if (empty($migrationStatus)) { - + \OCP\Util::writeLog('Encryption library', "Could not get migration status for " . $this->userId . ", no record found", \OCP\Util::ERROR); return false; - // If a record is found } else { - return $migrationStatus[0]; - } } From 3ec6b19cdf6b1774d359c10f6cd7f74b5f376d18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 11 Jun 2013 13:07:39 +0200 Subject: [PATCH 069/145] use constants for different migration status --- apps/files_encryption/lib/util.php | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 82b6ca2f32..a5aa121f93 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -96,10 +96,13 @@ class Util { //// DONE: test new encryption with sharing //// TODO: test new encryption with proxies + const MIGRATION_COMPLETED = 1; // migration to new encryption completed + const MIGRATION_IN_PROGRESS = -1; // migration is running + const MIGRATION_OPEN = 0; // user still needs to be migrated + private $view; // OC_FilesystemView object for filesystem operations private $userId; // ID of the currently logged-in user - private $pwd; // User Password private $client; // Client side encryption mode flag private $publicKeyDir; // Dir containing all public user keys private $encryptionDir; // Dir containing user's files_encryption @@ -1097,9 +1100,9 @@ class Util { $migrationStatus = $this->getMigrationStatus(); - if ($migrationStatus === '0') { + if ($migrationStatus === self::MIGRATION_OPEN) { - $return = $this->setMigrationStatus(-1); + $return = $this->setMigrationStatus(self::MIGRATION_IN_PROGRESS); if ($return === true) { \OCP\Util::writeLog('Encryption library', "Enter migration mode for initial encryption for user " . $this->userId, \OCP\Util::INFO); @@ -1107,7 +1110,7 @@ class Util { \OCP\Util::writeLog('Encryption library', "Could not activate migration mode for " . $this->userId . ", encryption aborted", \OCP\Util::ERROR); } } else { - \OCP\Util::writeLog('Encryption library', "Another process already performs the migration for user " . $this->userId, \OCP\Util::INFO); + \OCP\Util::writeLog('Encryption library', "Another process already performs the migration for user " . $this->userId, \OCP\Util::WARN); } \OC_DB::commit(); @@ -1131,9 +1134,9 @@ class Util { $migrationStatus = $this->getMigrationStatus(); - if ($migrationStatus === '-1') { + if ($migrationStatus === self::MIGRATION_IN_PROGRESS) { - $return = $this->setMigrationStatus(1); + $return = $this->setMigrationStatus(self::MIGRATION_COMPLETED); if ($return === true) { \OCP\Util::writeLog('Encryption library', "Leave migration mode for: " . $this->userId . " successfully.", \OCP\Util::INFO); @@ -1151,7 +1154,7 @@ class Util { /** * @brief check if files are already migrated to the encryption system - * @return '1' = yes, '0' = no, '-1' = migration in progress, false = no record + * @return migration status, false = in case of no record * @note If records are not being returned, check for a hidden space * at the start of the uid in db */ @@ -1184,7 +1187,7 @@ class Util { return false; // If a record is found } else { - return $migrationStatus[0]; + return (int)$migrationStatus[0]; } } From 118f2b32830026c5a14e6c79bf4c9feb5b88677e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 11 Jun 2013 13:48:17 +0200 Subject: [PATCH 070/145] createUser() needs to return something; the user object or false --- lib/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/user.php b/lib/user.php index 503ac3f749..06ea8e791d 100644 --- a/lib/user.php +++ b/lib/user.php @@ -213,7 +213,7 @@ class OC_User { * Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-" */ public static function createUser($uid, $password) { - self::getManager()->createUser($uid, $password); + return self::getManager()->createUser($uid, $password); } /** From 0872f641dd41dce2ded8f3694ef5089077defd8c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 14:30:13 +0200 Subject: [PATCH 071/145] darker low threshold color for file size and age fading, better contrast --- apps/files/js/filelist.js | 2 +- apps/files/templates/part.list.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index c24d1fd824..e19a35bbc5 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -51,7 +51,7 @@ var FileList={ }else{ simpleSize=t('files', 'Pending'); } - var sizeColor = Math.round(200-Math.pow((size/(1024*1024)),2)); + var sizeColor = Math.round(160-Math.pow((size/(1024*1024)),2)); var lastModifiedTime = Math.round(lastModified.getTime() / 1000); td = $('
').attr({ "class": "filesize", diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 1719d25e66..1e94275dcb 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -3,12 +3,12 @@ 200) $relative_date_color = 200; + if($relative_date_color>160) $relative_date_color = 160; $name = rawurlencode($file['name']); $name = str_replace('%2F', '/', $name); $directory = rawurlencode($file['directory']); From 5d4ff0e53751e5e8e7810eb361706fbc4eccdadb Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 14:48:53 +0200 Subject: [PATCH 072/145] better contrast for files list, darker greys for selection and hover --- apps/files/css/files.css | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index f788949b1b..108dcd741c 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -63,8 +63,12 @@ } #filestable { position: relative; top:37px; width:100%; } tbody tr { background-color:#fff; height:2.5em; } -tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; } -tbody tr.selected { background-color:#eee; } +tbody tr:hover, tbody tr:active { + background-color: rgb(240,240,240); +} +tbody tr.selected { + background-color: rgb(230,230,230); +} tbody a { color:#000; } span.extension, span.uploading, td.date { color:#999; } span.extension { text-transform:lowercase; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter:alpha(opacity=70); opacity:.7; -webkit-transition:opacity 300ms; -moz-transition:opacity 300ms; -o-transition:opacity 300ms; transition:opacity 300ms; } @@ -81,7 +85,12 @@ table th#headerDate, table td.date { min-width:11em; padding:0 .1em 0 1em; text- /* Multiselect bar */ #filestable.multiselect { top:63px; } table.multiselect thead { position:fixed; top:82px; z-index:1; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; padding-left: 64px; width:100%; } -table.multiselect thead th { background:rgba(230,230,230,.8); color:#000; font-weight:bold; border-bottom:0; } +table.multiselect thead th { + background-color: rgba(210,210,210,.7); + color: #000; + font-weight: bold; + border-bottom: 0; +} table.multiselect #headerName { width: 100%; } table td.selection, table th.selection, table td.fileaction { width:2em; text-align:center; } table td.filename a.name { display:block; height:1.5em; vertical-align:middle; margin-left:3em; } @@ -115,10 +124,12 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } } #fileList .name { position:relative; /* Firefox needs to explicitly have this default set … */ } #fileList tr:hover .fileactions { /* background to distinguish when overlaying with file names */ - background:rgba(248,248,248,.9); box-shadow:-5px 0 7px rgba(248,248,248,.9); + background-color: rgba(240,240,240,0.898); + box-shadow: -5px 0 7px rgba(240,240,240,0.898); } #fileList tr.selected:hover .fileactions, #fileList tr.mouseOver .fileactions { /* slightly darker color for selected rows */ - background:rgba(238,238,238,.9); box-shadow:-5px 0 7px rgba(238,238,238,.9); + background-color: rgba(230,230,230,.9); + box-shadow: -5px 0 7px rgba(230,230,230,.9); } #fileList .fileactions a.action img { position:relative; top:.2em; } #fileList a.action { display:inline; margin:-.5em 0; padding:1em .5em 1em .5em !important; } From 2a936670ce513b411417a2bda9419ea2541c230d Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 14:50:23 +0200 Subject: [PATCH 073/145] better contrast for controls bar --- core/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index 313f89195d..319e9559d9 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -141,7 +141,7 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b padding:0 70px 0 0.5em; margin:0; -moz-box-sizing:border-box; box-sizing:border-box; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; - background:#f7f7f7; border-bottom:1px solid #eee; z-index:50; + background:#eee; border-bottom:1px solid #e7e7e7; z-index:50; } #controls .button { display:inline-block; } From 651f1b09955bb1adc9cc768d885c753aaa81ead5 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 14:51:06 +0200 Subject: [PATCH 074/145] better contrast and grouping for blocks in personal settings through darker background color --- core/css/styles.css | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 319e9559d9..0987dafd61 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -355,14 +355,27 @@ tr .action { width:16px; height:16px; } tr:hover .action:hover, .selectedActions a:hover, .header-action:hover { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } tbody tr:hover, tr:active { background-color:#f8f8f8; } -#body-settings .personalblock, #body-settings .helpblock { padding:.5em 1em; margin:1em; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } +#body-settings .personalblock, #body-settings .helpblock { + padding: .5em 1em; + margin: 1em; + background-color: rgb(240,240,240); + color: #555; + text-shadow: #fff 0 1px 0; + -moz-border-radius: .5em; -webkit-border-radius: .5em; border-radius: .5em; +} #body-settings .personalblock#quota { position:relative; padding:0; } #body-settings #controls+.helpblock { position:relative; margin-top:3em; } .personalblock > legend { margin-top:2em; } .personalblock > legend, th, dt, label { font-weight:bold; } code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; } -#quota div, div.jp-play-bar, div.jp-seek-bar { padding:0; background:#e6e6e6; font-weight:normal; white-space:nowrap; -moz-border-radius-bottomleft:.4em; -webkit-border-bottom-left-radius:.4em; border-bottom-left-radius:.4em; -moz-border-radius-topleft:.4em; -webkit-border-top-left-radius:.4em; border-top-left-radius:.4em; } +#quota div, div.jp-play-bar, div.jp-seek-bar { + padding: 0; + background-color: rgb(220,220,220); + font-weight: normal; + white-space: nowrap; + -moz-border-radius-bottomleft: .4em; -webkit-border-bottom-left-radius: .4em; border-bottom-left-radius:.4em; + -moz-border-radius-topleft: .4em; -webkit-border-top-left-radius: .4em; border-top-left-radius: .4em; } #quotatext {padding:.6em 1em;} div.jp-play-bar, div.jp-seek-bar { padding:0; } From abfbd9b13612351a0d9f46fcc70194c0103003df Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 14:51:29 +0200 Subject: [PATCH 075/145] feedback for hover/tap on breadcrumbs --- core/css/styles.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/css/styles.css b/core/css/styles.css index 0987dafd61..58e750da4f 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -440,12 +440,22 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} .help-includes {overflow: hidden; width: 100%; height: 100%; -moz-box-sizing: border-box; box-sizing: border-box; padding-top: 2.8em; } .help-iframe {width: 100%; height: 100%; margin: 0;padding: 0; border: 0; overflow: auto;} + /* ---- BREADCRUMB ---- */ div.crumb { float:left; display:block; background:url('../img/breadcrumb.svg') no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; -moz-box-sizing:border-box; box-sizing:border-box; } div.crumb:first-child { padding:10px 20px 10px 5px; } div.crumb.last { font-weight:bold; background:none; padding-right:10px; } div.crumb a{ padding: 0.9em 0 0.7em 0; } +/* some feedback for hover/tap on breadcrumbs */ +div.crumb:hover, +div.crumb:focus, +div.crumb:active { + -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; + filter:alpha(opacity=70); + opacity:.7; +} + /* ---- APP STYLING ---- */ From ab79480dc602a98cc04bf5885be0066e00176a53 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 14:57:06 +0200 Subject: [PATCH 076/145] gitignore apps2 folder as well --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index fe89c74ab3..68977ad077 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,7 @@ config/mount.php apps/inc.php # ignore all apps except core ones -apps/* +apps* !apps/files !apps/files_encryption !apps/files_external @@ -76,4 +76,4 @@ nbproject data-autotest /tests/coverage* /tests/autoconfig* -/tests/autotest* \ No newline at end of file +/tests/autotest* From 48b5e3d4980abcbe8dedebcaf080e13e11502ec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 11 Jun 2013 15:57:00 +0200 Subject: [PATCH 077/145] allow autotest to run 10x times longer --- tests/phpunit-autotest.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index d74451cbe6..9d6750751f 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -1,9 +1,9 @@ lib/ From b014509f4132ce7c978b6edc595a03ab432eda3b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 16:05:02 +0200 Subject: [PATCH 078/145] move storage bar below clients showcase to make it more visible --- settings/templates/personal.php | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/settings/templates/personal.php b/settings/templates/personal.php index f0002c505c..b11f1912f5 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -4,12 +4,6 @@ * See the COPYING-README file. */?> -
-

t('You have used %s of the available %s', - array($_['usage'], $_['total_space'])));?>

-
- -

t('Get the apps to sync your files'));?>

@@ -28,6 +22,15 @@
+
+
+

+ t('You have used %s of the available %s', + array($_['usage'], $_['total_space'])));?> +

+
+
+ Date: Tue, 11 Jun 2013 18:01:50 +0200 Subject: [PATCH 079/145] remove leading spaces --- core/css/multiselect.css | 132 +++++++++++++++++++-------------------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/core/css/multiselect.css b/core/css/multiselect.css index def4e60d74..3cf43ccd4b 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -1,84 +1,84 @@ /* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net - This file is licensed under the Affero General Public License version 3 or later. - See the COPYING-README file. */ +This file is licensed under the Affero General Public License version 3 or later. +See the COPYING-README file. */ - ul.multiselectoptions { - background-color:#fff; - border:1px solid #ddd; - border-top:none; - box-shadow:0 1px 1px #ddd; - padding-top:.5em; - position:absolute; +ul.multiselectoptions { + background-color:#fff; + border:1px solid #ddd; + border-top:none; + box-shadow:0 1px 1px #ddd; + padding-top:.5em; + position:absolute; max-height: 20em; overflow-y: auto; - z-index:49; - } + z-index:49; +} - ul.multiselectoptions.down { - border-bottom-left-radius:.5em; - border-bottom-right-radius:.5em; - } +ul.multiselectoptions.down { + border-bottom-left-radius:.5em; + border-bottom-right-radius:.5em; +} - ul.multiselectoptions.up { - border-top-left-radius:.5em; - border-top-right-radius:.5em; - } +ul.multiselectoptions.up { + border-top-left-radius:.5em; + border-top-right-radius:.5em; +} - ul.multiselectoptions>li { - overflow:hidden; - white-space:nowrap; - } +ul.multiselectoptions>li { + overflow:hidden; + white-space:nowrap; +} - ul.multiselectoptions>li>input[type="checkbox"] { +ul.multiselectoptions>li>input[type="checkbox"] { margin-top: 3px; margin-right: 5px; margin-left: 3px; - } +} - div.multiselect { - display:inline-block; - max-width:400px; - min-width:100px; - padding-right:.6em; - position:relative; - vertical-align:bottom; - } +div.multiselect { + display:inline-block; + max-width:400px; + min-width:100px; + padding-right:.6em; + position:relative; + vertical-align:bottom; +} - div.multiselect.active { - background-color:#fff; - position:relative; - z-index:50; - } +div.multiselect.active { + background-color:#fff; + position:relative; + z-index:50; +} - div.multiselect.up { - border-top:0 none; - border-top-left-radius:0; - border-top-right-radius:0; - } +div.multiselect.up { + border-top:0 none; + border-top-left-radius:0; + border-top-right-radius:0; +} - div.multiselect.down { - border-bottom:none; - border-bottom-left-radius:0; - border-bottom-right-radius:0; - } +div.multiselect.down { + border-bottom:none; + border-bottom-left-radius:0; + border-bottom-right-radius:0; +} - div.multiselect>span:first-child { - float:left; - margin-right:2em; - overflow:hidden; - text-overflow:ellipsis; - width:90%; - } +div.multiselect>span:first-child { + float:left; + margin-right:2em; + overflow:hidden; + text-overflow:ellipsis; + width:90%; +} - div.multiselect>span:last-child { - position:absolute; - right:.8em; - } +div.multiselect>span:last-child { + position:absolute; + right:.8em; +} - ul.multiselectoptions input.new { - border-top-left-radius:0; - border-top-right-radius:0; - padding-bottom:.2em; - padding-top:.2em; - margin:0; - } +ul.multiselectoptions input.new { + border-top-left-radius:0; + border-top-right-radius:0; + padding-bottom:.2em; + padding-top:.2em; + margin:0; +} From e6a4721f648f0e201dcdfc06c743de00c75b7d69 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 18:02:30 +0200 Subject: [PATCH 080/145] checkstyle: add space after colon --- core/css/multiselect.css | 92 ++++++++++++++++++++-------------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/core/css/multiselect.css b/core/css/multiselect.css index 3cf43ccd4b..bb1c525a3c 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -1,84 +1,84 @@ -/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net +/* Copyright (c) 2011, Jan-Christoph Borchardt, http: //jancborchardt.net This file is licensed under the Affero General Public License version 3 or later. See the COPYING-README file. */ ul.multiselectoptions { - background-color:#fff; - border:1px solid #ddd; - border-top:none; - box-shadow:0 1px 1px #ddd; - padding-top:.5em; - position:absolute; - max-height: 20em; - overflow-y: auto; - z-index:49; + background-color: #fff; + border: 1px solid #ddd; + border-top: none; + box-shadow: 0 1px 1px #ddd; + padding-top: .5em; + position: absolute; + max-height: 20em; + overflow-y: auto; + z-index: 49; } ul.multiselectoptions.down { - border-bottom-left-radius:.5em; - border-bottom-right-radius:.5em; + border-bottom-left-radius: .5em; + border-bottom-right-radius: .5em; } ul.multiselectoptions.up { - border-top-left-radius:.5em; - border-top-right-radius:.5em; + border-top-left-radius: .5em; + border-top-right-radius: .5em; } ul.multiselectoptions>li { - overflow:hidden; - white-space:nowrap; + overflow: hidden; + white-space: nowrap; } ul.multiselectoptions>li>input[type="checkbox"] { - margin-top: 3px; - margin-right: 5px; - margin-left: 3px; + margin-top: 3px; + margin-right: 5px; + margin-left: 3px; } div.multiselect { - display:inline-block; - max-width:400px; - min-width:100px; - padding-right:.6em; - position:relative; - vertical-align:bottom; + display: inline-block; + max-width: 400px; + min-width: 100px; + padding-right: .6em; + position: relative; + vertical-align: bottom; } div.multiselect.active { - background-color:#fff; - position:relative; - z-index:50; + background-color: #fff; + position: relative; + z-index: 50; } div.multiselect.up { - border-top:0 none; - border-top-left-radius:0; - border-top-right-radius:0; + border-top: 0 none; + border-top-left-radius: 0; + border-top-right-radius: 0; } div.multiselect.down { - border-bottom:none; - border-bottom-left-radius:0; - border-bottom-right-radius:0; + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } div.multiselect>span:first-child { - float:left; - margin-right:2em; - overflow:hidden; - text-overflow:ellipsis; - width:90%; + float: left; + margin-right: 2em; + overflow: hidden; + text-overflow: ellipsis; + width: 90%; } div.multiselect>span:last-child { - position:absolute; - right:.8em; + position: absolute; + right: .8em; } ul.multiselectoptions input.new { - border-top-left-radius:0; - border-top-right-radius:0; - padding-bottom:.2em; - padding-top:.2em; - margin:0; + border-top-left-radius: 0; + border-top-right-radius: 0; + padding-bottom: .2em; + padding-top: .2em; + margin: 0; } From 35e7b64cc204ed1c7152fe4b7b7cd6ee67d0fd19 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 18:04:11 +0200 Subject: [PATCH 081/145] multiselect: do not cut off group names --- core/css/multiselect.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/multiselect.css b/core/css/multiselect.css index bb1c525a3c..8fab99806f 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -17,6 +17,7 @@ ul.multiselectoptions { ul.multiselectoptions.down { border-bottom-left-radius: .5em; border-bottom-right-radius: .5em; + width: 100%; /* do not cut off group names */ } ul.multiselectoptions.up { From 27996d1c64a4fab8334b9188b99011097e7ab605 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 18:04:33 +0200 Subject: [PATCH 082/145] multiselect: drop shadow for better focus --- core/css/multiselect.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/css/multiselect.css b/core/css/multiselect.css index 8fab99806f..667eba86e7 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -18,6 +18,9 @@ ul.multiselectoptions.down { border-bottom-left-radius: .5em; border-bottom-right-radius: .5em; width: 100%; /* do not cut off group names */ + -webkit-box-shadow: 0px 0px 20px rgba(29,45,68,.4); + -moz-box-shadow: 0px 0px 20px rgba(29,45,68,.4); + box-shadow: 0px 0px 20px rgba(29,45,68,.4); } ul.multiselectoptions.up { From 686797eb6dde2d0c7ac6b9cc5c900a2878a8c06f Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 18:08:47 +0200 Subject: [PATCH 083/145] multiselect: more breathing space for entries --- core/css/multiselect.css | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/core/css/multiselect.css b/core/css/multiselect.css index 667eba86e7..23aec23437 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -33,10 +33,19 @@ ul.multiselectoptions>li { white-space: nowrap; } -ul.multiselectoptions>li>input[type="checkbox"] { - margin-top: 3px; - margin-right: 5px; - margin-left: 3px; +ul.multiselectoptions > li > input[type="checkbox"] { + margin: 10px 7px; + vertical-align: middle; +} +ul.multiselectoptions > li input[type='checkbox']+label { + font-weight: normal; + display: inline-block; + width: 100%; + padding: 5px 27px; + margin-left: -27px; /* to have area around checkbox clickable as well */ +} +ul.multiselectoptions > li input[type='checkbox']:checked+label { + font-weight: bold; } div.multiselect { From 0bcb04398d731ff75d74497f4a203279b6990351 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 18:21:13 +0200 Subject: [PATCH 084/145] multiselect: fixed 'add group' interface a bit --- core/css/multiselect.css | 12 ++++++++++-- core/js/multiselect.js | 4 ++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/core/css/multiselect.css b/core/css/multiselect.css index 23aec23437..afdf27681a 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -89,9 +89,17 @@ div.multiselect>span:last-child { } ul.multiselectoptions input.new { - border-top-left-radius: 0; - border-top-right-radius: 0; padding-bottom: .2em; padding-top: .2em; margin: 0; } + +ul.multiselectoptions > li.creator { + padding: 10px; + font-weight: bold; +} +ul.multiselectoptions > li.creator > input { + width: 95% !important; /* do not constrain size of text input */ + padding: 5px; + margin: -5px; +} diff --git a/core/js/multiselect.js b/core/js/multiselect.js index 463c397d8c..48d521e185 100644 --- a/core/js/multiselect.js +++ b/core/js/multiselect.js @@ -176,10 +176,10 @@ }); button.parent().data('preventHide',false); if(settings.createText){ - var li=$('
  • + '+settings.createText+'
  • '); + var li=$('
  • + '+settings.createText+'
  • '); li.click(function(event){ li.empty(); - var input=$(''); + var input=$(''); li.append(input); input.focus(); input.css('width',button.innerWidth()); From cdedfb6f37ad45d2124c328c1b6a86faa7dfac93 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 18:23:29 +0200 Subject: [PATCH 085/145] multiselect: up min-width of group multiselect to 150px --- core/css/multiselect.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/multiselect.css b/core/css/multiselect.css index afdf27681a..a2d1b20d3a 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -51,7 +51,7 @@ ul.multiselectoptions > li input[type='checkbox']:checked+label { div.multiselect { display: inline-block; max-width: 400px; - min-width: 100px; + min-width: 150px; padding-right: .6em; position: relative; vertical-align: bottom; From aab3b7d8eaf4e6cd366e2d14a88c4e6544444db2 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 12 Jun 2013 03:05:58 +0200 Subject: [PATCH 086/145] [tx-robot] updated from transifex --- l10n/af_ZA/core.po | 4 ++-- l10n/af_ZA/lib.po | 16 ++++++++-------- l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 16 ++++++++-------- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 4 ++-- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 16 ++++++++-------- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 16 ++++++++-------- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/ca/files.po | 4 ++-- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 16 ++++++++-------- l10n/ca/settings.po | 8 ++++---- l10n/ca/user_ldap.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 16 ++++++++-------- l10n/cs_CZ/settings.po | 8 ++++---- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 16 ++++++++-------- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 16 ++++++++-------- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 16 ++++++++-------- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 4 ++-- l10n/de_DE/files.po | 4 ++-- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 16 ++++++++-------- l10n/de_DE/settings.po | 4 ++-- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 4 ++-- l10n/el/files.po | 4 ++-- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 16 ++++++++-------- l10n/el/settings.po | 4 ++-- l10n/el/user_ldap.po | 4 ++-- l10n/en@pirate/files.po | 4 ++-- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/eo/files.po | 4 ++-- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 4 ++-- l10n/eo/lib.po | 16 ++++++++-------- l10n/eo/settings.po | 4 ++-- l10n/eo/user_ldap.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es/files.po | 4 ++-- l10n/es/files_external.po | 4 ++-- l10n/es/files_sharing.po | 4 ++-- l10n/es/files_trashbin.po | 4 ++-- l10n/es/lib.po | 16 ++++++++-------- l10n/es/settings.po | 4 ++-- l10n/es/user_ldap.po | 4 ++-- l10n/es_AR/core.po | 4 ++-- l10n/es_AR/files.po | 4 ++-- l10n/es_AR/files_external.po | 4 ++-- l10n/es_AR/files_sharing.po | 4 ++-- l10n/es_AR/files_trashbin.po | 4 ++-- l10n/es_AR/lib.po | 16 ++++++++-------- l10n/es_AR/settings.po | 4 ++-- l10n/es_AR/user_ldap.po | 4 ++-- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 4 ++-- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 16 ++++++++-------- l10n/et_EE/settings.po | 8 ++++---- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 16 ++++++++-------- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 4 ++-- l10n/fa/files_external.po | 4 ++-- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 16 ++++++++-------- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 4 ++-- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 16 ++++++++-------- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 16 ++++++++-------- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 4 ++-- l10n/gl/files.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 16 ++++++++-------- l10n/gl/settings.po | 12 ++++++------ l10n/gl/user_ldap.po | 4 ++-- l10n/he/core.po | 4 ++-- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 16 ++++++++-------- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 4 ++-- l10n/hi/lib.po | 16 ++++++++-------- l10n/hr/core.po | 4 ++-- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 16 ++++++++-------- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/hu_HU/files.po | 4 ++-- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 16 ++++++++-------- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 4 ++-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 2 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 16 ++++++++-------- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 16 ++++++++-------- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 16 ++++++++-------- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 4 ++-- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 16 ++++++++-------- l10n/it/settings.po | 8 ++++---- l10n/it/user_ldap.po | 4 ++-- l10n/ja_JP/core.po | 4 ++-- l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 16 ++++++++-------- l10n/ja_JP/settings.po | 9 +++++---- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ka/files.po | 4 ++-- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 4 ++-- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 16 ++++++++-------- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 16 ++++++++-------- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 4 ++-- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/lib.po | 16 ++++++++-------- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 16 ++++++++-------- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 16 ++++++++-------- l10n/lt_LT/settings.po | 4 ++-- l10n/lt_LT/user_ldap.po | 4 ++-- l10n/lv/core.po | 4 ++-- l10n/lv/files.po | 4 ++-- l10n/lv/files_external.po | 4 ++-- l10n/lv/files_sharing.po | 4 ++-- l10n/lv/files_trashbin.po | 4 ++-- l10n/lv/lib.po | 16 ++++++++-------- l10n/lv/settings.po | 4 ++-- l10n/lv/user_ldap.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/mk/files.po | 4 ++-- l10n/mk/files_external.po | 4 ++-- l10n/mk/files_sharing.po | 4 ++-- l10n/mk/files_trashbin.po | 4 ++-- l10n/mk/lib.po | 16 ++++++++-------- l10n/mk/settings.po | 4 ++-- l10n/mk/user_ldap.po | 4 ++-- l10n/ms_MY/core.po | 4 ++-- l10n/ms_MY/files.po | 4 ++-- l10n/ms_MY/files_external.po | 4 ++-- l10n/ms_MY/files_sharing.po | 4 ++-- l10n/ms_MY/files_trashbin.po | 4 ++-- l10n/ms_MY/lib.po | 16 ++++++++-------- l10n/ms_MY/settings.po | 4 ++-- l10n/ms_MY/user_ldap.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/my_MM/files.po | 4 ++-- l10n/my_MM/files_sharing.po | 4 ++-- l10n/my_MM/lib.po | 16 ++++++++-------- l10n/nb_NO/core.po | 4 ++-- l10n/nb_NO/files.po | 4 ++-- l10n/nb_NO/files_external.po | 4 ++-- l10n/nb_NO/files_sharing.po | 4 ++-- l10n/nb_NO/files_trashbin.po | 4 ++-- l10n/nb_NO/lib.po | 16 ++++++++-------- l10n/nb_NO/settings.po | 4 ++-- l10n/nb_NO/user_ldap.po | 4 ++-- l10n/nl/core.po | 4 ++-- l10n/nl/files.po | 4 ++-- l10n/nl/files_external.po | 4 ++-- l10n/nl/files_sharing.po | 4 ++-- l10n/nl/files_trashbin.po | 4 ++-- l10n/nl/lib.po | 16 ++++++++-------- l10n/nl/settings.po | 4 ++-- l10n/nl/user_ldap.po | 4 ++-- l10n/nn_NO/core.po | 4 ++-- l10n/nn_NO/files.po | 4 ++-- l10n/nn_NO/files_external.po | 4 ++-- l10n/nn_NO/files_sharing.po | 4 ++-- l10n/nn_NO/files_trashbin.po | 4 ++-- l10n/nn_NO/lib.po | 16 ++++++++-------- l10n/nn_NO/settings.po | 4 ++-- l10n/nn_NO/user_ldap.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/oc/files.po | 4 ++-- l10n/oc/files_external.po | 4 ++-- l10n/oc/files_sharing.po | 4 ++-- l10n/oc/files_trashbin.po | 4 ++-- l10n/oc/lib.po | 16 ++++++++-------- l10n/oc/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pl/files.po | 4 ++-- l10n/pl/files_external.po | 4 ++-- l10n/pl/files_sharing.po | 4 ++-- l10n/pl/files_trashbin.po | 4 ++-- l10n/pl/lib.po | 16 ++++++++-------- l10n/pl/settings.po | 4 ++-- l10n/pl/user_ldap.po | 4 ++-- l10n/pt_BR/core.po | 4 ++-- l10n/pt_BR/files.po | 4 ++-- l10n/pt_BR/files_external.po | 4 ++-- l10n/pt_BR/files_sharing.po | 4 ++-- l10n/pt_BR/files_trashbin.po | 4 ++-- l10n/pt_BR/lib.po | 16 ++++++++-------- l10n/pt_BR/settings.po | 9 +++++---- l10n/pt_BR/user_ldap.po | 4 ++-- l10n/pt_PT/core.po | 4 ++-- l10n/pt_PT/files.po | 4 ++-- l10n/pt_PT/files_external.po | 4 ++-- l10n/pt_PT/files_sharing.po | 4 ++-- l10n/pt_PT/files_trashbin.po | 4 ++-- l10n/pt_PT/lib.po | 16 ++++++++-------- l10n/pt_PT/settings.po | 4 ++-- l10n/pt_PT/user_ldap.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ro/files.po | 4 ++-- l10n/ro/files_external.po | 4 ++-- l10n/ro/files_sharing.po | 4 ++-- l10n/ro/files_trashbin.po | 4 ++-- l10n/ro/lib.po | 16 ++++++++-------- l10n/ro/settings.po | 4 ++-- l10n/ro/user_ldap.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru/files.po | 4 ++-- l10n/ru/files_external.po | 4 ++-- l10n/ru/files_sharing.po | 4 ++-- l10n/ru/files_trashbin.po | 4 ++-- l10n/ru/lib.po | 16 ++++++++-------- l10n/ru/settings.po | 4 ++-- l10n/ru/user_ldap.po | 4 ++-- l10n/si_LK/core.po | 4 ++-- l10n/si_LK/files.po | 4 ++-- l10n/si_LK/files_external.po | 4 ++-- l10n/si_LK/files_sharing.po | 4 ++-- l10n/si_LK/files_trashbin.po | 4 ++-- l10n/si_LK/lib.po | 16 ++++++++-------- l10n/si_LK/settings.po | 4 ++-- l10n/si_LK/user_ldap.po | 4 ++-- l10n/sk_SK/core.po | 4 ++-- l10n/sk_SK/files.po | 4 ++-- l10n/sk_SK/files_external.po | 4 ++-- l10n/sk_SK/files_sharing.po | 4 ++-- l10n/sk_SK/files_trashbin.po | 4 ++-- l10n/sk_SK/lib.po | 16 ++++++++-------- l10n/sk_SK/settings.po | 4 ++-- l10n/sk_SK/user_ldap.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/files.po | 4 ++-- l10n/sl/files_external.po | 4 ++-- l10n/sl/files_sharing.po | 4 ++-- l10n/sl/files_trashbin.po | 4 ++-- l10n/sl/lib.po | 16 ++++++++-------- l10n/sl/settings.po | 4 ++-- l10n/sl/user_ldap.po | 4 ++-- l10n/sq/core.po | 4 ++-- l10n/sq/files.po | 4 ++-- l10n/sq/files_external.po | 4 ++-- l10n/sq/files_sharing.po | 4 ++-- l10n/sq/files_trashbin.po | 4 ++-- l10n/sq/lib.po | 16 ++++++++-------- l10n/sq/settings.po | 4 ++-- l10n/sq/user_ldap.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr/files.po | 4 ++-- l10n/sr/files_external.po | 4 ++-- l10n/sr/files_sharing.po | 4 ++-- l10n/sr/files_trashbin.po | 4 ++-- l10n/sr/lib.po | 16 ++++++++-------- l10n/sr/settings.po | 4 ++-- l10n/sr/user_ldap.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sr@latin/files.po | 4 ++-- l10n/sr@latin/files_external.po | 4 ++-- l10n/sr@latin/files_sharing.po | 4 ++-- l10n/sr@latin/files_trashbin.po | 4 ++-- l10n/sr@latin/lib.po | 16 ++++++++-------- l10n/sr@latin/settings.po | 4 ++-- l10n/sv/core.po | 4 ++-- l10n/sv/files.po | 4 ++-- l10n/sv/files_external.po | 4 ++-- l10n/sv/files_sharing.po | 4 ++-- l10n/sv/files_trashbin.po | 4 ++-- l10n/sv/lib.po | 16 ++++++++-------- l10n/sv/settings.po | 9 +++++---- l10n/sv/user_ldap.po | 4 ++-- l10n/ta_LK/core.po | 4 ++-- l10n/ta_LK/files.po | 4 ++-- l10n/ta_LK/files_external.po | 4 ++-- l10n/ta_LK/files_sharing.po | 4 ++-- l10n/ta_LK/files_trashbin.po | 4 ++-- l10n/ta_LK/lib.po | 16 ++++++++-------- l10n/ta_LK/settings.po | 4 ++-- l10n/ta_LK/user_ldap.po | 4 ++-- l10n/te/core.po | 4 ++-- l10n/te/files.po | 4 ++-- l10n/te/files_external.po | 4 ++-- l10n/te/files_trashbin.po | 4 ++-- l10n/te/lib.po | 16 ++++++++-------- l10n/te/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 14 +++++++------- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 16 ++++++++-------- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 4 ++-- l10n/tr/files.po | 4 ++-- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 16 ++++++++-------- l10n/tr/settings.po | 4 ++-- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 16 ++++++++-------- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 16 ++++++++-------- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/lib.po | 16 ++++++++-------- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 16 ++++++++-------- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 4 ++-- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 16 ++++++++-------- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 16 ++++++++-------- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 16 ++++++++-------- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 16 ++++++++-------- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- settings/l10n/ca.php | 1 + settings/l10n/cs_CZ.php | 1 + settings/l10n/et_EE.php | 1 + settings/l10n/gl.php | 5 +++-- settings/l10n/it.php | 1 + settings/l10n/ja_JP.php | 1 + settings/l10n/pt_BR.php | 1 + settings/l10n/sv.php | 1 + 536 files changed, 1475 insertions(+), 1464 deletions(-) diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 8a90de1a4f..3718c8a348 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index c6e90c22e0..a031b68eb0 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+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" @@ -17,27 +17,27 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hulp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persoonlik" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Instellings" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Gebruikers" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Toepassings" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index f01a53b53f..3441571d52 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 fe15956376..88a6f57929 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 13fdac78bb..73d8a9c972 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 00f96d84fd..67b581a05d 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 2fec6330cd..17a6649ddb 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 e3aead3f43..af53a511ca 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "المساعدة" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "شخصي" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "إعدادات" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "المستخدمين" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "التطبيقات" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "المدير" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 90816a1c40..9987d44ff9 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index eb971f8e40..27fc477b48 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 1152ca2eb1..7f23971b42 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 eb125ea64e..46d9c1c6c6 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 c644037ea6..83b8906cbb 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ff016dec28..d3d99043e1 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 07beb96f64..8d94958f90 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 164bf587c1..bfedf4b577 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Помощ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Лични" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Настройки" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Потребители" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Приложения" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Админ" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 4fb44322c4..c88d22ac9d 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 9b6ce08d56..a8a9b0ae76 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 20c44d83d6..19e77f1274 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 d47a538564..a30f0a3170 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 2bae81308b..32d039ff17 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ee46468ac7..f511594244 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 063ad92c94..211f335034 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 62c465271a..ed003580a4 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "সহায়িকা" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "ব্যক্তিগত" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "ব্যবহারকারী" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "অ্যাপ" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "প্রশাসন" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 815333c3ef..d41ab646fb 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index b6252a0f8f..5b1e57a644 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 2565c7aa64..e8aa633e6b 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 42bb79a298..bad7f54ff8 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 5ee2aa5067..4202bcede8 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 7c723b6946..b2b6ad1bec 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ddc6cf6bb6..f36679d87f 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 e665ff53aa..8e5de2da71 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configuració" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuaris" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicacions" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administració" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 0010c7a086..4aa5099f54 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -473,7 +473,7 @@ msgstr "Recuperació de contrasenya d'administrador" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 67e18fc7d0..338f63d885 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index dfb1f05909..ea188f5a36 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 54a2982d2f..1360e93381 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index d1025ae695..d71735e460 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 70ad6a2b37..c56c702557 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 39eeb6d46a..704051fb67 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ceb1a86288..01a43939e5 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Nápověda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osobní" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Nastavení" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Uživatelé" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikace" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrace" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index a8446b558a..27e39b977a 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -472,7 +472,7 @@ msgstr "Heslo obnovy správce" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index be08eb3a9e..164c9e7976 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 0f3f306b05..dc39105a5e 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 065d871845..248a4552ca 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 262b2cec28..db2ab484c9 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 60d3faea4f..d5e8162d9a 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index e10335ef7b..5c3f290a67 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 386f92d100..c437a9d11a 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Cymorth" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personol" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Gosodiadau" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Defnyddwyr" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Pecynnau" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Gweinyddu" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 9f161a6944..f84626907a 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 7ffdef7c86..0dc7e5dc83 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 96a3b038bf..c4cf2f91af 100644 --- a/l10n/da/core.po +++ b/l10n/da/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Peter Jespersen \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 02939ca19c..eea893fecb 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 e16624e176..4406ce7b6c 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 3fd2b7f196..14f93b8eff 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 fa25aa9b14..537aa7e9cc 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 b425c17457..de52b9d5a2 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjælp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personligt" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Indstillinger" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Brugere" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 6a40d87792..c761ed1efd 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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_ldap.po b/l10n/da/user_ldap.po index 20a5e8e39c..f3657f500e 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 4b9a7ea705..26d0ee600c 100644 --- a/l10n/de/core.po +++ b/l10n/de/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 1628e9fad1..53c74030db 100644 --- a/l10n/de/files.po +++ b/l10n/de/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ninov \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 bb017db894..2ad51443ea 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 05f66c0958..b8513cd97b 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin \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 37abe3cacc..b31d8481e2 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index fe236b8ee9..1a48973ae2 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -19,27 +19,27 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hilfe" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persönlich" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Einstellungen" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Benutzer" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administration" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index a26dae9809..271c738d01 100644 --- a/l10n/de/settings.po +++ b/l10n/de/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 81819cf6a1..69e53882b1 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 58782c2d64..89a8db6f5e 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index a80df87fa6..ab8b5fadfb 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: a.tangemann \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 bba770a545..c22e70ce0b 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 6ac126c213..9b53044eef 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin \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 00f2533ca8..8de7dd8684 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index b90698dca6..105895a101 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hilfe" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persönlich" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Einstellungen" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Benutzer" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrator" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 52845a98ed..e83776b2f4 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 3fda98cb9d..b7b54c71e0 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 48d7917de0..00cc52ccd5 100644 --- a/l10n/el/core.po +++ b/l10n/el/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Teogramm \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 cfef12ba5f..2f569777b3 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Efstathios Iosifidis \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 88b11e4a3b..35aaea8e90 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 61e1795f73..0bc6c891d0 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 9b1650a44d..bd81040073 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 f182d3bc74..d20f019be5 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Βοήθεια" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Προσωπικά" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Χρήστες" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Εφαρμογές" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Διαχειριστής" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 35e9e3ae42..2bc54778f8 100644 --- a/l10n/el/settings.po +++ b/l10n/el/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 8d0db741fa..d5a705b7a4 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index ff75bd76cf..9df18ea3ed 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 8204ac2847..16e746e5c6 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: lhpalacio \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 89af6d4934..1767f66a0a 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Baptiste \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 83adcbfa21..a0b27181a4 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 b0e4a29b8c..9be001b0d6 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 d62a034233..112d38dc3c 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ec3bdd7d56..62d64f0e22 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 951c41f84d..6eac77f054 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Helpo" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persona" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Agordo" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Uzantoj" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikaĵoj" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administranto" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 68d2b6e726..33b46e2ddb 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 717c154199..c97530b813 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 658cdb8536..80d73a7abe 100644 --- a/l10n/es/core.po +++ b/l10n/es/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index 82d7438ad6..c464efc0a9 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Art O. Pal \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 e671258376..13a77bad72 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 6dee73a77a..7e38d35af5 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 6232fb9e94..489ca41f18 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 059e8366a4..2e92e22e45 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ayuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ajustes" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuarios" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicaciones" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administración" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 550de686a5..3b7165c014 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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_ldap.po b/l10n/es/user_ldap.po index f2e9405d65..c7cd6fd884 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 3baad4a8f1..3201c21f9b 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 8b367fad68..c1cbed4a1e 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Agustin Ferrario \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 e91fe22e2e..705385ce3b 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 2412adc0db..569ddd5f29 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 e89f354341..1d738ef558 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 cd37a7aba1..bf38a537d4 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ayuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configuración" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuarios" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicaciones" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administración" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index f0c1bb57d6..2f09ef06dc 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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_ldap.po b/l10n/es_AR/user_ldap.po index 1e742c923e..0d97c65d8c 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 f1e4fcc238..5f0af28cc1 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 34d61a1d85..a3b7d28b1c 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index a15e0a7deb..520e259b8c 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 482fbacec8..755097fbfa 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 0cde7fec2e..7e2f05b4fe 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index bf5fd8ced2..c193cbc0b8 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,27 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Abiinfo" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Isiklik" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Seaded" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Kasutajad" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Rakendused" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 7b0d4451cf..4f81648e52 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -473,7 +473,7 @@ msgstr "Admin taasteparool" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index a87f06ffa5..2ce1e0e8ec 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 9458ed3bdb..9572dfdd6d 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 5ea564b021..1e832a1d67 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 18ef5b2795..e67b8acbf6 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 de2799c505..a8b8043805 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 8d152c3e25..7dbb6a4bee 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ce6e8a04ea..7eef442ab9 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Laguntza" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Pertsonala" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ezarpenak" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Erabiltzaileak" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikazioak" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 66e67c2b58..bc18dde666 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index f1d6dbc107..6800daf9f4 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 310bb19832..b7eac5e62f 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 65259873a4..0c93f45a7a 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 da02656440..88c7de3556 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 93e02b1507..9b8ed74004 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 de003e3b96..b09c59d670 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 418a0b9646..f0a212e732 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "راه‌نما" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "شخصی" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "تنظیمات" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "کاربران" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr " برنامه ها" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "مدیر" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 00e95cfd8d..13474ba822 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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_ldap.po b/l10n/fa/user_ldap.po index 59d4eaf3f8..e3df271ba1 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index f8a6fcca23..8b269fed49 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 3b0e737749..56c8913ede 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 25e7105bd7..3cf2d0347c 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 5acb54ff5a..1b6bdb4fd5 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 036d7f1cd6..83002ab4f7 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 5bb148cbc2..d6ea52899a 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ohje" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Asetukset" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Käyttäjät" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Sovellukset" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Ylläpitäjä" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 6eb310a2c1..cf013b95c9 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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_ldap.po b/l10n/fi_FI/user_ldap.po index 1ad4848202..4bf4ca1581 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 5ea2bba3ff..e40e11e487 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: red0ne \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 7ac10abbcb..cad730674a 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 22c34e6886..5ef61c8cfd 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 05bbab8ad9..5a73044760 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ff3af9888a..b35debbeab 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 af45568749..6f9bc5c1ec 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Cyril Glapa \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Aide" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personnel" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Paramètres" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Utilisateurs" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Applications" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administration" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 0e24f27e98..cd3c5c40bc 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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_ldap.po b/l10n/fr/user_ldap.po index 9b99ed0854..0ac88d216e 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index d8f74dc22f..a0b30d9fb0 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index fdc2b1fa1c..3b683190b9 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index c35bb32e84..c68d470186 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 72b88f908b..d3b3018a8b 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 120165caeb..16513d74ef 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 d6abaa5967..360418e919 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Axuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persoal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Axustes" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuarios" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicativos" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administración" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c3cbc5de08..354115826d 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -438,7 +438,7 @@ msgstr "O seu enderezo de correo" #: templates/personal.php:74 msgid "Fill in an email address to enable password recovery" -msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal" +msgstr "Escriba un enderezo de correo para activar o contrasinal de recuperación" #: templates/personal.php:83 templates/personal.php:84 msgid "Language" @@ -466,13 +466,13 @@ msgstr "Crear" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "Recuperación do contrasinal do administrador" +msgstr "Contrasinal de recuperación do administrador" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 23a87e823d..e044c6bf20 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 7ad804720b..2e0df96b39 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index d961de548d..fcf545a9c8 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 974ab5db98..26cfc5ad27 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 74b5c28823..2653e68881 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 cadc4be381..54fc52620b 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index d596a65542..df6c709339 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "עזרה" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "אישי" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "הגדרות" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "משתמשים" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "יישומים" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "מנהל" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index b7bf6a769f..1486d9004e 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 2a03b8604d..ca9b80b259 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 8b7cb4730b..5c00474f03 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: rktaiwala \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 b98770c398..56541675e0 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 3be5f9c622..064b11958d 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+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" @@ -17,27 +17,27 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "सहयोग" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "यक्तिगत" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "सेटिंग्स" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "उपयोगकर्ता" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 28139163ac..164ccd5f71 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 99d1cddf37..c3f64b266a 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 3e55af2b27..e907f86b9f 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 49fa9fb18e..0479c52680 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ef3e4f6b4d..71cc5a3d90 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 cf4e8e95b2..34d07dd9d1 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoć" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osobno" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Postavke" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Korisnici" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikacije" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrator" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 7d37ea2f28..6d237686ab 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index de34e9457e..08f168170c 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 0bf5354407..309565ead3 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index d926421359..3a39364461 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 930d042664..0f9d5ebc39 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 4300707cb8..a9dfd06b9b 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 a4e05bb53f..fcb618e939 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 cdd940d27a..82bfa29c88 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Súgó" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Személyes" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Beállítások" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Felhasználók" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Alkalmazások" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Adminsztráció" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index be2d44f495..855361da54 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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_ldap.po b/l10n/hu_HU/user_ldap.po index e03432f663..440a6356ea 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index d66d6a8286..63c3c13dde 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index e09f5096b6..c56d6181c5 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 694b0c24db..288785e46c 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index b3a591da46..129ab3e29c 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 2ff999d46e..a26369ab7a 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index e9505c6358..6139d6791e 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 11212ba486..36c2422f41 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 7f9d3d9f2f..e5dfd4cd1f 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 baa6c94a5e..da646a0611 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 5119be176e..f3064aecda 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 e9f27bba66..ed7a77df50 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Adjuta" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configurationes" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usatores" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Applicationes" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administration" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f7e1597ed1..681da984f2 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 1942bca216..a2140645b7 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 8b6c3621ee..f144fa1e74 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 01cec4e33c..617d7e3521 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 f70053bee6..fe7ec6480e 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 8abdbc9871..6aa8da6f32 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ea107995e8..63f8a38010 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 30b5dc8ff2..67263c2b24 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Bantuan" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Pribadi" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Setelan" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Pengguna" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikasi" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 5425b7ffc7..e8f3ba6f62 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 184a04f625..544aabb1ad 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 9fc7ec7fc2..40662709de 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index cefd8bdee9..54bb318721 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 5ef0f33c03..eb85430062 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 1901dcbe8d..8fddc9bf1d 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 9279dd8767..c5f9d0c5dd 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 04fa7060f4..dc430bf4d1 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjálp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Um mig" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Stillingar" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Notendur" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Forrit" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Stjórnun" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 00e385b26f..3e34360216 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 8e9b39f5dc..94586fbf40 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index dbf1b9e418..ff8a395c39 100644 --- a/l10n/it/core.po +++ b/l10n/it/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index 65473f268b..b34d57328a 100644 --- a/l10n/it/files.po +++ b/l10n/it/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 352a3a0f56..3b1468ba8a 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 7cb8a66f01..a2f3d79679 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 0ef0ba270f..1b0c7ae635 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 46edfe81de..59f76f3534 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Aiuto" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personale" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Impostazioni" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Utenti" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Applicazioni" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 15775aa673..b808f0f199 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -472,7 +472,7 @@ msgstr "Password di ripristino amministrativa" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password." #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 16e0eacac7..8d3238385f 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index a80e107429..05fdf163d1 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index abf3d00d5c..c1ca254ef4 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 3abff2eaf2..f3a184be03 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 c6dddf3f39..ef4bcec77c 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 6ec8fef041..881a2de647 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 a316a55d72..a6f9438353 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "ヘルプ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "個人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "設定" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "ユーザ" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "アプリ" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 2add76cf5a..8a0f3d3f53 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -4,14 +4,15 @@ # # Translators: # Daisuke Deguchi , 2013 +# plazmism , 2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: plazmism \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" @@ -473,7 +474,7 @@ msgstr "管理者復旧パスワード" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "パスワード変更の間のユーザーのファイルを回復するために、リカバリパスワードを入力してください" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index fce67d51bf..bee60e7a31 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 71cbc64d70..5412c33fef 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 09d09a592f..86d0cdf945 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 d1181b9db6..58e08bc169 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 e4763f4157..7066486ebd 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 9efe4f432e..d35367d764 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 1e3186d108..d6b6a9ba65 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 71fdd4c7da..f76f4ff3a7 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 308d32af16..7f14878aaf 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "დახმარება" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "პირადი" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "პარამეტრები" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "მომხმარებელი" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "აპლიკაციები" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "ადმინისტრატორი" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 8831bad30b..ff09ce5da9 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index fc0dd6cfae..c05b1c9c6c 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 4619deaf2e..09f836f6ab 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 061262d641..5738ace607 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 fbbeaec4eb..95f832777d 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 5aeac5a6fb..f843bc845e 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 0371f7cd72..120e91f66a 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 1d51a99e03..cb45991e6d 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "도움말" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "개인" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "설정" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "사용자" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "앱" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "관리자" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index c2a37c3630..bc9aff12c4 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 68d651e73f..e35eb349d1 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 b4e0bb9ae0..b4f916821f 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 cd20bf0905..1dc5daca48 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 c3befa9be8..0960adbca3 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 c72b98a626..79f5da1fed 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 6f3e8a2f64..b82de7fb72 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "یارمەتی" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "ده‌ستكاری" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "به‌كارهێنه‌ر" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "به‌رنامه‌كان" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index dba270fbd9..906b080897 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index ecbb5f5751..e959634da8 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 d9bd2a972c..b01e5bac5b 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 e27cb70cd7..f6b899c804 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 203f3ae768..46158823d4 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 5a0963ac35..79a370ca22 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 aae54e6c91..68898ece60 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 0d2727e2f1..da922bc5d7 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hëllef" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Perséinlech" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Astellungen" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Benotzer" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Applicatiounen" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 1f5af19596..18435e1f25 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 7658c6d272..4543599a14 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 e76dd08cb3..554a6bbe34 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 2895014797..e56e73160a 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index d6c1e0803d..a59135036d 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 67915cf893..ec78a0ece1 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 1dfdb11876..c4023b2e82 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index c19dda11e4..bedaf696ab 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pagalba" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Asmeniniai" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Nustatymai" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Vartotojai" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Programos" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administravimas" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 2be895a0bc..ed797bfdea 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 3e3267b94c..929d3911fc 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 0de3a3d806..f70e73f9ec 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 811a9fa7e1..44c5cd23a8 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 88174c907f..881d66c22d 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 477ef7237a..6d1b4574d1 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 f04155c7bd..0de6d7caa2 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 3465513c8d..322a046fd9 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Palīdzība" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personīgi" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Iestatījumi" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Lietotāji" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Lietotnes" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administratori" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 1a2e1ef447..64ce30109d 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 4e71f1daf7..ad596343f7 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ec36155795..c9eb09c43a 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 21e7d44865..f415c8b7b1 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 a969dc67c4..190d3824dd 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ecf36754a8..5909aaac05 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 e84fc88279..95f327614e 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 40da124eac..c67d3c4a40 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Помош" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Лично" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Подесувања" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Корисници" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Аппликации" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Админ" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 3ff847fb0f..14a28b7e5f 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index c84d1b6c14..982fb57a8d 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 2588057d56..0fec32b2cc 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 6f0e7aad7c..6cceab3bb9 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 d162f1c8c1..f2d2a4facc 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 61490b6cf2..8fcc64ab18 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 b6e0cf73bc..e0ace588a7 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 79d90bc924..af8ce97212 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Bantuan" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Peribadi" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Tetapan" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Pengguna" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikasi" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 41ef7653d7..ba8164f4f7 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index d36b31d09c..c9a2b748a3 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 27d20c928e..dcf8107e5e 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 1b3fabd0d6..653225d03e 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 422aaf85f4..d4a9009b83 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 57dd1d3609..13d9374b1a 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "အကူအညီ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "သုံးစွဲသူ" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "အက်ဒမင်" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index ecd8744d61..cc41aae851 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 aab57df4cd..96dd51fb7f 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 745111851e..68f58025f8 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 22e966f8b5..9f8a8b3efc 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 c462eb309a..11bb62601b 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index f0767aad1b..c3746e2a1e 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjelp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personlig" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Innstillinger" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Brukere" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apper" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 067ce86ac0..0f28157fe1 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 72f3433fa0..a403152e4a 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 82fa74c2b0..4d06155ccc 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 2784d11809..7752d28177 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index f1b9bf29eb..f98d4c9f90 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 491d7e83b6..1405d4a2e2 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 7f36fbde9a..9e2b5075f1 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 c962bdcb21..4df92ab94e 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Help" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Persoonlijk" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Instellingen" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Gebruikers" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Beheerder" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 21528e37f8..b065718202 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 0f2557d3e8..89846813d9 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 3f3eb8332f..c449bf96eb 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index f97ef67ce1..3b4d27d66b 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 05ae4eb504..155e8cde36 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 33fb848b53..cb4181fda4 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 06d0f5af15..a6eb1ef45d 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index af7df0e2c8..c19e82dbda 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjelp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personleg" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Innstillingar" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Brukarar" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Program" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrer" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index fb378d82d7..14970866c7 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 26891c0840..756a0e2c6a 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 280be574d1..8ee352afe7 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 fca7e672f3..ee46c6f964 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 e92f01aac0..71eac19f43 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 0933766c22..8f758bca71 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ff7f1d0ad6..bfba438eff 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 244e7a321c..249cc069fe 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-10 01:59+0200\n" -"PO-Revision-Date: 2013-06-09 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+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" @@ -17,27 +17,27 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configuracion" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usancièrs" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Apps" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index fab0d09061..2931c0ebeb 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 9b93510e31..28b9c18dc1 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 9214bd8016..8cb360953c 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 0b9dc1b1c1..004841ecda 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: adbrand \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 e7e4f919c4..8aa3c49865 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 4aa2980a59..bddcb6ef96 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 9ef342d250..5fc525f122 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 cf8aba0bb0..cead1733f6 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoc" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osobiste" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ustawienia" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Użytkownicy" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikacje" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrator" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 6d4f620e89..8e1c531a3a 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 73460f9f46..77d63dc096 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 6aa4735f5f..6a87f105bb 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index ef5d497485..67ad1e60d5 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 156e5ba5b3..61d7b40ea1 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index dd203c1174..d8cc823d3b 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 962449a889..4a5512d874 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 2018551051..1d24d3c7e2 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Pessoal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ajustes" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Usuários" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicações" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 6d22375b61..a6aa0509e4 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# bjamalaro , 2013 # Flávio Veras , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -472,7 +473,7 @@ msgstr "Recuperação da Senha do Administrador" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha." #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 079b6a30db..b72b019791 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 471ef2e90a..2f5fdf5f52 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: bmgmatias \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 56ea27aa64..cde4bd2fe7 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: bmgmatias \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 da0220832e..47381cc631 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index b11914ce13..1215efd25b 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 530ee175fd..14e8275dc7 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 7773182c3b..ef60534125 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajuda" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Pessoal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Configurações" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Utilizadores" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicações" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 99fa3574d2..832ada0f70 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 80f41d396c..2a3fc93241 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index c12ce40179..7bf564a49a 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 879294fc3c..1aaf124c8c 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 531acc5f4f..bf5db90818 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 d2cbca4232..e509d3a92d 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 920ea21f42..71b0644ad4 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 7273db1a8c..b38d5d7a67 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ajutor" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personal" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Setări" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Utilizatori" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplicații" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index a2cd4b88d3..83b37d9499 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index b04c34ca36..344678eadd 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 cccac051f1..0578f9aa51 100644 --- a/l10n/ru/core.po +++ b/l10n/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Langaru \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 666b8c8115..02c0711456 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Friktor \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 31029f5a91..2722a7c0e8 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 257cfe11e3..16f42e1ac6 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 c61bd2b929..6edac7e313 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 b6ae06366f..0791f8879b 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Помощь" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Личное" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Конфигурация" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Пользователи" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Приложения" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index c3dc0abd01..d18bb63a00 100644 --- a/l10n/ru/settings.po +++ b/l10n/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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_ldap.po b/l10n/ru/user_ldap.po index 607a3bbc16..c569c67af8 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Fenuks \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index b9d421bedd..55d30b24e3 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 67c47fbda7..87e442e0f5 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 ee68ef40df..c20b3df310 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 f64ec864f0..e6de17b663 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 b8c79bb807..cb21c984b7 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 9de3f6dedd..42af352186 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "උදව්" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "පෞද්ගලික" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "සිටුවම්" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "පරිශීලකයන්" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "යෙදුම්" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "පරිපාලක" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 85ede4e608..0fc8fd785f 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 43dfc7d37a..8f0971afc4 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index c36c7fcc66..ccdfba9b5e 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 93061558e5..1a47c8b6da 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 6b82daf913..ca70d39c31 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 3e65f12b67..9a1cd878c3 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 cb08d59bdf..3f1c1fb600 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 8f3dbdcd6e..90bdadd9f4 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoc" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osobné" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Nastavenia" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Používatelia" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Aplikácie" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Administrátor" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 1c45a8b58d..713d0a7721 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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_ldap.po b/l10n/sk_SK/user_ldap.po index 9a3291dad6..8b1e52f7e2 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index ff92b05553..1c886017c4 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index ea02f844a9..83b7d7a0e2 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 9a237da51b..c7ba402ab0 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index f454c3b088..69313d6c6e 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ab5fc6d212..65f295ebac 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 283b917d7d..f949c6a62c 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoč" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Osebno" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Nastavitve" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Uporabniki" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Programi" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Skrbništvo" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index b663f9300a..1302cb8f88 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 78c7981e8d..0ca6dd20a2 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 36dc29636c..bca3dff1aa 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 9f2dbc4255..df6a46e49c 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 e130f905aa..5dc4d6a8a9 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 39c470d29c..f41b4d31d0 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 0fad985218..b0c2693ecd 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 c3976801bf..9d4c5a02c1 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Ndihmë" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personale" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Parametra" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Përdoruesit" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "App" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 9d14e58f41..c8a77a4794 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 942f654855..fd69f40469 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 4dd9fdfc2a..17309d159e 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 8f55774b80..26fecf53e0 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 fdf5055fab..12878f651f 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 1b2739626d..821d5a57be 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 957c84f24b..a283f2b88f 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 a182762e2a..2a3d65d1e5 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Помоћ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Лично" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Поставке" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Корисници" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Апликације" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Администратор" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 0ac06c7b6c..f6527a7d74 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index b1f8156ffd..c0f94ff894 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 04e544fed8..17eb6f05b6 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 bab96c2f7e..1ded1154bb 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 1ebc994daf..35b50f4b21 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 84b2bd1de4..01aa998bd1 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 e287551668..ad664f2c7b 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 f621ecf218..1dbcf544fa 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Pomoć" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Lično" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Podešavanja" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Korisnici" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Programi" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Adninistracija" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index a766452d68..20e2f534c2 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 88b9eb8796..282d88bc80 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index b907694622..badf96f4be 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 364ec19f98..ae4a79dff1 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 493b132737..2345e3a904 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 a29e3fd14f..3020acc5ee 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 541fa809da..ddc6afce45 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Hjälp" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Personligt" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Inställningar" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Användare" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Program" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Admin" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 076ecd8c40..eccf138e30 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -4,14 +4,15 @@ # # Translators: # Jan Busk, 2013 +# Jan Busk, 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"Last-Translator: Jan Busk\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" @@ -473,7 +474,7 @@ msgstr "Admin återställningslösenord" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Enter the recovery password in order to recover the users files during password change" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 065300500e..7b02c64191 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index a65df674cb..1cd1bb15a7 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 e2c786bf69..cf350ec05e 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 65130bc867..bef22321d5 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 bec006510b..55f493c1a1 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 aa54bac42e..517ed2b22a 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 3d0648f5a5..86485937ca 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "உதவி" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "தனிப்பட்ட" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "அமைப்புகள்" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "பயனாளர்" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "செயலிகள்" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "நிர்வாகம்" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 543510719f..9c24f88e5c 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 94c0df79e3..affd247d76 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 6aa17c774e..73161c6681 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 8c51bd1976..21000fa6e0 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 37bde93041..d7e1c912c3 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 1a61611986..78a9d4a154 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 b503d1844f..531c5e4c0d 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+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" @@ -17,27 +17,27 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "సహాయం" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "అమరికలు" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "వాడుకరులు" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 75a66ae433..62b68d8d5b 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index bd76a11a38..6ff8efb842 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 8e2258cc47..06c591e9b0 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-06-11 01:57+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+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 b9a904385e..81c52e7d5b 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-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+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 8807165afb..427e1957e7 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-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+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 e29125e5de..5e61eb5c82 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-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+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 27b3b6b989..57d4d7e104 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-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+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 068b5c9787..bab3ba59aa 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-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+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 5815404b6a..488972d3e6 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-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:55+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 02960b167a..38d2d73ef3 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-06-11 01:57+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,27 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index c53a5b8f69..fc7306b09f 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-06-11 01:57+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+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 4a7aa072d4..0eda5984b7 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-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+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 802771dad3..aafdce7cb6 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-06-11 01:56+0200\n" +"POT-Creation-Date: 2013-06-12 02:56+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 ec61276c14..7048ccf0cc 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 69bdbb3b34..5937981390 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 ccaf217e3f..5b27a30d2b 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 f9a4f05bba..195b76e3f4 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 bcf8bc6548..1aec59f118 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 7c7cc3d6f8..6ff4dc1a82 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "ช่วยเหลือ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "ส่วนตัว" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "ตั้งค่า" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "ผู้ใช้งาน" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "แอปฯ" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "ผู้ดูแล" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 03f870df35..88a985f4f5 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 6b3bf07f84..831be417ef 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 f9e6486c74..97095af583 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index d3ebdfae68..70cb40229a 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index f852edaf64..c8c26f8f76 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 a6e534171e..d5dd8bf1c8 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 38601b9c91..58833c8c5f 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 7bd5909ca4..7ed5862197 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Yardım" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Kişisel" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Ayarlar" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Kullanıcılar" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Uygulamalar" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Yönetici" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 415cd779f2..1f6abeb6b3 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index ab1a51ccbd..79e5a778ed 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index fc744974b2..3a070d5914 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 041a47962c..e680cf835a 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index c8d460a20b..c54d1aa0ae 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index b024d95d79..c5506e66ed 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: uqkun \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index c305885e46..fe99efadb8 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 8431d09324..11714520c3 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "ياردەم" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "شەخسىي" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "تەڭشەكلەر" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "ئىشلەتكۈچىلەر" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "ئەپلەر" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index bb6b0767cc..e54e6ab810 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 9dbe65a748..1c7191b98b 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index ec6e346371..4d3e1fe4d9 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 d89e4461a7..49ffed959f 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 8aa0bbf240..ce602c5527 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 e0e138eb08..56b6d68990 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 67ddad52da..388db08141 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 19907b7581..fc97ae5692 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Допомога" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Особисте" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Налаштування" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Користувачі" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Додатки" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Адмін" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 58d6ddb9a9..dfd560c57a 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 3cdcb7381f..006344d785 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 525e3c50f3..6221babd39 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 59f793764f..0ec378051e 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 e662bb1a14..8a19d02aab 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ad310840b8..d2bd5d3cbe 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 00:02+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 00:03+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "مدد" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "ذاتی" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "سیٹینگز" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "یوزرز" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "ایپز" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "ایڈمن" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index fa2688fd3e..2999d0a0ba 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 48334f186b..5a810047ea 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 86474234c6..fd5fa1e56a 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index c48e336fc8..fa1c87f15b 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 4ca9187a76..1c798121ee 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index b1191e63d7..3866afcc85 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 b1dff0973d..5610f4db45 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 ac38468283..1a02f6e87b 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "Giúp đỡ" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "Cá nhân" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "Cài đặt" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "Người dùng" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "Ứng dụng" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "Quản trị" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 9e7b0c6149..8bd8099270 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 98461719c9..f39bf23575 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 e90a7b93fc..f7fd81ee57 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index f9d2017c0b..d36873bb84 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 477137bac3..cf9a0d80d2 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 6dd7cc9a0a..54443235bf 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 05d3e9d461..8f12c7fb15 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 fc04255391..7f12b8f11e 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "帮助" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "私人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "设置" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "用户" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "程序" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理员" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 2ac880c22a..08dfa5e4ff 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index ee59a1a2e8..302dad9bdc 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 739ab358de..e64324185e 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: zhangmin \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 a8e33eda55..fff3cef778 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: zhangmin \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 4b003e8660..63ba4cbe14 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 459a8decb7..f8391a0881 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 01c19992bc..f25059b251 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 6cea910bd5..abbe2135cc 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "帮助" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "个人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "设置" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "用户" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "应用" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index af7ca4bd0b..43a903f31c 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 5eef1bce51..fb342a94f7 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 866a9269fb..9a48e296c7 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 c818e894a7..fbcb711c83 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+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 bd2e25b9ef..d80adda59d 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 31a5969b1b..969b9139a9 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 9a39db9eea..4c69b76dbc 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 f5cc3d2438..79cd2c8f7c 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -17,27 +17,27 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "幫助" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "個人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "設定" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "用戶" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "軟件" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index d9aee240ff..e4ae4f4a13 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index d4521dd95f..09f43f3293 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-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 cb2eeb8231..9616e4ff8b 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 4ac318f1f4..f1e5469c0f 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:18+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:27+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 125686a62d..b9c8f7e626 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 22d719b286..5668ed5042 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index a951d989a3..236dc0c1d6 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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 aef3941ec9..333354a13b 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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" @@ -18,27 +18,27 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:357 +#: app.php:358 msgid "Help" msgstr "說明" -#: app.php:370 +#: app.php:371 msgid "Personal" msgstr "個人" -#: app.php:381 +#: app.php:382 msgid "Settings" msgstr "設定" -#: app.php:393 +#: app.php:394 msgid "Users" msgstr "使用者" -#: app.php:406 +#: app.php:407 msgid "Apps" msgstr "應用程式" -#: app.php:414 +#: app.php:415 msgid "Admin" msgstr "管理" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 1a340dcb7e..ff41fb0869 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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_ldap.po b/l10n/zh_TW/user_ldap.po index e1138987a6..2a32a7a3fd 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:56+0200\n" -"PO-Revision-Date: 2013-06-10 23:19+0000\n" +"POT-Creation-Date: 2013-06-12 02:56+0200\n" +"PO-Revision-Date: 2013-06-11 23:28+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/settings/l10n/ca.php b/settings/l10n/ca.php index 769c25d7bf..268fbc2996 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -102,6 +102,7 @@ "Login Name" => "Nom d'accés", "Create" => "Crea", "Admin Recovery Password" => "Recuperació de contrasenya d'administrador", +"Enter the recovery password in order to recover the users files during password change" => "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya", "Default Storage" => "Emmagatzemament per defecte", "Unlimited" => "Il·limitat", "Other" => "Un altre", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index fdd38e7bb2..c0668676dd 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -102,6 +102,7 @@ "Login Name" => "Přihlašovací jméno", "Create" => "Vytvořit", "Admin Recovery Password" => "Heslo obnovy správce", +"Enter the recovery password in order to recover the users files during password change" => "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla", "Default Storage" => "Výchozí úložiště", "Unlimited" => "Neomezeně", "Other" => "Jiný", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 8a9e237e12..baf25a274b 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -102,6 +102,7 @@ "Login Name" => "Kasutajanimi", "Create" => "Lisa", "Admin Recovery Password" => "Admin taasteparool", +"Enter the recovery password in order to recover the users files during password change" => "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus", "Default Storage" => "Vaikimisi maht", "Unlimited" => "Piiramatult", "Other" => "Muu", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 05f3dc07c4..ee60aa82a2 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -94,14 +94,15 @@ "Display Name" => "Amosar o nome", "Email" => "Correo", "Your email address" => "O seu enderezo de correo", -"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar a recuperación do contrasinal", +"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar o contrasinal de recuperación", "Language" => "Idioma", "Help translate" => "Axude na tradución", "WebDAV" => "WebDAV", "Use this address to connect to your ownCloud in your file manager" => "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros", "Login Name" => "Nome de acceso", "Create" => "Crear", -"Admin Recovery Password" => "Recuperación do contrasinal do administrador", +"Admin Recovery Password" => "Contrasinal de recuperación do administrador", +"Enter the recovery password in order to recover the users files during password change" => "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal", "Default Storage" => "Almacenamento predeterminado", "Unlimited" => "Sen límites", "Other" => "Outro", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 38c22ea06d..c2ee1e4997 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -102,6 +102,7 @@ "Login Name" => "Nome utente", "Create" => "Crea", "Admin Recovery Password" => "Password di ripristino amministrativa", +"Enter the recovery password in order to recover the users files during password change" => "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password.", "Default Storage" => "Archiviazione predefinita", "Unlimited" => "Illimitata", "Other" => "Altro", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index ad42d3f085..f9ef8e8682 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -102,6 +102,7 @@ "Login Name" => "ログイン名", "Create" => "作成", "Admin Recovery Password" => "管理者復旧パスワード", +"Enter the recovery password in order to recover the users files during password change" => "パスワード変更の間のユーザーのファイルを回復するために、リカバリパスワードを入力してください", "Default Storage" => "デフォルトストレージ", "Unlimited" => "無制限", "Other" => "その他", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 824940da58..e78e907cf8 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -102,6 +102,7 @@ "Login Name" => "Nome de Login", "Create" => "Criar", "Admin Recovery Password" => "Recuperação da Senha do Administrador", +"Enter the recovery password in order to recover the users files during password change" => "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha.", "Default Storage" => "Armazenamento Padrão", "Unlimited" => "Ilimitado", "Other" => "Outro", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index dca9692999..d0475c0263 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -102,6 +102,7 @@ "Login Name" => "Inloggningsnamn", "Create" => "Skapa", "Admin Recovery Password" => "Admin återställningslösenord", +"Enter the recovery password in order to recover the users files during password change" => "Enter the recovery password in order to recover the users files during password change", "Default Storage" => "Förvald lagring", "Unlimited" => "Obegränsad", "Other" => "Annat", From a2fa91fdd5ee857fa697ee0664b178028ec03697 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 12 Jun 2013 09:40:13 +0200 Subject: [PATCH 087/145] init language object before using it --- settings/ajax/removeuser.php | 1 + 1 file changed, 1 insertion(+) diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php index bf3a34f147..8732c6518a 100644 --- a/settings/ajax/removeuser.php +++ b/settings/ajax/removeuser.php @@ -21,5 +21,6 @@ if( OC_User::deleteUser( $username )) { OC_JSON::success(array("data" => array( "username" => $username ))); } else{ + $l = OC_L10N::get('core'); OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete user") ))); } From 506c9de5cd44eddc89402950a734564451b2fbcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 12 Jun 2013 10:30:54 +0200 Subject: [PATCH 088/145] backport of https://github.com/owncloud/core/commit/1fa76e53dc5c515035f19e78f3988205521720f6 --- apps/files_external/js/settings.js | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index ac408786ff..3e605c59a9 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -88,7 +88,7 @@ OC.MountConfig={ url: OC.filePath('files_external', 'ajax', 'removeMountPoint.php'), data: { mountPoint: mountPoint, - class: backendClass, + 'class': backendClass, classOptions: classOptions, mountType: mountType, applicable: applicable, @@ -103,7 +103,7 @@ OC.MountConfig={ url: OC.filePath('files_external', 'ajax', 'removeMountPoint.php'), data: { mountPoint: mountPoint, - class: backendClass, + 'class': backendClass, classOptions: classOptions, mountType: mountType, applicable: applicable, @@ -247,15 +247,18 @@ $(document).ready(function() { OC.MountConfig.saveStorage($(this).parent().parent()); }); + $('#sslCertificate').on('click', 'td.remove>img', function() { + var $tr = $(this).parent().parent(); + var row = this.parentNode.parentNode; + $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), {cert: row.id}); + $tr.remove(); + return true; + }); + $('#externalStorage').on('click', 'td.remove>img', function() { var tr = $(this).parent().parent(); var mountPoint = $(tr).find('.mountPoint input').val(); - if ( ! mountPoint) { - var row=this.parentNode.parentNode; - $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), { cert: row.id }); - $(tr).remove(); - return true; - } + if ($('#externalStorage').data('admin') === true) { var isPersonal = false; var multiselect = $(tr).find('.chzn-select').val(); From 519508736d03efd765e7985207f35195dd97e7ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 12 Jun 2013 10:37:09 +0200 Subject: [PATCH 089/145] disable proxys during ssl root cert upload to avoid encryption --- apps/files_external/ajax/addRootCertificate.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files_external/ajax/addRootCertificate.php b/apps/files_external/ajax/addRootCertificate.php index 43fd6752c4..ae349bfcd3 100644 --- a/apps/files_external/ajax/addRootCertificate.php +++ b/apps/files_external/ajax/addRootCertificate.php @@ -29,8 +29,12 @@ if ($isValid == false) { // add the certificate if it could be verified if ( $isValid ) { + // disable proxy to prevent multiple fopen calls + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; $view->file_put_contents($filename, $data); OC_Mount_Config::createCertificateBundle(); + \OC_FileProxy::$enabled = $proxyStatus; } else { OCP\Util::writeLog('files_external', 'Couldn\'t import SSL root certificate ('.$filename.'), allowed formats: PEM and DER', From c78a90fd54c790a21c9ba4d8dcf86a68ebef0edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 12 Jun 2013 12:21:11 +0200 Subject: [PATCH 090/145] use number of manipulated rows as idicator if it was possible to enter the migration mode --- apps/files_encryption/hooks/hooks.php | 5 +- apps/files_encryption/lib/util.php | 88 ++++++--------------------- 2 files changed, 24 insertions(+), 69 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 9f36393d59..7e68f476a7 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -67,7 +67,10 @@ class Hooks { $session->setPrivateKey($privateKey, $params['uid']); // Check if first-run file migration has already been performed - $ready = $util->beginMigration(); + $ready = false; + if ($util->getMigrationStatus() === Util::MIGRATION_OPEN) { + $ready = $util->beginMigration(); + } // If migration not yet done if ($ready) { diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index a5aa121f93..f6da417c6f 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1056,64 +1056,26 @@ class Util { } - /** - * @brief Set file migration status for user - * @param $status - * @return bool - */ - private function setMigrationStatus($status) { - - $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ?'; - - $args = array( - $status, - $this->userId - ); - - $query = \OCP\DB::prepare($sql); - - if ($query->execute($args)) { - - return true; - - } else { - \OCP\Util::writeLog('Encryption library', "Could not set migration status for " . $this->userId, \OCP\Util::ERROR); - return false; - - } - - } - /** * @brief start migration mode to initially encrypt users data * @return boolean */ public function beginMigration() { - + $return = false; - $transaction = \OC_DB::beginTransaction(); + $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ? and `migration_status` = ?'; + $args = array(self::MIGRATION_IN_PROGRESS, $this->userId, self::MIGRATION_OPEN); + $query = \OCP\DB::prepare($sql); + $result = $query->execute($args); + $manipulatedRows = $result->numRows(); - if ($transaction === false) { - \OCP\Util::writeLog('Encryption library', "Your database migration doesn't support transactions", \OCP\Util::WARN); - } - - $migrationStatus = $this->getMigrationStatus(); - - if ($migrationStatus === self::MIGRATION_OPEN) { - - $return = $this->setMigrationStatus(self::MIGRATION_IN_PROGRESS); - - if ($return === true) { - \OCP\Util::writeLog('Encryption library', "Enter migration mode for initial encryption for user " . $this->userId, \OCP\Util::INFO); - } else { - \OCP\Util::writeLog('Encryption library', "Could not activate migration mode for " . $this->userId . ", encryption aborted", \OCP\Util::ERROR); - } + if ($manipulatedRows === 1) { + $return = true; + \OCP\Util::writeLog('Encryption library', "Start migration to encryption mode for " . $this->userId, \OCP\Util::INFO); } else { - \OCP\Util::writeLog('Encryption library', "Another process already performs the migration for user " . $this->userId, \OCP\Util::WARN); + \OCP\Util::writeLog('Encryption library', "Could not activate migration mode for " . $this->userId . ". Probably another process already started the initial encryption", \OCP\Util::WARN); } - - \OC_DB::commit(); return $return; } @@ -1126,29 +1088,19 @@ class Util { $return = false; - $transaction = \OC_DB::beginTransaction(); + $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ? and `migration_status` = ?'; + $args = array(self::MIGRATION_COMPLETED, $this->userId, self::MIGRATION_IN_PROGRESS); + $query = \OCP\DB::prepare($sql); + $result = $query->execute($args); + $manipulatedRows = $result->numRows(); - if ($transaction === false) { - \OCP\Util::writeLog('Encryption library', "Your database migration doesn't support transactions", \OCP\Util::WARN); - } - - $migrationStatus = $this->getMigrationStatus(); - - if ($migrationStatus === self::MIGRATION_IN_PROGRESS) { - - $return = $this->setMigrationStatus(self::MIGRATION_COMPLETED); - - if ($return === true) { - \OCP\Util::writeLog('Encryption library', "Leave migration mode for: " . $this->userId . " successfully.", \OCP\Util::INFO); - } else { - \OCP\Util::writeLog('Encryption library', "Could not deactivate migration mode for " . $this->userId, \OCP\Util::ERROR); - } + if ($manipulatedRows === 1) { + $result = true; + \OCP\Util::writeLog('Encryption library', "Finish migration successfully for " . $this->userId, \OCP\Util::INFO); } else { - \OCP\Util::writeLog('Encryption library', "Someone else finished the migration mode to early for user " . $this->userId, \OCP\Util::ERROR); + \OCP\Util::writeLog('Encryption library', "Could not deactivate migration mode for " . $this->userId, \OCP\Util::WARN); } - \OC_DB::commit(); - return $return; } @@ -1158,7 +1110,7 @@ class Util { * @note If records are not being returned, check for a hidden space * at the start of the uid in db */ - private function getMigrationStatus() { + public function getMigrationStatus() { $sql = 'SELECT `migration_status` FROM `*PREFIX*encryption` WHERE `uid` = ?'; From a2d3c030fb18f1b0ecd9451145cd0fbdb2b36799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 12 Jun 2013 13:58:25 +0300 Subject: [PATCH 091/145] every test now has 15min to execute we don't want to check performance just yet. we just want to make jenkins end more reliably. --- tests/phpunit-autotest.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index 9d6750751f..71fe69c6aa 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -1,8 +1,8 @@ From c0568e0443a8beaebc3ecd25af5f9a5dca498a42 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 11 Jun 2013 17:24:47 +0200 Subject: [PATCH 092/145] remove App management top bar and move buttons more contextually in the interface --- settings/css/settings.css | 8 +++++++- settings/templates/apps.php | 15 ++++++++++----- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/settings/css/settings.css b/settings/css/settings.css index 950e892901..3c406109a1 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -61,7 +61,13 @@ select.quota.active { background: #fff; } /* APPS */ .appinfo { margin: 1em; } h3 { font-size: 1.4em; font-weight: bold; } -ul.applist li { height: 2.2em; padding: 0.2em 0.2em 0.2em 0.8em !important; } +ul.applist a { + height: 2.2em; + padding: 0.2em 0.2em 0.2em 0.8em !important; +} +ul.applist .app-external { + width: 100%; +} li { color:#888; } li.active { color:#000; } small.externalapp { color:#FFF; background-color:#BBB; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 4px;} diff --git a/settings/templates/apps.php b/settings/templates/apps.php index d3639cbab3..cdb690f9a2 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -7,11 +7,12 @@ src="?appid="> - -
    + +
    + + + + + + + + + + + + + + + + + + +
      +ownCloud +
     
      +t('Hey there,

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

    Cheers!', array($_['user_displayname'], $_['filename'], $_['link']))); +?> +
     
     --
    +t('ownCloud - web services under your control')); +?> +
    http://ownCloud.org
     
    +
    From ff64278a07918a21c4cdb1a290c537084855a28c Mon Sep 17 00:00:00 2001 From: Stephan Arts Date: Fri, 14 Jun 2013 18:02:35 +0200 Subject: [PATCH 140/145] Do no translate "ownCloud - " --- core/templates/altmail.php | 4 ++-- core/templates/mail.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/templates/altmail.php b/core/templates/altmail.php index 4bac3254d9..c1d56c4b1a 100644 --- a/core/templates/altmail.php +++ b/core/templates/altmail.php @@ -3,7 +3,7 @@ print_unescaped($l->t("Hey there,\n\njust letting you know that %s shared »%s« ?> -- -t("ownCloud – web services under your control")); +ownCloud - t("web services under your control")); ?> http://ownCloud.org diff --git a/core/templates/mail.php b/core/templates/mail.php index 060e007d33..ebeefd5c7e 100644 --- a/core/templates/mail.php +++ b/core/templates/mail.php @@ -20,8 +20,8 @@ print_unescaped($l->t('Hey there,

    just letting you know that %s shared »   --
    -t('ownCloud - web services under your control')); +ownCloud - t('web services under your control')); ?>
    http://ownCloud.org From f3d33a7d5bd98c9c0da62097e643e95f0b4b923d Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 14 Jun 2013 20:04:20 +0200 Subject: [PATCH 141/145] =?UTF-8?q?remove=20=C2=BB=20and=20=C2=AB=20from?= =?UTF-8?q?=20the=20text=20mail=20because=20they=20will=20be=20escaped?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/templates/altmail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/altmail.php b/core/templates/altmail.php index c1d56c4b1a..37dc8eee94 100644 --- a/core/templates/altmail.php +++ b/core/templates/altmail.php @@ -1,5 +1,5 @@ t("Hey there,\n\njust letting you know that %s shared »%s« with you.\nView it: %s\n\nCheers!", array($_['user_displayname'], $_['filename'], $_['link']))); +print_unescaped($l->t("Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!", array($_['user_displayname'], $_['filename'], $_['link']))); ?> -- From ab411d2700c01886a67b30bce5f630cc6865a9bf Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 15 Jun 2013 02:07:18 +0200 Subject: [PATCH 142/145] [tx-robot] updated from transifex --- apps/files_encryption/l10n/cs_CZ.php | 5 ++ apps/files_encryption/l10n/gl.php | 14 ++++++ apps/files_encryption/l10n/ja_JP.php | 14 ++++++ apps/files_encryption/l10n/sv.php | 5 ++ apps/user_webdavauth/l10n/ar.php | 1 - apps/user_webdavauth/l10n/bg_BG.php | 1 - apps/user_webdavauth/l10n/ca.php | 1 - apps/user_webdavauth/l10n/cs_CZ.php | 1 - apps/user_webdavauth/l10n/da.php | 1 - apps/user_webdavauth/l10n/de.php | 1 - apps/user_webdavauth/l10n/de_DE.php | 1 - apps/user_webdavauth/l10n/el.php | 1 - apps/user_webdavauth/l10n/eo.php | 3 +- apps/user_webdavauth/l10n/es.php | 1 - apps/user_webdavauth/l10n/es_AR.php | 1 - apps/user_webdavauth/l10n/et_EE.php | 1 - apps/user_webdavauth/l10n/eu.php | 1 - apps/user_webdavauth/l10n/fi_FI.php | 3 +- apps/user_webdavauth/l10n/fr.php | 1 - apps/user_webdavauth/l10n/gl.php | 1 - apps/user_webdavauth/l10n/he.php | 1 - apps/user_webdavauth/l10n/hu_HU.php | 1 - apps/user_webdavauth/l10n/id.php | 1 - apps/user_webdavauth/l10n/is.php | 3 +- apps/user_webdavauth/l10n/it.php | 1 - apps/user_webdavauth/l10n/ja_JP.php | 1 - apps/user_webdavauth/l10n/ka_GE.php | 1 - apps/user_webdavauth/l10n/ko.php | 1 - apps/user_webdavauth/l10n/lt_LT.php | 1 - apps/user_webdavauth/l10n/lv.php | 1 - apps/user_webdavauth/l10n/nl.php | 1 - apps/user_webdavauth/l10n/nn_NO.php | 1 - apps/user_webdavauth/l10n/pl.php | 1 - apps/user_webdavauth/l10n/pt_BR.php | 1 - apps/user_webdavauth/l10n/pt_PT.php | 1 - apps/user_webdavauth/l10n/ro.php | 1 - apps/user_webdavauth/l10n/ru.php | 1 - apps/user_webdavauth/l10n/sk_SK.php | 1 - apps/user_webdavauth/l10n/sl.php | 1 - apps/user_webdavauth/l10n/sr.php | 1 - apps/user_webdavauth/l10n/sv.php | 1 - apps/user_webdavauth/l10n/th_TH.php | 1 - apps/user_webdavauth/l10n/tr.php | 1 - apps/user_webdavauth/l10n/ug.php | 3 +- apps/user_webdavauth/l10n/uk.php | 1 - apps/user_webdavauth/l10n/vi.php | 1 - apps/user_webdavauth/l10n/zh_CN.php | 1 - apps/user_webdavauth/l10n/zh_TW.php | 1 - core/l10n/af_ZA.php | 1 + core/l10n/ar.php | 5 +- core/l10n/bn_BD.php | 5 +- core/l10n/bs.php | 4 ++ core/l10n/ca.php | 4 -- core/l10n/cs_CZ.php | 6 +-- core/l10n/cy_GB.php | 4 -- core/l10n/da.php | 5 +- core/l10n/de.php | 5 +- core/l10n/de_DE.php | 5 +- core/l10n/el.php | 5 +- core/l10n/en@pirate.php | 1 - core/l10n/eo.php | 5 +- core/l10n/es.php | 5 +- core/l10n/es_AR.php | 4 -- core/l10n/et_EE.php | 5 +- core/l10n/eu.php | 5 +- core/l10n/fa.php | 5 +- core/l10n/fi_FI.php | 5 +- core/l10n/fr.php | 5 +- core/l10n/gl.php | 6 +-- core/l10n/he.php | 4 -- core/l10n/hi.php | 1 - core/l10n/hu_HU.php | 4 -- core/l10n/ia.php | 1 + core/l10n/id.php | 5 +- core/l10n/is.php | 5 +- core/l10n/it.php | 5 +- core/l10n/ja_JP.php | 6 +-- core/l10n/ka_GE.php | 4 -- core/l10n/ko.php | 5 +- core/l10n/lt_LT.php | 4 -- core/l10n/lv.php | 4 -- core/l10n/mk.php | 5 +- core/l10n/ms_MY.php | 1 + core/l10n/my_MM.php | 1 + core/l10n/nb_NO.php | 1 + core/l10n/nl.php | 5 +- core/l10n/nn_NO.php | 5 +- core/l10n/oc.php | 1 + core/l10n/pl.php | 4 -- core/l10n/pt_BR.php | 4 -- core/l10n/pt_PT.php | 4 -- core/l10n/ro.php | 5 +- core/l10n/ru.php | 5 +- core/l10n/si_LK.php | 1 + core/l10n/sk_SK.php | 4 -- core/l10n/sl.php | 5 +- core/l10n/sq.php | 5 +- core/l10n/sr.php | 3 +- core/l10n/sv.php | 7 ++- core/l10n/th_TH.php | 4 -- core/l10n/tr.php | 4 -- core/l10n/uk.php | 5 +- core/l10n/ur_PK.php | 1 + core/l10n/vi.php | 5 +- core/l10n/zh_CN.GB2312.php | 4 -- core/l10n/zh_CN.php | 4 -- core/l10n/zh_TW.php | 4 -- l10n/af_ZA/core.po | 47 ++++++++++--------- l10n/af_ZA/lib.po | 56 +++++++++++------------ l10n/af_ZA/user_webdavauth.po | 6 +-- l10n/ar/core.po | 49 ++++++++++---------- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 56 +++++++++++------------ l10n/ar/settings.po | 68 ++++++++++++++-------------- l10n/ar/user_ldap.po | 4 +- l10n/ar/user_webdavauth.po | 8 ++-- l10n/be/core.po | 47 ++++++++++--------- l10n/be/user_webdavauth.po | 6 +-- l10n/bg_BG/core.po | 47 ++++++++++--------- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 56 +++++++++++------------ l10n/bg_BG/settings.po | 68 ++++++++++++++-------------- l10n/bg_BG/user_ldap.po | 4 +- l10n/bg_BG/user_webdavauth.po | 10 ++-- l10n/bn_BD/core.po | 49 ++++++++++---------- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 56 +++++++++++------------ l10n/bn_BD/settings.po | 68 ++++++++++++++-------------- l10n/bn_BD/user_ldap.po | 4 +- l10n/bn_BD/user_webdavauth.po | 8 ++-- l10n/bs/core.po | 51 +++++++++++---------- l10n/bs/files.po | 14 +++--- l10n/bs/files_encryption.po | 6 +-- l10n/bs/files_trashbin.po | 6 +-- l10n/bs/settings.po | 28 ++++++------ l10n/bs/user_webdavauth.po | 6 +-- l10n/ca/core.po | 49 ++++++++++---------- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 56 +++++++++++------------ l10n/ca/settings.po | 68 ++++++++++++++-------------- l10n/ca/user_ldap.po | 4 +- l10n/ca/user_webdavauth.po | 8 ++-- l10n/cs_CZ/core.po | 53 ++++++++++++---------- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_encryption.po | 16 +++---- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 56 +++++++++++------------ l10n/cs_CZ/settings.po | 68 ++++++++++++++-------------- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cs_CZ/user_webdavauth.po | 8 ++-- l10n/cy_GB/core.po | 49 ++++++++++---------- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 56 +++++++++++------------ l10n/cy_GB/settings.po | 68 ++++++++++++++-------------- l10n/cy_GB/user_ldap.po | 4 +- l10n/cy_GB/user_webdavauth.po | 6 +-- l10n/da/core.po | 49 ++++++++++---------- l10n/da/files.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 44 +++++++++--------- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/da/user_webdavauth.po | 8 ++-- l10n/de/core.po | 49 ++++++++++---------- l10n/de/files.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 56 +++++++++++------------ l10n/de/settings.po | 68 ++++++++++++++-------------- l10n/de/user_ldap.po | 4 +- l10n/de/user_webdavauth.po | 8 ++-- l10n/de_DE/core.po | 49 ++++++++++---------- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 56 +++++++++++------------ l10n/de_DE/settings.po | 68 ++++++++++++++-------------- l10n/de_DE/user_ldap.po | 4 +- l10n/de_DE/user_webdavauth.po | 8 ++-- l10n/el/core.po | 49 ++++++++++---------- l10n/el/files.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 56 +++++++++++------------ l10n/el/settings.po | 68 ++++++++++++++-------------- l10n/el/user_ldap.po | 4 +- l10n/el/user_webdavauth.po | 8 ++-- l10n/en@pirate/core.po | 47 ++++++++++--------- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/en@pirate/user_webdavauth.po | 8 ++-- l10n/eo/core.po | 49 ++++++++++---------- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 56 +++++++++++------------ l10n/eo/settings.po | 68 ++++++++++++++-------------- l10n/eo/user_ldap.po | 4 +- l10n/eo/user_webdavauth.po | 8 ++-- l10n/es/core.po | 49 ++++++++++---------- l10n/es/files.po | 4 +- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 56 +++++++++++------------ l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es/user_webdavauth.po | 8 ++-- l10n/es_AR/core.po | 49 ++++++++++---------- 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/lib.po | 44 +++++++++--------- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/es_AR/user_webdavauth.po | 8 ++-- l10n/et_EE/core.po | 49 ++++++++++---------- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 56 +++++++++++------------ l10n/et_EE/settings.po | 68 ++++++++++++++-------------- l10n/et_EE/user_ldap.po | 4 +- l10n/et_EE/user_webdavauth.po | 10 ++-- l10n/eu/core.po | 49 ++++++++++---------- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 56 +++++++++++------------ l10n/eu/settings.po | 68 ++++++++++++++-------------- l10n/eu/user_ldap.po | 4 +- l10n/eu/user_webdavauth.po | 8 ++-- l10n/fa/core.po | 49 ++++++++++---------- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 56 +++++++++++------------ l10n/fa/settings.po | 68 ++++++++++++++-------------- l10n/fa/user_ldap.po | 4 +- l10n/fa/user_webdavauth.po | 6 +-- l10n/fi_FI/core.po | 49 ++++++++++---------- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 56 +++++++++++------------ l10n/fi_FI/settings.po | 68 ++++++++++++++-------------- l10n/fi_FI/user_ldap.po | 4 +- l10n/fi_FI/user_webdavauth.po | 8 ++-- l10n/fr/core.po | 49 ++++++++++---------- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 56 +++++++++++------------ l10n/fr/settings.po | 26 +++++------ l10n/fr/user_ldap.po | 4 +- l10n/fr/user_webdavauth.po | 8 ++-- l10n/gl/core.po | 53 ++++++++++++---------- l10n/gl/files.po | 4 +- l10n/gl/files_encryption.po | 34 +++++++------- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 56 +++++++++++------------ l10n/gl/settings.po | 68 ++++++++++++++-------------- l10n/gl/user_ldap.po | 4 +- l10n/gl/user_webdavauth.po | 8 ++-- l10n/he/core.po | 49 ++++++++++---------- l10n/he/files.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 56 +++++++++++------------ l10n/he/settings.po | 68 ++++++++++++++-------------- l10n/he/user_ldap.po | 4 +- l10n/he/user_webdavauth.po | 10 ++-- l10n/hi/core.po | 47 ++++++++++--------- l10n/hi/files.po | 4 +- l10n/hi/lib.po | 56 +++++++++++------------ l10n/hi/user_webdavauth.po | 6 +-- l10n/hr/core.po | 47 ++++++++++--------- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 56 +++++++++++------------ l10n/hr/settings.po | 68 ++++++++++++++-------------- l10n/hr/user_ldap.po | 4 +- l10n/hr/user_webdavauth.po | 6 +-- l10n/hu_HU/core.po | 49 ++++++++++---------- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 56 +++++++++++------------ l10n/hu_HU/settings.po | 68 ++++++++++++++-------------- l10n/hu_HU/user_ldap.po | 4 +- l10n/hu_HU/user_webdavauth.po | 8 ++-- l10n/hy/core.po | 47 ++++++++++--------- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 68 ++++++++++++++-------------- l10n/hy/user_webdavauth.po | 8 ++-- l10n/ia/core.po | 47 ++++++++++--------- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 56 +++++++++++------------ l10n/ia/settings.po | 68 ++++++++++++++-------------- l10n/ia/user_ldap.po | 4 +- l10n/ia/user_webdavauth.po | 6 +-- l10n/id/core.po | 49 ++++++++++---------- l10n/id/files.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 56 +++++++++++------------ l10n/id/settings.po | 68 ++++++++++++++-------------- l10n/id/user_ldap.po | 4 +- l10n/id/user_webdavauth.po | 8 ++-- l10n/is/core.po | 49 ++++++++++---------- l10n/is/files.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 56 +++++++++++------------ l10n/is/settings.po | 68 ++++++++++++++-------------- l10n/is/user_ldap.po | 4 +- l10n/is/user_webdavauth.po | 10 ++-- l10n/it/core.po | 49 ++++++++++---------- l10n/it/files.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 56 +++++++++++------------ l10n/it/settings.po | 68 ++++++++++++++-------------- l10n/it/user_ldap.po | 4 +- l10n/it/user_webdavauth.po | 10 ++-- l10n/ja_JP/core.po | 54 ++++++++++++---------- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_encryption.po | 35 +++++++------- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 56 +++++++++++------------ l10n/ja_JP/settings.po | 68 ++++++++++++++-------------- l10n/ja_JP/user_ldap.po | 4 +- l10n/ja_JP/user_webdavauth.po | 8 ++-- l10n/ka/core.po | 47 ++++++++++--------- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka/user_webdavauth.po | 6 +-- l10n/ka_GE/core.po | 49 ++++++++++---------- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 56 +++++++++++------------ l10n/ka_GE/settings.po | 68 ++++++++++++++-------------- l10n/ka_GE/user_ldap.po | 4 +- l10n/ka_GE/user_webdavauth.po | 8 ++-- l10n/kn/core.po | 47 ++++++++++--------- l10n/kn/user_webdavauth.po | 6 +-- l10n/ko/core.po | 49 ++++++++++---------- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 56 +++++++++++------------ l10n/ko/settings.po | 68 ++++++++++++++-------------- l10n/ko/user_ldap.po | 4 +- l10n/ko/user_webdavauth.po | 8 ++-- l10n/ku_IQ/core.po | 47 ++++++++++--------- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/lib.po | 56 +++++++++++------------ l10n/ku_IQ/settings.po | 68 ++++++++++++++-------------- l10n/ku_IQ/user_ldap.po | 4 +- l10n/ku_IQ/user_webdavauth.po | 6 +-- l10n/lb/core.po | 47 ++++++++++--------- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 56 +++++++++++------------ l10n/lb/settings.po | 68 ++++++++++++++-------------- l10n/lb/user_ldap.po | 4 +- l10n/lb/user_webdavauth.po | 6 +-- l10n/lt_LT/core.po | 49 ++++++++++---------- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 56 +++++++++++------------ l10n/lt_LT/settings.po | 68 ++++++++++++++-------------- l10n/lt_LT/user_ldap.po | 4 +- l10n/lt_LT/user_webdavauth.po | 8 ++-- l10n/lv/core.po | 49 ++++++++++---------- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 56 +++++++++++------------ l10n/lv/settings.po | 68 ++++++++++++++-------------- l10n/lv/user_ldap.po | 4 +- l10n/lv/user_webdavauth.po | 8 ++-- l10n/mk/core.po | 49 ++++++++++---------- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 56 +++++++++++------------ l10n/mk/settings.po | 68 ++++++++++++++-------------- l10n/mk/user_ldap.po | 4 +- l10n/mk/user_webdavauth.po | 8 ++-- l10n/ms_MY/core.po | 47 ++++++++++--------- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 56 +++++++++++------------ l10n/ms_MY/settings.po | 68 ++++++++++++++-------------- l10n/ms_MY/user_ldap.po | 4 +- l10n/ms_MY/user_webdavauth.po | 6 +-- l10n/my_MM/core.po | 47 ++++++++++--------- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 56 +++++++++++------------ l10n/my_MM/user_webdavauth.po | 6 +-- l10n/nb_NO/core.po | 47 ++++++++++--------- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 56 +++++++++++------------ l10n/nb_NO/settings.po | 68 ++++++++++++++-------------- l10n/nb_NO/user_ldap.po | 4 +- l10n/nb_NO/user_webdavauth.po | 8 ++-- l10n/ne/core.po | 47 ++++++++++--------- l10n/ne/user_webdavauth.po | 6 +-- l10n/nl/core.po | 49 ++++++++++---------- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 56 +++++++++++------------ l10n/nl/settings.po | 68 ++++++++++++++-------------- l10n/nl/user_ldap.po | 4 +- l10n/nl/user_webdavauth.po | 8 ++-- l10n/nn_NO/core.po | 49 ++++++++++---------- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 56 +++++++++++------------ l10n/nn_NO/settings.po | 68 ++++++++++++++-------------- l10n/nn_NO/user_ldap.po | 4 +- l10n/nn_NO/user_webdavauth.po | 10 ++-- l10n/oc/core.po | 47 ++++++++++--------- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 56 +++++++++++------------ l10n/oc/settings.po | 68 ++++++++++++++-------------- l10n/oc/user_ldap.po | 4 +- l10n/oc/user_webdavauth.po | 6 +-- l10n/pl/core.po | 49 ++++++++++---------- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 56 +++++++++++------------ l10n/pl/settings.po | 68 ++++++++++++++-------------- l10n/pl/user_ldap.po | 4 +- l10n/pl/user_webdavauth.po | 8 ++-- l10n/pt_BR/core.po | 49 ++++++++++---------- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 56 +++++++++++------------ l10n/pt_BR/settings.po | 68 ++++++++++++++-------------- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_BR/user_webdavauth.po | 8 ++-- l10n/pt_PT/core.po | 49 ++++++++++---------- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 56 +++++++++++------------ l10n/pt_PT/settings.po | 26 +++++------ l10n/pt_PT/user_ldap.po | 4 +- l10n/pt_PT/user_webdavauth.po | 8 ++-- l10n/ro/core.po | 49 ++++++++++---------- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 56 +++++++++++------------ l10n/ro/settings.po | 68 ++++++++++++++-------------- l10n/ro/user_ldap.po | 4 +- l10n/ro/user_webdavauth.po | 8 ++-- l10n/ru/core.po | 49 ++++++++++---------- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 56 +++++++++++------------ l10n/ru/settings.po | 68 ++++++++++++++-------------- l10n/ru/user_ldap.po | 4 +- l10n/ru/user_webdavauth.po | 8 ++-- l10n/si_LK/core.po | 47 ++++++++++--------- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 56 +++++++++++------------ l10n/si_LK/settings.po | 68 ++++++++++++++-------------- l10n/si_LK/user_ldap.po | 4 +- l10n/si_LK/user_webdavauth.po | 6 +-- l10n/sk/core.po | 47 ++++++++++--------- l10n/sk/user_webdavauth.po | 6 +-- l10n/sk_SK/core.po | 49 ++++++++++---------- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 56 +++++++++++------------ l10n/sk_SK/settings.po | 68 ++++++++++++++-------------- l10n/sk_SK/user_ldap.po | 4 +- l10n/sk_SK/user_webdavauth.po | 8 ++-- l10n/sl/core.po | 49 ++++++++++---------- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 56 +++++++++++------------ l10n/sl/settings.po | 68 ++++++++++++++-------------- l10n/sl/user_ldap.po | 4 +- l10n/sl/user_webdavauth.po | 8 ++-- l10n/sq/core.po | 49 ++++++++++---------- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 56 +++++++++++------------ l10n/sq/settings.po | 68 ++++++++++++++-------------- l10n/sq/user_ldap.po | 4 +- l10n/sq/user_webdavauth.po | 6 +-- l10n/sr/core.po | 47 ++++++++++--------- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 56 +++++++++++------------ l10n/sr/settings.po | 68 ++++++++++++++-------------- l10n/sr/user_ldap.po | 4 +- l10n/sr/user_webdavauth.po | 10 ++-- l10n/sr@latin/core.po | 47 ++++++++++--------- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 56 +++++++++++------------ l10n/sr@latin/settings.po | 68 ++++++++++++++-------------- l10n/sr@latin/user_webdavauth.po | 6 +-- l10n/sv/core.po | 54 ++++++++++++---------- l10n/sv/files.po | 4 +- l10n/sv/files_encryption.po | 17 +++---- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 56 +++++++++++------------ l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/sv/user_webdavauth.po | 8 ++-- l10n/sw_KE/core.po | 47 ++++++++++--------- l10n/sw_KE/user_webdavauth.po | 6 +-- l10n/ta_LK/core.po | 47 ++++++++++--------- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 56 +++++++++++------------ l10n/ta_LK/settings.po | 68 ++++++++++++++-------------- l10n/ta_LK/user_ldap.po | 4 +- l10n/ta_LK/user_webdavauth.po | 6 +-- l10n/te/core.po | 47 ++++++++++--------- l10n/te/files.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 56 +++++++++++------------ l10n/te/settings.po | 68 ++++++++++++++-------------- l10n/te/user_ldap.po | 4 +- l10n/te/user_webdavauth.po | 6 +-- l10n/templates/core.pot | 47 ++++++++++--------- 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 | 42 ++++++++--------- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 4 +- l10n/th_TH/core.po | 49 ++++++++++---------- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 56 +++++++++++------------ l10n/th_TH/settings.po | 68 ++++++++++++++-------------- l10n/th_TH/user_ldap.po | 4 +- l10n/th_TH/user_webdavauth.po | 8 ++-- l10n/tr/core.po | 49 ++++++++++---------- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 56 +++++++++++------------ l10n/tr/settings.po | 68 ++++++++++++++-------------- l10n/tr/user_ldap.po | 4 +- l10n/tr/user_webdavauth.po | 10 ++-- l10n/ug/core.po | 47 ++++++++++--------- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 56 +++++++++++------------ l10n/ug/settings.po | 68 ++++++++++++++-------------- l10n/ug/user_ldap.po | 4 +- l10n/ug/user_webdavauth.po | 10 ++-- l10n/uk/core.po | 49 ++++++++++---------- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 56 +++++++++++------------ l10n/uk/settings.po | 68 ++++++++++++++-------------- l10n/uk/user_ldap.po | 4 +- l10n/uk/user_webdavauth.po | 8 ++-- l10n/ur_PK/core.po | 47 ++++++++++--------- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 56 +++++++++++------------ l10n/ur_PK/settings.po | 68 ++++++++++++++-------------- l10n/ur_PK/user_ldap.po | 4 +- l10n/ur_PK/user_webdavauth.po | 6 +-- l10n/vi/core.po | 49 ++++++++++---------- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 56 +++++++++++------------ l10n/vi/settings.po | 68 ++++++++++++++-------------- l10n/vi/user_ldap.po | 4 +- l10n/vi/user_webdavauth.po | 8 ++-- l10n/zh_CN.GB2312/core.po | 49 ++++++++++---------- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 56 +++++++++++------------ l10n/zh_CN.GB2312/settings.po | 68 ++++++++++++++-------------- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN.GB2312/user_webdavauth.po | 6 +-- l10n/zh_CN/core.po | 49 ++++++++++---------- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 56 +++++++++++------------ l10n/zh_CN/settings.po | 68 ++++++++++++++-------------- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_CN/user_webdavauth.po | 8 ++-- l10n/zh_HK/core.po | 47 ++++++++++--------- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 56 +++++++++++------------ l10n/zh_HK/settings.po | 68 ++++++++++++++-------------- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_HK/user_webdavauth.po | 6 +-- l10n/zh_TW/core.po | 49 ++++++++++---------- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 56 +++++++++++------------ l10n/zh_TW/settings.po | 68 ++++++++++++++-------------- l10n/zh_TW/user_ldap.po | 4 +- l10n/zh_TW/user_webdavauth.po | 10 ++-- settings/l10n/ar.php | 2 +- settings/l10n/bn_BD.php | 2 +- settings/l10n/bs.php | 3 ++ settings/l10n/ca.php | 2 +- settings/l10n/cs_CZ.php | 2 +- settings/l10n/de.php | 2 +- settings/l10n/de_DE.php | 2 +- settings/l10n/el.php | 2 +- settings/l10n/et_EE.php | 2 +- settings/l10n/eu.php | 2 +- settings/l10n/fa.php | 2 +- settings/l10n/fi_FI.php | 2 +- settings/l10n/gl.php | 2 +- settings/l10n/he.php | 2 +- settings/l10n/hu_HU.php | 2 +- settings/l10n/id.php | 2 +- settings/l10n/it.php | 2 +- settings/l10n/ja_JP.php | 2 +- settings/l10n/ka_GE.php | 2 +- settings/l10n/ko.php | 2 +- settings/l10n/lv.php | 2 +- settings/l10n/nb_NO.php | 2 +- settings/l10n/nl.php | 2 +- settings/l10n/nn_NO.php | 2 +- settings/l10n/pl.php | 2 +- settings/l10n/pt_BR.php | 2 +- settings/l10n/ro.php | 2 +- settings/l10n/ru.php | 2 +- settings/l10n/sk_SK.php | 2 +- settings/l10n/sl.php | 2 +- settings/l10n/sr.php | 2 +- settings/l10n/th_TH.php | 2 +- settings/l10n/tr.php | 2 +- settings/l10n/uk.php | 2 +- settings/l10n/vi.php | 2 +- settings/l10n/zh_CN.GB2312.php | 2 +- settings/l10n/zh_CN.php | 2 +- settings/l10n/zh_TW.php | 2 +- 766 files changed, 6967 insertions(+), 6882 deletions(-) create mode 100644 core/l10n/bs.php create mode 100644 settings/l10n/bs.php diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index d0f4b4a9a0..a005141ce0 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -5,6 +5,9 @@ "Could not disable recovery key. Please check your recovery key password!" => "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče.", "Password successfully changed." => "Heslo bylo úspěšně změněno.", "Could not change the password. Maybe the old password was not correct." => "Nelze změnit heslo. Pravděpodobně nebylo stávající heslo zadáno správně.", +"Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.", +"Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Váš soukromý klíč není platný. Možná bylo vaše heslo změněno z venku. Můžete aktualizovat heslo soukromého klíče v osobním nastavení pro opětovné získání přístupu k souborům", "Saving..." => "Ukládám...", "Encryption" => "Šifrování", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Povolit záchranný klíč šifrovacích hesel (povolí sdílený záchranný klíč):", @@ -15,6 +18,8 @@ "Old Recovery account password" => "Stávající heslo pro obnovu účtu", "New Recovery account password" => "Nové heslo pro obnovu účtu", "Change Password" => "Změnit heslo", +"Enable password recovery:" => "Povolit obnovu hesla:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", "File recovery settings updated" => "Možnosti obnovy souborů aktualizovány", "Could not update file recovery" => "Nelze aktualizovat obnovu souborů" ); diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index 9405ad063e..6fc6abccef 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -5,7 +5,13 @@ "Could not disable recovery key. Please check your recovery key password!" => "Non foi posíbel desactivar a chave de recuperación. Comprobe o contrasinal da chave de recuperación!", "Password successfully changed." => "O contrasinal foi cambiado satisfactoriamente", "Could not change the password. Maybe the old password was not correct." => "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto.", +"Private key password successfully updated." => "A chave privada foi actualizada correctamente.", +"Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", "Saving..." => "Gardando...", +"Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", +"You can unlock your private key in your " => "Pode desbloquear a chave privada nos seus", +"personal settings" => "axustes persoais", "Encryption" => "Cifrado", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Activar a chave de recuperación do cifrado de contrasinais (permite compartir a chave de recuperación):", "Recovery account password" => "Recuperación do contrasinal da conta", @@ -15,6 +21,14 @@ "Old Recovery account password" => "Antigo contrasinal de recuperación da conta", "New Recovery account password" => "Novo contrasinal de recuperación da conta", "Change Password" => "Cambiar o contrasinal", +"Your private key password no longer match your log-in password:" => "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso.", +"Set your old private key password to your current log-in password." => "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual", +" If you don't remember your old password you can ask your administrator to recover your files." => " Se non lembra o seu antigo contrasinal pode pedírllelo ao seu administrador para recuperar os seus ficheiros.", +"Old log-in password" => "Contrasinal de acceso antigo", +"Current log-in password" => "Contrasinal de acceso actual", +"Update Private Key Password" => "Actualizar o contrasinal da chave privada", +"Enable password recovery:" => "Activar o contrasinal de recuperación:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Ao activar esta opción permitiráselle volver a obter acceso aos ficheiros cifrados no caso de perda do contrasinal", "File recovery settings updated" => "Actualizouse o ficheiro de axustes de recuperación", "Could not update file recovery" => "Non foi posíbel actualizar o ficheiro de recuperación" ); diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index 5fefff5754..29c2a97cdb 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -5,7 +5,13 @@ "Could not disable recovery key. Please check your recovery key password!" => "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認して下さい!", "Password successfully changed." => "パスワードを変更できました。", "Could not change the password. Maybe the old password was not correct." => "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。", +"Private key password successfully updated." => "秘密鍵のパスワードが正常に更新されました。", +"Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。。個人設定で秘密鍵のパスワードを更新して、ファイルへのアクセス権を奪還できます。", "Saving..." => "保存中...", +"Your private key is not valid! Maybe the your password was changed from outside." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", +"You can unlock your private key in your " => "個人設定で", +"personal settings" => "秘密鍵をアンロックできます", "Encryption" => "暗号化", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "暗号化パスワードの復旧キーを有効にする(復旧キーを共有することを許可):", "Recovery account password" => "復旧アカウントのパスワード", @@ -15,6 +21,14 @@ "Old Recovery account password" => "古い復旧アカウントのパスワード", "New Recovery account password" => "新しい復旧アカウントのパスワード", "Change Password" => "パスワードを変更", +"Your private key password no longer match your log-in password:" => "もはや秘密鍵はログインパスワードと一致しません:", +"Set your old private key password to your current log-in password." => "古い秘密鍵のパスワードを現在のログインパスワードに設定する。", +" If you don't remember your old password you can ask your administrator to recover your files." => "古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。", +"Old log-in password" => "古いログインパスワード", +"Current log-in password" => "現在のログインパスワード", +"Update Private Key Password" => "秘密鍵のパスワードを更新", +"Enable password recovery:" => "パスワード復旧を有効化:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。", "File recovery settings updated" => "ファイル復旧設定が更新されました", "Could not update file recovery" => "ファイル復旧を更新できませんでした" ); diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 17d174df93..dea245d6d2 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -6,6 +6,8 @@ "Password successfully changed." => "Ändringen av lösenordet lyckades.", "Could not change the password. Maybe the old password was not correct." => "Kunde inte ändra lösenordet. Kanske det gamla lösenordet inte var rätt.", "Saving..." => "Sparar...", +"You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", +"personal settings" => "personliga inställningar", "Encryption" => "Kryptering", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Aktivera återställningsnyckel för krypterade lösenord. (tillåt delning till återställningsnyckeln):", "Recovery account password" => "Återställning av kontolösenord", @@ -15,6 +17,9 @@ "Old Recovery account password" => "Gamla lösenordet för återställningskontot", "New Recovery account password" => "Nytt återställningslösenord för kontot", "Change Password" => "Byt lösenord", +"Old log-in password" => "Gammalt inloggningslösenord", +"Current log-in password" => "Nuvarande inloggningslösenord", +"Enable password recovery:" => "Aktivera lösenordsåterställning", "File recovery settings updated" => "Inställningarna för filåterställning har uppdaterats", "Could not update file recovery" => "Kunde inte uppdatera filåterställning" ); diff --git a/apps/user_webdavauth/l10n/ar.php b/apps/user_webdavauth/l10n/ar.php index c17302f7bb..78b347e51f 100644 --- a/apps/user_webdavauth/l10n/ar.php +++ b/apps/user_webdavauth/l10n/ar.php @@ -1,5 +1,4 @@ "تأكد شخصية ال WebDAV", -"URL: http://" => "الرابط: 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 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." ); diff --git a/apps/user_webdavauth/l10n/bg_BG.php b/apps/user_webdavauth/l10n/bg_BG.php index a3bd703b25..61503db839 100644 --- a/apps/user_webdavauth/l10n/bg_BG.php +++ b/apps/user_webdavauth/l10n/bg_BG.php @@ -1,5 +1,4 @@ "WebDAV идентификация", -"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 ще изпрати потребителските данни до този URL. " ); diff --git a/apps/user_webdavauth/l10n/ca.php b/apps/user_webdavauth/l10n/ca.php index 7ac540f213..a660e41592 100644 --- a/apps/user_webdavauth/l10n/ca.php +++ b/apps/user_webdavauth/l10n/ca.php @@ -1,5 +1,4 @@ "Autenticació WebDAV", -"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 enviarà les credencials d'usuari a aquesta URL. Aquest endollable en comprova la resposta i interpretarà els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides." ); diff --git a/apps/user_webdavauth/l10n/cs_CZ.php b/apps/user_webdavauth/l10n/cs_CZ.php index 9bd4c96a2b..17308ef422 100644 --- a/apps/user_webdavauth/l10n/cs_CZ.php +++ b/apps/user_webdavauth/l10n/cs_CZ.php @@ -1,5 +1,4 @@ "Ověření WebDAV", -"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 odešle uživatelské údaje na zadanou URL. Plugin zkontroluje odpověď a považuje návratovou hodnotu HTTP 401 a 403 za neplatné údaje a všechny ostatní hodnoty jako platné přihlašovací údaje." ); diff --git a/apps/user_webdavauth/l10n/da.php b/apps/user_webdavauth/l10n/da.php index b268d3e15d..0d1190ba22 100644 --- a/apps/user_webdavauth/l10n/da.php +++ b/apps/user_webdavauth/l10n/da.php @@ -1,5 +1,4 @@ "WebDAV-godkendelse", -"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 vil sende brugerens oplysninger til denne URL. Plugin'et registrerer responsen og fortolker HTTP-statuskoder 401 og 403 som ugyldige oplysninger, men alle andre besvarelser som gyldige oplysninger." ); diff --git a/apps/user_webdavauth/l10n/de.php b/apps/user_webdavauth/l10n/de.php index c86ff44e55..e2db395b1c 100644 --- a/apps/user_webdavauth/l10n/de.php +++ b/apps/user_webdavauth/l10n/de.php @@ -1,5 +1,4 @@ "WebDAV Authentifikation", -"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 sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die Statuscodes 401 und 403 als ungültige Daten und alle anderen Antworten als gültige Daten interpretieren." ); diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 1aecfd2996..4ca749e898 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,5 +1,4 @@ "WebDAV-Authentifizierung", -"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 sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die Statuscodes 401 und 403 als ungültige Daten und alle anderen Antworten als gültige Daten interpretieren." ); diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index 951709c4d6..1943b98a75 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.php @@ -1,5 +1,4 @@ "Αυθεντικοποίηση μέσω WebDAV ", -"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 θα στείλει τα διαπιστευτήρια χρήστη σε αυτό το URL. Αυτό το plugin ελέγχει την απάντηση και την μετατρέπει σε HTTP κωδικό κατάστασης 401 και 403 για μη έγκυρα, όλες οι υπόλοιπες απαντήσεις είναι έγκυρες." ); diff --git a/apps/user_webdavauth/l10n/eo.php b/apps/user_webdavauth/l10n/eo.php index d945f181e6..0e1fda7c4c 100644 --- a/apps/user_webdavauth/l10n/eo.php +++ b/apps/user_webdavauth/l10n/eo.php @@ -1,4 +1,3 @@ "WebDAV-aŭtentigo", -"URL: http://" => "URL: http://" +"WebDAV Authentication" => "WebDAV-aŭtentigo" ); diff --git a/apps/user_webdavauth/l10n/es.php b/apps/user_webdavauth/l10n/es.php index 103c3738e2..efb8228828 100644 --- a/apps/user_webdavauth/l10n/es.php +++ b/apps/user_webdavauth/l10n/es.php @@ -1,5 +1,4 @@ "Autenticación de WevDAV", -"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." => "onwCloud enviará las credenciales de usuario a esta URL. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." ); diff --git a/apps/user_webdavauth/l10n/es_AR.php b/apps/user_webdavauth/l10n/es_AR.php index 103c3738e2..efb8228828 100644 --- a/apps/user_webdavauth/l10n/es_AR.php +++ b/apps/user_webdavauth/l10n/es_AR.php @@ -1,5 +1,4 @@ "Autenticación de WevDAV", -"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." => "onwCloud enviará las credenciales de usuario a esta URL. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." ); diff --git a/apps/user_webdavauth/l10n/et_EE.php b/apps/user_webdavauth/l10n/et_EE.php index a3b86224ac..470cb2b0f1 100644 --- a/apps/user_webdavauth/l10n/et_EE.php +++ b/apps/user_webdavauth/l10n/et_EE.php @@ -1,5 +1,4 @@ "WebDAV autentimine", -"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 saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." ); diff --git a/apps/user_webdavauth/l10n/eu.php b/apps/user_webdavauth/l10n/eu.php index d792c1588b..6395d7fc1e 100644 --- a/apps/user_webdavauth/l10n/eu.php +++ b/apps/user_webdavauth/l10n/eu.php @@ -1,5 +1,4 @@ "WebDAV Autentikazioa", -"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." => "ownCloudek erabiltzailearen kredentzialak URL honetara bidaliko ditu. Plugin honek erantzuna aztertzen du eta HTTP 401 eta 403 egoera kodeak baliogabezko kredentzialtzat hartuko ditu, beste erantzunak kredentzial egokitzat hartuko dituelarik." ); diff --git a/apps/user_webdavauth/l10n/fi_FI.php b/apps/user_webdavauth/l10n/fi_FI.php index 6c67c78c81..61a848bcfe 100644 --- a/apps/user_webdavauth/l10n/fi_FI.php +++ b/apps/user_webdavauth/l10n/fi_FI.php @@ -1,4 +1,3 @@ "WebDAV-todennus", -"URL: http://" => "Osoite: http://" +"WebDAV Authentication" => "WebDAV-todennus" ); diff --git a/apps/user_webdavauth/l10n/fr.php b/apps/user_webdavauth/l10n/fr.php index 9d528a3a9d..29476e1f8c 100644 --- a/apps/user_webdavauth/l10n/fr.php +++ b/apps/user_webdavauth/l10n/fr.php @@ -1,5 +1,4 @@ "Authentification WebDAV", -"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 enverra les informations de connexion à cette adresse. Ce module complémentaire analyse le code réponse HTTP et considère tout code différent des codes 401 et 403 comme associé à une authentification correcte." ); diff --git a/apps/user_webdavauth/l10n/gl.php b/apps/user_webdavauth/l10n/gl.php index f63a7cb0ce..81048a6314 100644 --- a/apps/user_webdavauth/l10n/gl.php +++ b/apps/user_webdavauth/l10n/gl.php @@ -1,5 +1,4 @@ "Autenticación WebDAV", -"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 enviará as credenciais do usuario a este URL. Este engadido comproba a resposta e interpretará os códigos de estado HTTP 401 e 403 como credenciais incorrectas, e todas as outras respostas como credenciais correctas." ); diff --git a/apps/user_webdavauth/l10n/he.php b/apps/user_webdavauth/l10n/he.php index 9ab6b83bc7..aee7b00f18 100644 --- a/apps/user_webdavauth/l10n/he.php +++ b/apps/user_webdavauth/l10n/he.php @@ -1,5 +1,4 @@ "הזדהות מול WebDAV", -"URL: http://" => "כתובת: 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 תשלח את פרטי המשתמש לכתובת זו. התוסף יבדוק את התגובה ויתרגם את הקודים 401 ו־403 כתגובה לציון פרטי גישה שגויים ואת כל שאר התגובות כפרטי גישה נכונים." ); diff --git a/apps/user_webdavauth/l10n/hu_HU.php b/apps/user_webdavauth/l10n/hu_HU.php index 6435280114..d7de5e57f3 100644 --- a/apps/user_webdavauth/l10n/hu_HU.php +++ b/apps/user_webdavauth/l10n/hu_HU.php @@ -1,5 +1,4 @@ "WebDAV hitelesítés", -"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." => "Az ownCloud elküldi a felhasználói fiók adatai a következő URL-re. Ez a bővítőmodul leellenőrzi a választ és ha a HTTP hibakód nem 401 vagy 403 azaz érvénytelen hitelesítő, akkor minden más válasz érvényes lesz." ); diff --git a/apps/user_webdavauth/l10n/id.php b/apps/user_webdavauth/l10n/id.php index 4324ee8ff5..8ddf54e473 100644 --- a/apps/user_webdavauth/l10n/id.php +++ b/apps/user_webdavauth/l10n/id.php @@ -1,5 +1,4 @@ "Otentikasi WebDAV", -"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 akan mengirimkan informasi pengguna ke URL ini. Pengaya akan mengecek respon dan menginterpretasikan kode status HTTP 401 serta 403 sebagai informasi yang keliru, sedangkan respon lainnya dianggap benar." ); diff --git a/apps/user_webdavauth/l10n/is.php b/apps/user_webdavauth/l10n/is.php index bb59ef5e44..10dcfa6e3d 100644 --- a/apps/user_webdavauth/l10n/is.php +++ b/apps/user_webdavauth/l10n/is.php @@ -1,4 +1,3 @@ "WebDAV Auðkenni", -"URL: http://" => "Vefslóð: http://" +"WebDAV Authentication" => "WebDAV Auðkenni" ); diff --git a/apps/user_webdavauth/l10n/it.php b/apps/user_webdavauth/l10n/it.php index a7cd6e8e4b..4391c6d3f8 100644 --- a/apps/user_webdavauth/l10n/it.php +++ b/apps/user_webdavauth/l10n/it.php @@ -1,5 +1,4 @@ "Autenticazione WebDAV", -"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 invierà le credenziali dell'utente a questo URL. Questa estensione controlla la risposta e interpreta i codici di stato 401 e 403 come credenziali non valide, e tutte le altre risposte come credenziali valide." ); diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php index 1cd14a03c7..0cbbe813c4 100644 --- a/apps/user_webdavauth/l10n/ja_JP.php +++ b/apps/user_webdavauth/l10n/ja_JP.php @@ -1,5 +1,4 @@ "WebDAV 認証", -"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はこのURLにユーザ資格情報を送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" ); diff --git a/apps/user_webdavauth/l10n/ka_GE.php b/apps/user_webdavauth/l10n/ka_GE.php index f475ea0b73..34c502cc5e 100644 --- a/apps/user_webdavauth/l10n/ka_GE.php +++ b/apps/user_webdavauth/l10n/ka_GE.php @@ -1,5 +1,4 @@ "WebDAV აუთენთიფიკაცია", -"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–ი გამოგიგზავნით ანგარიშის მონაცემებს ამ URL–ზე. ეს პლაგინი შეამოწმებს პასუხს და მოახდენს მის ინტერპრეტაციას HTTP სტატუსკოდებში 401 და 403 დაუშვებელი მონაცემებისთვის, ხოლო სხვა დანარჩენს დაშვებადი მონაცემებისთვის." ); diff --git a/apps/user_webdavauth/l10n/ko.php b/apps/user_webdavauth/l10n/ko.php index 578ff35e72..e0431164a5 100644 --- a/apps/user_webdavauth/l10n/ko.php +++ b/apps/user_webdavauth/l10n/ko.php @@ -1,5 +1,4 @@ "WebDAV 인증", -"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에서 이 URL로 사용자 인증 정보를 보냅니다. 이 플러그인은 응답을 확인하여 HTTP 상태 코드 401이나 403이 돌아온 경우에 잘못된 인증 정보로 간주합니다. 다른 모든 상태 코드는 올바른 인증 정보로 간주합니다." ); diff --git a/apps/user_webdavauth/l10n/lt_LT.php b/apps/user_webdavauth/l10n/lt_LT.php index 8d0492ae48..ed81efdf8b 100644 --- a/apps/user_webdavauth/l10n/lt_LT.php +++ b/apps/user_webdavauth/l10n/lt_LT.php @@ -1,5 +1,4 @@ "WebDAV autorizavimas", -"URL: http://" => "Adresas: 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 išsiųs naudotojo duomenis į šį WWW adresą. Šis įskiepis patikrins gautą atsakymą ir interpretuos HTTP būsenos kodą 401 ir 403 kaip negaliojančius duomenis, ir visus kitus gautus atsakymus kaip galiojančius duomenis. " ); diff --git a/apps/user_webdavauth/l10n/lv.php b/apps/user_webdavauth/l10n/lv.php index d0043df9f0..7f90f64d21 100644 --- a/apps/user_webdavauth/l10n/lv.php +++ b/apps/user_webdavauth/l10n/lv.php @@ -1,5 +1,4 @@ "WebDAV autentifikācija", -"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 sūtīs lietotāja akreditācijas datus uz šo URL. Šis spraudnis pārbauda atbildi un interpretē HTTP statusa kodus 401 un 403 kā nederīgus akreditācijas datus un visas citas atbildes kā derīgus akreditācijas datus." ); diff --git a/apps/user_webdavauth/l10n/nl.php b/apps/user_webdavauth/l10n/nl.php index 7d1bb33923..342d46edf8 100644 --- a/apps/user_webdavauth/l10n/nl.php +++ b/apps/user_webdavauth/l10n/nl.php @@ -1,5 +1,4 @@ "WebDAV authenticatie", -"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 stuurt de inloggegevens naar deze URL. Deze plugin controleert het antwoord en interpreteert de HTTP statuscodes 401 als 403 als ongeldige inloggegevens, maar alle andere antwoorden als geldige inloggegevens." ); diff --git a/apps/user_webdavauth/l10n/nn_NO.php b/apps/user_webdavauth/l10n/nn_NO.php index 772e084b63..5c4184b33a 100644 --- a/apps/user_webdavauth/l10n/nn_NO.php +++ b/apps/user_webdavauth/l10n/nn_NO.php @@ -1,5 +1,4 @@ "WebDAV-autentisering", -"URL: http://" => "Nettadresse: 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 sender brukarakkreditiv til denne nettadressa. Dette programtillegget kontrollerer svaret og tolkar HTTP-statuskodane 401 og 403 som ugyldige, og alle andre svar som gyldige." ); diff --git a/apps/user_webdavauth/l10n/pl.php b/apps/user_webdavauth/l10n/pl.php index 4887e93531..e18b4787d5 100644 --- a/apps/user_webdavauth/l10n/pl.php +++ b/apps/user_webdavauth/l10n/pl.php @@ -1,5 +1,4 @@ "Uwierzytelnienie WebDAV", -"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 wyśle dane uwierzytelniające do tego URL. Ten plugin sprawdza odpowiedź i zinterpretuje kody HTTP 401 oraz 403 jako nieprawidłowe dane uwierzytelniające, a każdy inny kod odpowiedzi jako poprawne dane." ); diff --git a/apps/user_webdavauth/l10n/pt_BR.php b/apps/user_webdavauth/l10n/pt_BR.php index 6ddd00ccc3..1f96b75462 100644 --- a/apps/user_webdavauth/l10n/pt_BR.php +++ b/apps/user_webdavauth/l10n/pt_BR.php @@ -1,5 +1,4 @@ "Autenticação WebDAV", -"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." => "O ownCloud enviará as credenciais do usuário para esta URL. Este plugin verifica a resposta e interpreta o os códigos de status do HTTP 401 e 403 como credenciais inválidas, e todas as outras respostas como credenciais válidas." ); diff --git a/apps/user_webdavauth/l10n/pt_PT.php b/apps/user_webdavauth/l10n/pt_PT.php index d7e87b5c8d..eec1a328e1 100644 --- a/apps/user_webdavauth/l10n/pt_PT.php +++ b/apps/user_webdavauth/l10n/pt_PT.php @@ -1,5 +1,4 @@ "Autenticação WebDAV", -"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." => "O ownCloud vai enviar as credenciais do utilizador através deste URL. Este plugin verifica a resposta e vai interpretar os códigos de estado HTTP 401 e 403 como credenciais inválidas, e todas as outras como válidas." ); diff --git a/apps/user_webdavauth/l10n/ro.php b/apps/user_webdavauth/l10n/ro.php index 9df490e81e..bccd7d50e2 100644 --- a/apps/user_webdavauth/l10n/ro.php +++ b/apps/user_webdavauth/l10n/ro.php @@ -1,5 +1,4 @@ "Autentificare WebDAV", -"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 va trimite datele de autentificare la acest URL. Acest modul verifică răspunsul și va interpreta codurile de status HTTP 401 sau 403 ca fiind date de autentificare invalide, și orice alt răspuns ca fiind date valide." ); diff --git a/apps/user_webdavauth/l10n/ru.php b/apps/user_webdavauth/l10n/ru.php index f12982fc40..ad3dfd2e67 100644 --- a/apps/user_webdavauth/l10n/ru.php +++ b/apps/user_webdavauth/l10n/ru.php @@ -1,5 +1,4 @@ "Идентификация WebDAV", -"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 отправит пользовательские данные на этот URL. Затем плагин проверит ответ, в случае HTTP ответа 401 или 403 данные будут считаться неверными, при любых других ответах - верными." ); diff --git a/apps/user_webdavauth/l10n/sk_SK.php b/apps/user_webdavauth/l10n/sk_SK.php index c4e6dfddc7..589a82dc6f 100644 --- a/apps/user_webdavauth/l10n/sk_SK.php +++ b/apps/user_webdavauth/l10n/sk_SK.php @@ -1,5 +1,4 @@ "WebDAV overenie", -"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 odošle používateľské údaje na zadanú URL. Plugin skontroluje odpoveď a považuje návratovú hodnotu HTTP 401 a 403 za neplatné údaje a všetky ostatné hodnoty ako platné prihlasovacie údaje." ); diff --git a/apps/user_webdavauth/l10n/sl.php b/apps/user_webdavauth/l10n/sl.php index 7c592723af..6bae847dc3 100644 --- a/apps/user_webdavauth/l10n/sl.php +++ b/apps/user_webdavauth/l10n/sl.php @@ -1,5 +1,4 @@ "Overitev WebDAV", -"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." => "Sistem ownCloud bo poslal uporabniška poverila na navedeni naslov URL. Ta vstavek preveri odziv in tolmači kode stanja HTTP 401 in HTTP 403 kot spodletel odgovor in vse ostale odzive kot veljavna poverila." ); diff --git a/apps/user_webdavauth/l10n/sr.php b/apps/user_webdavauth/l10n/sr.php index 518fcbe9be..44ff078493 100644 --- a/apps/user_webdavauth/l10n/sr.php +++ b/apps/user_webdavauth/l10n/sr.php @@ -1,5 +1,4 @@ "WebDAV провера идентитета", -"URL: http://" => "Адреса: 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 ће послати акредитиве корисника на ову адресу. Овај прикључак проверава одговор и тумачи HTTP статусне кодове 401 и 403 као неисправне акредитиве, а све остале одговоре као исправне." ); diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php index c79b35c27c..a87d4653d4 100644 --- a/apps/user_webdavauth/l10n/sv.php +++ b/apps/user_webdavauth/l10n/sv.php @@ -1,5 +1,4 @@ "WebDAV Autentisering", -"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 kommer skicka användaruppgifterna till denna URL. Denna plugin kontrollerar svaret och tolkar HTTP-statuskoderna 401 och 403 som felaktiga uppgifter, och alla andra svar som giltiga uppgifter." ); diff --git a/apps/user_webdavauth/l10n/th_TH.php b/apps/user_webdavauth/l10n/th_TH.php index 2bd1f685e6..3c84ef7104 100644 --- a/apps/user_webdavauth/l10n/th_TH.php +++ b/apps/user_webdavauth/l10n/th_TH.php @@ -1,5 +1,4 @@ "WebDAV Authentication", -"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 จะส่งข้อมูลการเข้าใช้งานของผู้ใช้งานไปยังที่อยู่ URL ดังกล่าวนี้ ปลั๊กอินดังกล่าวจะทำการตรวจสอบข้อมูลที่โต้ตอบกลับมาและจะทำการแปลรหัส HTTP statuscodes 401 และ 403 ให้เป็นข้อมูลการเข้าใช้งานที่ไม่สามารถใช้งานได้ ส่วนข้อมูลอื่นๆที่เหลือทั้งหมดจะเป็นข้อมูลการเข้าใช้งานที่สามารถใช้งานได้" ); diff --git a/apps/user_webdavauth/l10n/tr.php b/apps/user_webdavauth/l10n/tr.php index c495a39dce..06bf97c4b0 100644 --- a/apps/user_webdavauth/l10n/tr.php +++ b/apps/user_webdavauth/l10n/tr.php @@ -1,5 +1,4 @@ "WebDAV Kimlik doğrulaması", -"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/apps/user_webdavauth/l10n/ug.php b/apps/user_webdavauth/l10n/ug.php index 03ced5f4aa..7231d0c570 100644 --- a/apps/user_webdavauth/l10n/ug.php +++ b/apps/user_webdavauth/l10n/ug.php @@ -1,4 +1,3 @@ "WebDAV سالاھىيەت دەلىللەش", -"URL: http://" => "URL: http://" +"WebDAV Authentication" => "WebDAV سالاھىيەت دەلىللەش" ); diff --git a/apps/user_webdavauth/l10n/uk.php b/apps/user_webdavauth/l10n/uk.php index 66887df54b..2f4d3c95da 100644 --- a/apps/user_webdavauth/l10n/uk.php +++ b/apps/user_webdavauth/l10n/uk.php @@ -1,5 +1,4 @@ "Аутентифікація WebDAV", -"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 надішле облікові дані на цей URL. Цей плагін перевірить відповідь і буде інтерпретувати HTTP коди 401 і 403 як повідомлення про недійсні повноваження, а решту відповідей як дійсні облікові дані." ); diff --git a/apps/user_webdavauth/l10n/vi.php b/apps/user_webdavauth/l10n/vi.php index ee2aa08912..53f1e1c420 100644 --- a/apps/user_webdavauth/l10n/vi.php +++ b/apps/user_webdavauth/l10n/vi.php @@ -1,5 +1,4 @@ "Xác thực WebDAV", -"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 sẽ gửi chứng thư người dùng tới URL này. Tính năng này kiểm tra trả lời và sẽ hiểu mã 401 và 403 của giao thức HTTP là chứng thư không hợp lệ, và mọi trả lời khác được coi là hợp lệ." ); diff --git a/apps/user_webdavauth/l10n/zh_CN.php b/apps/user_webdavauth/l10n/zh_CN.php index 72d2a0c11d..5a935f1712 100644 --- a/apps/user_webdavauth/l10n/zh_CN.php +++ b/apps/user_webdavauth/l10n/zh_CN.php @@ -1,5 +1,4 @@ "WebDAV 认证", -"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 将会发送用户的身份到此 URL。这个插件检查返回值并且将 HTTP 状态编码 401 和 403 解释为非法身份,其他所有返回值为合法身份。" ); diff --git a/apps/user_webdavauth/l10n/zh_TW.php b/apps/user_webdavauth/l10n/zh_TW.php index 6f94b77ac5..32166b0475 100644 --- a/apps/user_webdavauth/l10n/zh_TW.php +++ b/apps/user_webdavauth/l10n/zh_TW.php @@ -1,5 +1,4 @@ "WebDAV 認證", -"URL: http://" => "網址: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 會將把用戶的登入資訊發送到這個網址以嘗試登入,並檢查回應, HTTP 狀態碼401和403視為登入失敗,所有其他回應視為登入成功。" ); diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index dc78e44c8d..4878c75edd 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -15,6 +15,7 @@ "Admin" => "Admin", "Help" => "Hulp", "Cloud not found" => "Wolk nie gevind", +"web services under your control" => "webdienste onder jou beheer", "Create an admin account" => "Skep `n admin-rekening", "Advanced" => "Gevorderd", "Configure the database" => "Stel databasis op", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 909cbff8a8..7ac7a564c3 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,8 +1,4 @@ "المستخدم %s قام بمشاركة ملف معك", -"User %s shared a folder with you" => "المستخدم %s قام بمشاركة مجلد معك", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "المستخدم %s قام بمشاركة الملف \"%s\" معك . الملف متاح للتحميل من هنا : %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "المستخدم %s قام بمشاركة المجلد \"%s\" معك . المجلد متاح للتحميل من هنا : %s", "Category type not provided." => "نوع التصنيف لم يدخل", "No category to add?" => "ألا توجد فئة للإضافة؟", "This category already exists: %s" => "هذا التصنيف موجود مسبقا : %s", @@ -102,6 +98,7 @@ "Help" => "المساعدة", "Access forbidden" => "التوصّل محظور", "Cloud not found" => "لم يتم إيجاد", +"web services under your control" => "خدمات الشبكة تحت سيطرتك", "Edit categories" => "عدل الفئات", "Add" => "اضف", "Security Warning" => "تحذير أمان", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 300bff94d4..c775d2fb6a 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -1,8 +1,4 @@ "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন", -"User %s shared a folder with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s", "Category type not provided." => "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।", "No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?", "Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।", @@ -99,6 +95,7 @@ "Help" => "সহায়িকা", "Access forbidden" => "অধিগমনের অনুমতি নেই", "Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", +"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", "Edit categories" => "ক্যাটেগরি সম্পাদনা", "Add" => "যোগ কর", "Security Warning" => "নিরাপত্তাজনিত সতর্কতা", diff --git a/core/l10n/bs.php b/core/l10n/bs.php new file mode 100644 index 0000000000..6b65cf81f2 --- /dev/null +++ b/core/l10n/bs.php @@ -0,0 +1,4 @@ + "Podijeli", +"Add" => "Dodaj" +); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 88f24e1e70..ec7d688b7e 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -1,8 +1,4 @@ "L'usuari %s ha compartit un fitxer amb vós", -"User %s shared a folder with you" => "L'usuari %s ha compartit una carpeta amb vós", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit el fitxer \"%s\" amb vós. Està disponible per a la descàrrega a: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descàrrega a: %s", "Category type not provided." => "No s'ha especificat el tipus de categoria.", "No category to add?" => "No voleu afegir cap categoria?", "This category already exists: %s" => "Aquesta categoria ja existeix: %s", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 143e0163fd..aa50c3cb63 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,8 +1,4 @@ "Uživatel %s s vámi sdílí soubor", -"User %s shared a folder with you" => "Uživatel %s s vámi sdílí složku", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí složku \"%s\". Můžete ji stáhnout zde: %s", "Category type not provided." => "Nezadán typ kategorie.", "No category to add?" => "Žádná kategorie k přidání?", "This category already exists: %s" => "Kategorie již existuje: %s", @@ -93,6 +89,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "Požadavek selhal.
    Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", "You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", "Username" => "Uživatelské jméno", +"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč obnovy, neexistuje způsob jak získat po obnově hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", +"Yes, I really want to reset my password now" => "Ano, opravdu si nyní přeji obnovit své heslo", "Request reset" => "Vyžádat obnovu", "Your password was reset" => "Vaše heslo bylo obnoveno", "To login page" => "Na stránku přihlášení", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 271edd5524..aeb2995e6b 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -1,8 +1,4 @@ "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", diff --git a/core/l10n/da.php b/core/l10n/da.php index 0ff523bd67..b3da17ba79 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -1,8 +1,4 @@ "Bruger %s delte en fil med dig", -"User %s shared a folder with you" => "Bruger %s delte en mappe med dig", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s", "Category type not provided." => "Kategori typen ikke er fastsat.", "No category to add?" => "Ingen kategori at tilføje?", "This category already exists: %s" => "Kategorien eksisterer allerede: %s", @@ -105,6 +101,7 @@ "Help" => "Hjælp", "Access forbidden" => "Adgang forbudt", "Cloud not found" => "Sky ikke fundet", +"web services under your control" => "Webtjenester under din kontrol", "Edit categories" => "Rediger kategorier", "Add" => "Tilføj", "Security Warning" => "Sikkerhedsadvarsel", diff --git a/core/l10n/de.php b/core/l10n/de.php index 570739ce0b..bf301b1179 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,8 +1,4 @@ "Der Nutzer %s hat eine Datei mit Dir geteilt", -"User %s shared a folder with you" => "%s hat ein Verzeichnis mit Dir geteilt", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat die Datei \"%s\" mit Dir geteilt. Sie ist hier zum Download verfügbar: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat den Ordner \"%s\" mit Dir geteilt. Er ist hier zum Download verfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: %s" => "Die Kategorie '%s' existiert bereits.", @@ -105,6 +101,7 @@ "Help" => "Hilfe", "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud nicht gefunden", +"web services under your control" => "Web-Services unter Deiner Kontrolle", "Edit categories" => "Kategorien bearbeiten", "Add" => "Hinzufügen", "Security Warning" => "Sicherheitswarnung", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 7968197a19..fb7835eba2 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,8 +1,4 @@ "Der Nutzer %s hat eine Datei mit Ihnen geteilt", -"User %s shared a folder with you" => "%s hat einen Ordner mit Ihnen geteilt", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat die Datei \"%s\" mit Ihnen geteilt. Sie ist hier zum Download verfügbar: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat den Ordner \"%s\" mit Ihnen geteilt. Er ist hier zum Download verfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: %s" => "Die nachfolgende Kategorie existiert bereits: %s", @@ -105,6 +101,7 @@ "Help" => "Hilfe", "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud wurde nicht gefunden", +"web services under your control" => "Web-Services unter Ihrer Kontrolle", "Edit categories" => "Kategorien ändern", "Add" => "Hinzufügen", "Security Warning" => "Sicherheitshinweis", diff --git a/core/l10n/el.php b/core/l10n/el.php index 6ca4d281c8..6b1239fe45 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,8 +1,4 @@ "Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς", -"User %s shared a folder with you" => "Ο χρήστης %s διαμοιράστηκε ένα φάκελο με εσάς", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s", "Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.", "No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;", "This category already exists: %s" => "Αυτή η κατηγορία υπάρχει ήδη: %s", @@ -104,6 +100,7 @@ "Help" => "Βοήθεια", "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", +"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", "Edit categories" => "Επεξεργασία κατηγοριών", "Add" => "Προσθήκη", "Security Warning" => "Προειδοποίηση Ασφαλείας", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index a09b891916..482632f3fd 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,4 +1,3 @@ "User %s shared a file with you", "Password" => "Passcode" ); diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 0986ba3701..c647850d0c 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -1,8 +1,4 @@ "La uzanto %s kunhavigis dosieron kun vi", -"User %s shared a folder with you" => "La uzanto %s kunhavigis dosierujon kun vi", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "La uzanto %s kunhavigis la dosieron “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "La uzanto %s kunhavigis la dosierujon “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s", "Category type not provided." => "Ne proviziĝis tipon de kategorio.", "No category to add?" => "Ĉu neniu kategorio estas aldonota?", "This category already exists: %s" => "Tiu kategorio jam ekzistas: %s", @@ -102,6 +98,7 @@ "Help" => "Helpo", "Access forbidden" => "Aliro estas malpermesata", "Cloud not found" => "La nubo ne estas trovita", +"web services under your control" => "TTT-servoj regataj de vi", "Edit categories" => "Redakti kategoriojn", "Add" => "Aldoni", "Security Warning" => "Sekureca averto", diff --git a/core/l10n/es.php b/core/l10n/es.php index d45a715025..008f48b205 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,8 +1,4 @@ "El usuario %s ha compartido un archivo contigo.", -"User %s shared a folder with you" => "El usuario %s ha compartido una carpeta contigo.", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s.", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s.", "Category type not provided." => "Tipo de categoría no proporcionado.", "No category to add?" => "¿Ninguna categoría para añadir?", "This category already exists: %s" => "Ya existe esta categoría: %s", @@ -105,6 +101,7 @@ "Help" => "Ayuda", "Access forbidden" => "Acceso denegado", "Cloud not found" => "No se ha encontrado la nube", +"web services under your control" => "Servicios web bajo su control", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 7b7b94d88f..3585fedfb4 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -1,8 +1,4 @@ "El usurario %s compartió un archivo con vos.", -"User %s shared a folder with you" => "El usurario %s compartió una carpeta con vos.", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s", "Category type not provided." => "Tipo de categoría no provisto. ", "No category to add?" => "¿Ninguna categoría para añadir?", "This category already exists: %s" => "Esta categoría ya existe: %s", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 2c37a6117e..4c0a41c508 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,8 +1,4 @@ "Kasutaja %s jagas sinuga faili", -"User %s shared a folder with you" => "Kasutaja %s jagas Sinuga kausta.", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas sinuga faili \"%s\". See on allalaadimiseks saadaval siin: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas sinuga kausta \"%s\". See on allalaadimiseks saadaval siin: %s", "Category type not provided." => "Kategooria tüüp puudub.", "No category to add?" => "Pole kategooriat, mida lisada?", "This category already exists: %s" => "See kategooria on juba olemas: %s", @@ -105,6 +101,7 @@ "Help" => "Abiinfo", "Access forbidden" => "Ligipääs on keelatud", "Cloud not found" => "Pilve ei leitud", +"web services under your control" => "veebitenused sinu kontrolli all", "Edit categories" => "Muuda kategooriaid", "Add" => "Lisa", "Security Warning" => "Turvahoiatus", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 40f4fdcbdd..117c010575 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -1,8 +1,4 @@ "%s erabiltzaileak zurekin fitxategi bat elkarbanatu du ", -"User %s shared a folder with you" => "%s erabiltzaileak zurekin karpeta bat elkarbanatu du ", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" fitxategia zurekin elkarbanatu du. Hemen duzu eskuragarri: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" karpeta zurekin elkarbanatu du. Hemen duzu eskuragarri: %s", "Category type not provided." => "Kategoria mota ez da zehaztu.", "No category to add?" => "Ez dago gehitzeko kategoriarik?", "This category already exists: %s" => "Kategoria hau dagoeneko existitzen da: %s", @@ -102,6 +98,7 @@ "Help" => "Laguntza", "Access forbidden" => "Sarrera debekatuta", "Cloud not found" => "Ez da hodeia aurkitu", +"web services under your control" => "web zerbitzuak zure kontrolpean", "Edit categories" => "Editatu kategoriak", "Add" => "Gehitu", "Security Warning" => "Segurtasun abisua", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 44ff8556dc..338b3ad4b2 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -1,8 +1,4 @@ "کاربر %s یک پرونده را با شما به اشتراک گذاشته است.", -"User %s shared a folder with you" => "کاربر %s یک پوشه را با شما به اشتراک گذاشته است.", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "کاربر %s پرونده \"%s\" را با شما به اشتراک گذاشته است. پرونده برای دانلود اینجاست : %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "کاربر %s پوشه \"%s\" را با شما به اشتراک گذاشته است. پرونده برای دانلود اینجاست : %s", "Category type not provided." => "نوع دسته بندی ارائه نشده است.", "No category to add?" => "آیا گروه دیگری برای افزودن ندارید", "This category already exists: %s" => "این دسته هم اکنون وجود دارد: %s", @@ -102,6 +98,7 @@ "Help" => "راه‌نما", "Access forbidden" => "اجازه دسترسی به مناطق ممنوعه را ندارید", "Cloud not found" => "پیدا نشد", +"web services under your control" => "سرویس های تحت وب در کنترل شما", "Edit categories" => "ویرایش گروه", "Add" => "افزودن", "Security Warning" => "اخطار امنیتی", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index e259e389c5..15349fb15a 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,8 +1,4 @@ "Käyttäjä %s jakoi tiedoston kanssasi", -"User %s shared a folder with you" => "Käyttäjä %s jakoi kansion kanssasi", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa täältä: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s", "Category type not provided." => "Luokan tyyppiä ei määritelty.", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: %s" => "Luokka on jo olemassa: %s", @@ -99,6 +95,7 @@ "Help" => "Ohje", "Access forbidden" => "Pääsy estetty", "Cloud not found" => "Pilveä ei löydy", +"web services under your control" => "verkkopalvelut hallinnassasi", "Edit categories" => "Muokkaa luokkia", "Add" => "Lisää", "Security Warning" => "Turvallisuusvaroitus", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 3f4b72001a..f10b71542d 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,8 +1,4 @@ "L'utilisateur %s a partagé un fichier avec vous", -"User %s shared a folder with you" => "L'utilsateur %s a partagé un dossier avec vous", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le dossier \"%s\" avec vous. Il est disponible au téléchargement ici : %s", "Category type not provided." => "Type de catégorie non spécifié.", "No category to add?" => "Pas de catégorie à ajouter ?", "This category already exists: %s" => "Cette catégorie existe déjà : %s", @@ -105,6 +101,7 @@ "Help" => "Aide", "Access forbidden" => "Accès interdit", "Cloud not found" => "Introuvable", +"web services under your control" => "services web sous votre contrôle", "Edit categories" => "Editer les catégories", "Add" => "Ajouter", "Security Warning" => "Avertissement de sécurité", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 142433e895..cb4c089533 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,8 +1,4 @@ "O usuario %s compartíu un ficheiro con vostede", -"User %s shared a folder with you" => "O usuario %s compartíu un cartafol con vostede", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s", "Category type not provided." => "Non se indicou o tipo de categoría", "No category to add?" => "Sen categoría que engadir?", "This category already exists: %s" => "Esta categoría xa existe: %s", @@ -93,6 +89,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "Non foi posíbel facer a petición!
    Asegúrese de que o seu enderezo de correo ou nome de usuario é correcto.", "You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo para restabelecer o contrasinal", "Username" => "Nome de usuario", +"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Semella que os ficheiros están cifrados. Se aínda non activou a chave de recuperación non haberá xeito de recuperar os datos unha vez que se teña restabelecido o contrasinal. Se non ten certeza do que ten que facer, póñase en contacto co administrador antes de continuar. Confirma que quere continuar?", +"Yes, I really want to reset my password now" => "Si, confirmo que quero restabelecer agora o meu contrasinal", "Request reset" => "Petición de restabelecemento", "Your password was reset" => "O contrasinal foi restabelecido", "To login page" => "A páxina de conexión", diff --git a/core/l10n/he.php b/core/l10n/he.php index 1229393095..ab002ab64e 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -1,8 +1,4 @@ "המשתמש %s שיתף אתך קובץ", -"User %s shared a folder with you" => "המשתמש %s שיתף אתך תיקייה", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "המשתמש %s שיתף אתך את הקובץ „%s“. ניתן להוריד את הקובץ מכאן: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "המשתמש %s שיתף אתך את התיקייה „%s“. ניתן להוריד את התיקייה מכאן: %s", "Category type not provided." => "סוג הקטגוריה לא סופק.", "No category to add?" => "אין קטגוריה להוספה?", "This category already exists: %s" => "הקטגוריה הבאה כבר קיימת: %s", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index cb265e1319..afdd91d5f8 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -1,5 +1,4 @@ "उपयोगकर्ता %s ने आप के साथ एक फ़ाइल सहभाजीत किया", "January" => "जनवरी", "February" => "फरवरी", "March" => "मार्च", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index fb9625febb..62dbe7f599 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -1,8 +1,4 @@ "%s felhasználó megosztott Önnel egy fájlt", -"User %s shared a folder with you" => "%s felhasználó megosztott Önnel egy mappát", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s", "Category type not provided." => "Nincs megadva a kategória típusa.", "No category to add?" => "Nincs hozzáadandó kategória?", "This category already exists: %s" => "Ez a kategória már létezik: %s", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 8c9b6b88ef..9df7eda1da 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -38,6 +38,7 @@ "Help" => "Adjuta", "Access forbidden" => "Accesso prohibite", "Cloud not found" => "Nube non trovate", +"web services under your control" => "servicios web sub tu controlo", "Edit categories" => "Modificar categorias", "Add" => "Adder", "Create an admin account" => "Crear un conto de administration", diff --git a/core/l10n/id.php b/core/l10n/id.php index c499744a80..5fe8b54222 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,8 +1,4 @@ "%s berbagi berkas dengan Anda", -"User %s shared a folder with you" => "%s berbagi folder dengan Anda", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s berbagi berkas \"%s\" dengan Anda. Silakan unduh di sini: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s berbagi folder \"%s\" dengan Anda. Silakan unduh di sini: %s", "Category type not provided." => "Tipe kategori tidak diberikan.", "No category to add?" => "Tidak ada kategori yang akan ditambahkan?", "This category already exists: %s" => "Kategori ini sudah ada: %s", @@ -102,6 +98,7 @@ "Help" => "Bantuan", "Access forbidden" => "Akses ditolak", "Cloud not found" => "Cloud tidak ditemukan", +"web services under your control" => "layanan web dalam kontrol Anda", "Edit categories" => "Edit kategori", "Add" => "Tambah", "Security Warning" => "Peringatan Keamanan", diff --git a/core/l10n/is.php b/core/l10n/is.php index 72f775c6bc..b8573b3624 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -1,8 +1,4 @@ "Notandinn %s deildi skrá með þér", -"User %s shared a folder with you" => "Notandinn %s deildi möppu með þér", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", "Category type not provided." => "Flokkur ekki gefin", "No category to add?" => "Enginn flokkur til að bæta við?", "Object type not provided." => "Tegund ekki í boði.", @@ -100,6 +96,7 @@ "Help" => "Hjálp", "Access forbidden" => "Aðgangur bannaður", "Cloud not found" => "Ský finnst ekki", +"web services under your control" => "vefþjónusta undir þinni stjórn", "Edit categories" => "Breyta flokkum", "Add" => "Bæta við", "Security Warning" => "Öryggis aðvörun", diff --git a/core/l10n/it.php b/core/l10n/it.php index 54863e82ed..e6683d7aa7 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,8 +1,4 @@ "L'utente %s ha condiviso un file con te", -"User %s shared a folder with you" => "L'utente %s ha condiviso una cartella con te", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso il file \"%s\" con te. È disponibile per lo scaricamento qui: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso la cartella \"%s\" con te. È disponibile per lo scaricamento qui: %s", "Category type not provided." => "Tipo di categoria non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", "This category already exists: %s" => "Questa categoria esiste già: %s", @@ -105,6 +101,7 @@ "Help" => "Aiuto", "Access forbidden" => "Accesso negato", "Cloud not found" => "Nuvola non trovata", +"web services under your control" => "servizi web nelle tue mani", "Edit categories" => "Modifica categorie", "Add" => "Aggiungi", "Security Warning" => "Avviso di sicurezza", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 7a1890a7b8..514ec67db0 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -1,8 +1,4 @@ "ユーザ %s はあなたとファイルを共有しています", -"User %s shared a folder with you" => "ユーザ %s はあなたとフォルダを共有しています", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとファイル \"%s\" を共有しています。こちらからダウンロードできます: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとフォルダ \"%s\" を共有しています。こちらからダウンロードできます: %s", "Category type not provided." => "カテゴリタイプは提供されていません。", "No category to add?" => "追加するカテゴリはありませんか?", "This category already exists: %s" => "このカテゴリはすでに存在します: %s", @@ -93,6 +89,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "リクエストに失敗しました!
    あなたのメール/ユーザ名が正しいことを確認しましたか?", "You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。", "Username" => "ユーザー名", +"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "ファイルが暗号化されているようです。復旧キーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?", +"Yes, I really want to reset my password now" => "はい、今すぐパスワードをリセットします。", "Request reset" => "リセットを要求します。", "Your password was reset" => "あなたのパスワードはリセットされました。", "To login page" => "ログインページへ戻る", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index f046d247c3..877d66a0db 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -1,8 +1,4 @@ "მომხმარებელმა %s გაგიზიარათ ფაილი", -"User %s shared a folder with you" => "მომხმარებელმა %s გაგიზიარათ ფოლდერი", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "მომხმარებელმა %s გაგიზიარათ ფაილი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "მომხმარებელმა %s გაგიზიარათ ფოლდერი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s", "Category type not provided." => "კატეგორიის ტიპი არ არის განხილული.", "No category to add?" => "არ არის კატეგორია დასამატებლად?", "This category already exists: %s" => "კატეგორია უკვე არსებობს: %s", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 653a0b1b35..d95daaa3a7 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,8 +1,4 @@ "%s 님이 파일을 공유하였습니다", -"User %s shared a folder with you" => "%s 님이 폴더를 공유하였습니다", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s 님이 파일 \"%s\"을(를) 공유하였습니다. 여기에서 다운로드할 수 있습니다: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s 님이 폴더 \"%s\"을(를) 공유하였습니다. 여기에서 다운로드할 수 있습니다: %s", "Category type not provided." => "분류 형식이 제공되지 않았습니다.", "No category to add?" => "추가할 분류가 없습니까?", "This category already exists: %s" => "분류가 이미 존재합니다: %s", @@ -102,6 +98,7 @@ "Help" => "도움말", "Access forbidden" => "접근 금지됨", "Cloud not found" => "클라우드를 찾을 수 없습니다", +"web services under your control" => "내가 관리하는 웹 서비스", "Edit categories" => "분류 수정", "Add" => "추가", "Security Warning" => "보안 경고", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 2d4e728f56..4faf7388b2 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -1,8 +1,4 @@ "Vartotojas %s pasidalino su jumis failu", -"User %s shared a folder with you" => "Vartotojas %s su jumis pasidalino aplanku", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Vartotojas %s pasidalino failu \"%s\" su jumis. Jį atsisiųsti galite čia: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Vartotojas %s pasidalino aplanku \"%s\" su jumis. Jį atsisiųsti galite čia: %s", "Category type not provided." => "Kategorija nenurodyta.", "No category to add?" => "Nepridėsite jokios kategorijos?", "This category already exists: %s" => "Ši kategorija jau egzistuoja: %s", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index c404caa57c..9552891d7d 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -1,8 +1,4 @@ "Lietotājs %s ar jums dalījās ar datni.", -"User %s shared a folder with you" => "Lietotājs %s ar jums dalījās ar mapi.", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Lietotājs %s ar jums dalījās ar datni “%s”. To var lejupielādēt šeit — %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Lietotājs %s ar jums dalījās ar mapi “%s”. To var lejupielādēt šeit — %s", "Category type not provided." => "Kategorijas tips nav norādīts.", "No category to add?" => "Nav kategoriju, ko pievienot?", "This category already exists: %s" => "Šāda kategorija jau eksistē — %s", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index c76e01fdca..de89403ee3 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -1,8 +1,4 @@ "Корисникот %s сподели датотека со Вас", -"User %s shared a folder with you" => "Корисникот %s сподели папка со Вас", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Корисникот %s ја сподели датотека „%s“ со Вас. Достапна е за преземање тука: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Корисникот %s ја сподели папката „%s“ со Вас. Достапна е за преземање тука: %s", "Category type not provided." => "Не беше доставен тип на категорија.", "No category to add?" => "Нема категорија да се додаде?", "Object type not provided." => "Не беше доставен тип на објект.", @@ -98,6 +94,7 @@ "Help" => "Помош", "Access forbidden" => "Забранет пристап", "Cloud not found" => "Облакот не е најден", +"web services under your control" => "веб сервиси под Ваша контрола", "Edit categories" => "Уреди категории", "Add" => "Додади", "Security Warning" => "Безбедносно предупредување", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 4227a31758..7a18acea7c 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -44,6 +44,7 @@ "Help" => "Bantuan", "Access forbidden" => "Larangan akses", "Cloud not found" => "Awan tidak dijumpai", +"web services under your control" => "Perkhidmatan web di bawah kawalan anda", "Edit categories" => "Ubah kategori", "Add" => "Tambah", "Security Warning" => "Amaran keselamatan", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index bfdff35184..614c353929 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -46,6 +46,7 @@ "Admin" => "အက်ဒမင်", "Help" => "အကူအညီ", "Cloud not found" => "မတွေ့ရှိမိပါ", +"web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services", "Add" => "ပေါင်းထည့်", "Security Warning" => "လုံခြုံရေးသတိပေးချက်", "Create an admin account" => "အက်ဒမင်အကောင့်တစ်ခုဖန်တီးမည်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index dfe0cbaeb8..d6d9675d32 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -78,6 +78,7 @@ "Help" => "Hjelp", "Access forbidden" => "Tilgang nektet", "Cloud not found" => "Sky ikke funnet", +"web services under your control" => "web tjenester du kontrollerer", "Edit categories" => "Rediger kategorier", "Add" => "Legg til", "Security Warning" => "Sikkerhetsadvarsel", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 5e11b19fb2..df417ea981 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,8 +1,4 @@ "Gebruiker %s deelde een bestand met u", -"User %s shared a folder with you" => "Gebruiker %s deelde een map met u", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s", "Category type not provided." => "Categorie type niet opgegeven.", "No category to add?" => "Geen categorie toevoegen?", "This category already exists: %s" => "Deze categorie bestaat al: %s", @@ -105,6 +101,7 @@ "Help" => "Help", "Access forbidden" => "Toegang verboden", "Cloud not found" => "Cloud niet gevonden", +"web services under your control" => "Webdiensten in eigen beheer", "Edit categories" => "Wijzig categorieën", "Add" => "Toevoegen", "Security Warning" => "Beveiligingswaarschuwing", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 8850d50040..67dbe32ff6 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -1,8 +1,4 @@ "Brukaren %s delte ei fil med deg", -"User %s shared a folder with you" => "Brukaren %s delte ei mappe med deg", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Brukaren %s delte fila «%s» med deg. Du kan lasta ho ned her: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Brukaren %s delte mappa «%s» med deg. Du kan lasta ho ned her: %s", "Category type not provided." => "Ingen kategoritype.", "No category to add?" => "Ingen kategori å leggja til?", "This category already exists: %s" => "Denne kategorien finst alt: %s", @@ -104,6 +100,7 @@ "Help" => "Hjelp", "Access forbidden" => "Tilgang forbudt", "Cloud not found" => "Fann ikkje skyen", +"web services under your control" => "Vev tjenester under din kontroll", "Edit categories" => "Endra kategoriar", "Add" => "Legg til", "Security Warning" => "Tryggleiksåtvaring", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index ad400aa650..4440444885 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -74,6 +74,7 @@ "Help" => "Ajuda", "Access forbidden" => "Acces enebit", "Cloud not found" => "Nívol pas trobada", +"web services under your control" => "Services web jos ton contraròtle", "Edit categories" => "Edita categorias", "Add" => "Ajusta", "Security Warning" => "Avertiment de securitat", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 05e0f5ec28..2a6e88b12a 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -1,8 +1,4 @@ "Użytkownik %s udostępnił ci plik", -"User %s shared a folder with you" => "Użytkownik %s udostępnił ci folder", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Użytkownik %s udostępnił ci plik „%s”. Możesz pobrać go stąd: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Użytkownik %s udostępnił ci folder „%s”. Możesz pobrać go stąd: %s", "Category type not provided." => "Nie podano typu kategorii.", "No category to add?" => "Brak kategorii do dodania?", "This category already exists: %s" => "Ta kategoria już istnieje: %s", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 7aef9510be..57e16456ec 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -1,8 +1,4 @@ "O usuário %s compartilhou um arquivo com você", -"User %s shared a folder with you" => "O usuário %s compartilhou uma pasta com você", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O usuário %s compartilhou com você o arquivo \"%s\", que está disponível para download em: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuário %s compartilhou com você a pasta \"%s\", que está disponível para download em: %s", "Category type not provided." => "Tipo de categoria não fornecido.", "No category to add?" => "Nenhuma categoria a adicionar?", "This category already exists: %s" => "Esta categoria já existe: %s", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 2fc81b31a4..b0afff1ad2 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -1,8 +1,4 @@ "O utilizador %s partilhou um ficheiro consigo.", -"User %s shared a folder with you" => "O utilizador %s partilhou uma pasta consigo.", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O utilizador %s partilhou o ficheiro \"%s\" consigo. Está disponível para download aqui: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O utilizador %s partilhou a pasta \"%s\" consigo. Está disponível para download aqui: %s", "Category type not provided." => "Tipo de categoria não fornecido", "No category to add?" => "Nenhuma categoria para adicionar?", "This category already exists: %s" => "A categoria já existe: %s", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index bd1160ab79..4a430fb7d2 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -1,8 +1,4 @@ "Utilizatorul %s a partajat un fișier cu tine", -"User %s shared a folder with you" => "Utilizatorul %s a partajat un dosar cu tine", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Utilizatorul %s a partajat fișierul \"%s\" cu tine. Îl poți descărca de aici: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Utilizatorul %s a partajat dosarul \"%s\" cu tine. Îl poți descărca de aici: %s ", "Category type not provided." => "Tipul de categorie nu este prevazut", "No category to add?" => "Nici o categorie de adăugat?", "This category already exists: %s" => "Această categorie deja există: %s", @@ -104,6 +100,7 @@ "Help" => "Ajutor", "Access forbidden" => "Acces interzis", "Cloud not found" => "Nu s-a găsit", +"web services under your control" => "servicii web controlate de tine", "Edit categories" => "Editează categorii", "Add" => "Adaugă", "Security Warning" => "Avertisment de securitate", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index f88d96f9f9..293ac9ec11 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -1,8 +1,4 @@ "Пользователь %s поделился с вами файлом", -"User %s shared a folder with you" => "Пользователь %s открыл вам доступ к папке", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к файлу \"%s\". Он доступен для загрузки здесь: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к папке \"%s\". Она доступна для загрузки здесь: %s", "Category type not provided." => "Тип категории не предоставлен", "No category to add?" => "Нет категорий для добавления?", "This category already exists: %s" => "Эта категория уже существует: %s", @@ -105,6 +101,7 @@ "Help" => "Помощь", "Access forbidden" => "Доступ запрещён", "Cloud not found" => "Облако не найдено", +"web services under your control" => "веб-сервисы под вашим управлением", "Edit categories" => "Редактировать категрии", "Add" => "Добавить", "Security Warning" => "Предупреждение безопасности", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 21038a93e8..b27f1c6c98 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -66,6 +66,7 @@ "Help" => "උදව්", "Access forbidden" => "ඇතුල් වීම තහනම්", "Cloud not found" => "සොයා ගත නොහැක", +"web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්", "Edit categories" => "ප්‍රභේදයන් සංස්කරණය", "Add" => "එකතු කරන්න", "Security Warning" => "ආරක්ෂක නිවේදනයක්", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index eec2c13147..0cf44ee582 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -1,8 +1,4 @@ "Používateľ %s zdieľa s Vami súbor", -"User %s shared a folder with you" => "Používateľ %s zdieľa s Vami priečinok", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Používateľ %s zdieľa s Vami súbor \"%s\". Môžete si ho stiahnuť tu: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Používateľ %s zdieľa s Vami priečinok \"%s\". Môžete si ho stiahnuť tu: %s", "Category type not provided." => "Neposkytnutý typ kategórie.", "No category to add?" => "Žiadna kategória pre pridanie?", "This category already exists: %s" => "Kategória: %s už existuje.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 2d9930095d..3b539f7fe2 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,8 +1,4 @@ "Uporabnik %s je omogočil souporabo datoteke", -"User %s shared a folder with you" => "Uporabnik %s je omogočil souporabo mape", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Uporabnik %s je omogočil souporabo datoteke \"%s\". Prejmete jo lahko preko povezave: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uporabnik %s je omogočil souporabo mape \"%s\". Prejmete jo lahko preko povezave: %s", "Category type not provided." => "Vrsta kategorije ni podana.", "No category to add?" => "Ali ni kategorije za dodajanje?", "This category already exists: %s" => "Kategorija že obstaja: %s", @@ -104,6 +100,7 @@ "Help" => "Pomoč", "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", +"web services under your control" => "spletne storitve pod vašim nadzorom", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Security Warning" => "Varnostno opozorilo", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 1ffaa42889..f5d7d93376 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -1,8 +1,4 @@ "Përdoruesi %s ndau me ju një skedar", -"User %s shared a folder with you" => "Përdoruesi %s ndau me ju një dosje", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Përdoruesi %s ndau me ju skedarin \"%s\". Ky skedar është gati për shkarkim nga këtu: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Përdoruesi %s ndau me ju dosjen \"%s\". Kjo dosje është gati për shkarkim nga këto: %s", "Category type not provided." => "Mungon tipi i kategorisë.", "No category to add?" => "Asnjë kategori për të shtuar?", "This category already exists: %s" => "Kjo kategori tashmë ekziston: %s", @@ -104,6 +100,7 @@ "Help" => "Ndihmë", "Access forbidden" => "Ndalohet hyrja", "Cloud not found" => "Cloud-i nuk u gjet", +"web services under your control" => "shërbime web nën kontrollin tënd", "Edit categories" => "Ndrysho kategoritë", "Add" => "Shto", "Security Warning" => "Paralajmërim sigurie", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 34a6fefd38..a85e1bfb7e 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -1,6 +1,4 @@ "Корисник %s дели са вама датотеку", -"User %s shared a folder with you" => "Корисник %s дели са вама директоријум", "Category type not provided." => "Врста категорије није унет.", "No category to add?" => "Додати још неку категорију?", "Object type not provided." => "Врста објекта није унета.", @@ -95,6 +93,7 @@ "Help" => "Помоћ", "Access forbidden" => "Забрањен приступ", "Cloud not found" => "Облак није нађен", +"web services under your control" => "веб сервиси под контролом", "Edit categories" => "Измени категорије", "Add" => "Додај", "Security Warning" => "Сигурносно упозорење", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a5399584ae..96e79db700 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -1,8 +1,4 @@ "Användare %s delade en fil med dig", -"User %s shared a folder with you" => "Användare %s delade en mapp med dig", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Användare %s delade filen \"%s\" med dig. Den finns att ladda ner här: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Användare %s delade mappen \"%s\" med dig. Den finns att ladda ner här: %s", "Category type not provided." => "Kategorityp inte angiven.", "No category to add?" => "Ingen kategori att lägga till?", "This category already exists: %s" => "Denna kategori finns redan: %s", @@ -93,6 +89,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "Begäran misslyckades!
    Är du helt säker på att din e-postadress/användarnamn är korrekt?", "You will receive a link to reset your password via Email." => "Du får en länk att återställa ditt lösenord via e-post.", "Username" => "Användarnamn", +"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Dina filer ser ut att vara krypterade. Om du inte har aktiverat återställningsnyckeln så finns finns det inget sätt att få tillbaka dina filer när du väl har återställt lösenordet. Om du inte är säker på vad du ska göra, vänligen kontakta din administratör innan du fortsätter. Vill du verkligen fortsätta?", +"Yes, I really want to reset my password now" => "Ja, jag vill verkligen återställa mitt lösenord nu", "Request reset" => "Begär återställning", "Your password was reset" => "Ditt lösenord har återställts", "To login page" => "Till logginsidan", @@ -105,6 +103,7 @@ "Help" => "Hjälp", "Access forbidden" => "Åtkomst förbjuden", "Cloud not found" => "Hittade inget moln", +"web services under your control" => "webbtjänster under din kontroll", "Edit categories" => "Editera kategorier", "Add" => "Lägg till", "Security Warning" => "Säkerhetsvarning", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index da537bd174..392da561bf 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -1,8 +1,4 @@ "ผู้ใช้งาน %s ได้แชร์ไฟล์ให้กับคุณ", -"User %s shared a folder with you" => "ผู้ใช้งาน %s ได้แชร์โฟลเดอร์ให้กับคุณ", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "ผู้ใช้งาน %s ได้แชร์ไฟล์ \"%s\" ให้กับคุณ และคุณสามารถสามารถดาวน์โหลดไฟล์ดังกล่าวได้จากที่นี่: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ผู้ใช้งาน %s ได้แชร์โฟลเดอร์ \"%s\" ให้กับคุณ และคุณสามารถดาวน์โหลดโฟลเดอร์ดังกล่าวได้จากที่นี่: %s", "Category type not provided." => "ยังไม่ได้ระบุชนิดของหมวดหมู่", "No category to add?" => "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?", "Object type not provided." => "ชนิดของวัตถุยังไม่ได้ถูกระบุ", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 53883df913..0a56af9418 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,8 +1,4 @@ "%s kullanıcısı sizinle bir dosyayı paylaştı", -"User %s shared a folder with you" => "%s kullanıcısı sizinle bir dizini paylaştı", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s kullanıcısı \"%s\" dosyasını sizinle paylaştı. %s adresinden indirilebilir", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s kullanıcısı \"%s\" dizinini sizinle paylaştı. %s adresinden indirilebilir", "Category type not provided." => "Kategori türü desteklenmemektedir.", "No category to add?" => "Eklenecek kategori yok?", "This category already exists: %s" => "Bu kategori zaten mevcut: %s", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 7e7b184d4c..11ebda3af8 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -1,8 +1,4 @@ "Користувач %s поділився файлом з вами", -"User %s shared a folder with you" => "Користувач %s поділився текою з вами", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився файлом \"%s\" з вами. Він доступний для завантаження звідси: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився текою \"%s\" з вами. Він доступний для завантаження звідси: %s", "Category type not provided." => "Не вказано тип категорії.", "No category to add?" => "Відсутні категорії для додавання?", "This category already exists: %s" => "Ця категорія вже існує: %s", @@ -102,6 +98,7 @@ "Help" => "Допомога", "Access forbidden" => "Доступ заборонено", "Cloud not found" => "Cloud не знайдено", +"web services under your control" => "підконтрольні Вам веб-сервіси", "Edit categories" => "Редагувати категорії", "Add" => "Додати", "Security Warning" => "Попередження про небезпеку", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index b27033b80e..0e0489bf33 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -55,6 +55,7 @@ "Help" => "مدد", "Access forbidden" => "پہنچ کی اجازت نہیں", "Cloud not found" => "نہیں مل سکا", +"web services under your control" => "آپ کے اختیار میں ویب سروسیز", "Edit categories" => "زمرہ جات کی تدوین کریں", "Add" => "شامل کریں", "Create an admin account" => "ایک ایڈمن اکاؤنٹ بنائیں", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index b7345a407e..ebe6c7006f 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -1,8 +1,4 @@ "%s chia sẻ tập tin này cho bạn", -"User %s shared a folder with you" => "%s chia sẻ thư mục này cho bạn", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Người dùng %s chia sẻ tập tin \"%s\" cho bạn .Bạn có thể tải tại đây : %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Người dùng %s chia sẻ thư mục \"%s\" cho bạn .Bạn có thể tải tại đây : %s", "Category type not provided." => "Kiểu hạng mục không được cung cấp.", "No category to add?" => "Không có danh mục được thêm?", "This category already exists: %s" => "Danh mục này đã tồn tại: %s", @@ -104,6 +100,7 @@ "Help" => "Giúp đỡ", "Access forbidden" => "Truy cập bị cấm", "Cloud not found" => "Không tìm thấy Clound", +"web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn", "Edit categories" => "Sửa chuyên mục", "Add" => "Thêm", "Security Warning" => "Cảnh bảo bảo mật", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index b4809db551..237f0bb14b 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -1,8 +1,4 @@ "用户 %s 与您分享了一个文件", -"User %s shared a folder with you" => "用户 %s 与您分享了一个文件夹", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用户 %s 与您分享了文件“%s”。点击下载:%s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您分享了文件夹“%s”。点击下载:%s", "Category type not provided." => "未选择分类类型。", "No category to add?" => "没有分类添加了?", "This category already exists: %s" => "此分类已存在:%s", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 28a9f9c7e1..a738e13714 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -1,8 +1,4 @@ "用户 %s 与您共享了一个文件", -"User %s shared a folder with you" => "用户 %s 与您共享了一个文件夹", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s", "Category type not provided." => "未提供分类类型。", "No category to add?" => "没有可添加分类?", "This category already exists: %s" => "此分类已存在:%s", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 836f6d7507..3795d2ea6a 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -1,8 +1,4 @@ "用戶 %s 與您分享了一個檔案", -"User %s shared a folder with you" => "用戶 %s 與您分享了一個資料夾", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s", "Category type not provided." => "未提供分類類型。", "No category to add?" => "沒有可增加的分類?", "This category already exists: %s" => "分類已經存在: %s", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 9b3053aa39..86d627e400 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "Wolk nie gevind" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "webdienste onder jou beheer" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "Teken aan" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 0732b2dee5..1e50b1ae72 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+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" @@ -17,27 +17,27 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Hulp" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Persoonlik" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Instellings" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Gebruikers" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Toepassings" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/af_ZA/user_webdavauth.po b/l10n/af_ZA/user_webdavauth.po index 62bfbe01b3..cf6125d605 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 740cb7b450..8e1b7a6cf2 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "المستخدم %s قام بمشاركة ملف معك" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "المستخدم %s قام بمشاركة مجلد معك" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "المستخدم %s قام بمشاركة الملف \"%s\" معك . الملف متاح للتحميل من هنا : %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "المستخدم %s قام بمشاركة المجلد \"%s\" معك . المجلد متاح للتحميل من هنا : %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "التوصّل محظور" msgid "Cloud not found" msgstr "لم يتم إيجاد" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "خدمات الشبكة تحت سيطرتك" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "عدل الفئات" @@ -611,6 +607,13 @@ msgstr "أدخل" msgid "Alternative Logins" msgstr "اسماء دخول بديلة" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "السابق" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 88a6f57929..921fa165ee 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 73d8a9c972..e22cfb098b 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/ar/files_sharing.po b/l10n/ar/files_sharing.po index b995bc145f..7cbebf8fda 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 17a6649ddb..0a888693fd 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/ar/lib.po b/l10n/ar/lib.po index 9184898d5e..a80e431a19 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "المساعدة" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "شخصي" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "إعدادات" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "المستخدمين" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "التطبيقات" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "المدير" @@ -113,76 +113,76 @@ msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعد msgid "%s set the database host." msgstr "%s ادخل اسم خادم قاعدة البيانات" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "خطأ في قواعد البيانات : \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "الأمر المخالف كان : \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "أسم المستخدم '%s'@'localhost' الخاص بـ MySQL موجود مسبقا" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "احذف اسم المستخدم هذا من الـ MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "أسم المستخدم '%s'@'%%' الخاص بـ MySQL موجود مسبقا" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "احذف اسم المستخدم هذا من الـ MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "الرجاء التحقق من دليل التنصيب." diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 9987d44ff9..aa9b625bab 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "البريد الإلكتروني غير صالح" msgid "Unable to delete group" msgstr "فشل إزالة المجموعة" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "فشل إزالة المستخدم" @@ -324,11 +324,11 @@ msgstr "المزيد" msgid "Less" msgstr "أقل" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "إصدار" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "طوّر من قبل ownCloud مجتمع, الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "أضف تطبيقاتك" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "المزيد من التطبيقات" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "إختر تطبيقاً" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "راجع صفحة التطبيق على apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-ترخيص من قبل " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "حدث" @@ -386,72 +386,72 @@ msgstr "تعقب علة" msgid "Commercial Support" msgstr "دعم تجاري" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "احصل على التطبيقات لمزامنة ملفاتك" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "ابدأ خطوات بداية التشغيل من جديد" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "تم إستهلاك %s من المتوفر %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "كلمة المرور" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "لقد تم تغيير كلمة السر" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "اسم الحساب" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "البريد الإلكترونى" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "اللغة" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 27fc477b48..9a3aca8127 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index 0b90ad151d..fccc6ae2c3 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -25,8 +25,8 @@ msgid "WebDAV Authentication" msgstr "تأكد شخصية ال WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "الرابط: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/be/core.po b/l10n/be/core.po index e90a798ccd..5917b8f8bb 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Папярэдняя" diff --git a/l10n/be/user_webdavauth.po b/l10n/be/user_webdavauth.po index 21fb9c8c46..34e6bd8312 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index eee3680713..2fc08d8360 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "Достъпът е забранен" msgid "Cloud not found" msgstr "облакът не намерен" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Редактиране на категориите" @@ -611,6 +607,13 @@ msgstr "Вход" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "пред." diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 46d9c1c6c6..13edfdc024 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 83b8906cbb..7aaf66ca7b 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/bg_BG/files_sharing.po index dd4ba2709b..9c643375db 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 8d94958f90..dbc5bcf556 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 69a9e525e4..3cc605493f 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Помощ" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Лични" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Настройки" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Потребители" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Приложения" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Админ" @@ -114,76 +114,76 @@ msgstr "%s, не можете да ползвате точки в името н msgid "%s set the database host." msgstr "%s задай хост на базата данни." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Невалидно PostgreSQL потребителско име и/или парола" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Необходимо е да влезете в всъществуващ акаунт или като администратора" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Oracle връзка не можа да се осъществи" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Невалидно MySQL потребителско име и/или парола" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Грешка в базата от данни: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Проблемната команда беше: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL потребителят '%s'@'localhost' вече съществува" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Изтриване на потребителя от MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL потребителят '%s'@'%%' вече съществува." -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Изтриване на потребителя от MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Невалидно Oracle потребителско име и/или парола" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Невалидно MS SQL потребителско име и/или парола: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Моля направете повторна справка с ръководството за инсталиране." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index c88d22ac9d..92deef9275 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Невалиден Email адрес" msgid "Unable to delete group" msgstr "Невъзможно изтриване на група" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Невъзможно изтриване на потребител" @@ -324,11 +324,11 @@ msgstr "Още" msgid "Less" msgstr "По-малко" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Версия" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Добавете Ваше приложение" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Още приложения" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Изберете приложение" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Обновяване" @@ -386,72 +386,72 @@ msgstr "Докладвани грешки" msgid "Commercial Support" msgstr "Платена поддръжка" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Покажи настройките за първоначално зареждане отново" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Парола" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Промяната на паролата не беше извършена" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Текуща парола" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Нова парола" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Промяна на паролата" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Екранно име" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-mail" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Вашия email адрес" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Въведете е-поща за възстановяване на паролата" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Език" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Помогнете с превода" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index a8a9b0ae76..4a7f01d942 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 fb9b137fdf..3b2e883a61 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" -"Last-Translator: Stefan Ilivanov \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "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" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV идентификация" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 9efc9d83c9..3d38bde97c 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "অধিগমনের অনুমতি নেই" msgid "Cloud not found" msgstr "ক্লাউড খুঁজে পাওয়া গেল না" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ক্যাটেগরি সম্পাদনা" @@ -611,6 +607,13 @@ msgstr "প্রবেশ" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "পূর্ববর্তী" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index a30f0a3170..e279cde478 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 32d039ff17..dd4ebb6b3b 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 7471eb1c52..42b714102f 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 211f335034..8b698752be 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/bn_BD/lib.po index 10e1fae5e6..ddc8095653 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "সহায়িকা" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "ব্যক্তিগত" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "ব্যবহারকারী" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "অ্যাপ" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "প্রশাসন" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index d41ab646fb..9e485eed15 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "ই-মেইলটি সঠিক নয়" msgid "Unable to delete group" msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না " -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না " @@ -324,11 +324,11 @@ msgstr "বেশী" msgid "Less" msgstr "কম" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "তৈলী করেছেন ownCloud সম্প্রদায়, যার উৎস কোডটি AGPL এর অধীনে লাইসেন্সকৃত।" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "আপনার অ্যাপটি যোগ করুন" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "আরও অ্যাপ" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "অ্যাপ নির্বাচন করুন" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-লাইসেন্সধারী " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "পরিবর্ধন" @@ -386,72 +386,72 @@ msgstr "বাগট্র্যাকার" msgid "Commercial Support" msgstr "বাণিজ্যিক সাপোর্ট" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "কূটশব্দ" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "বর্তমান কূটশব্দ" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "নতুন কূটশব্দ" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "ইমেইল" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 5b1e57a644..dd02b9d276 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 1768f6474f..c4bf197ff7 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL:http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 6caa7bdae3..0d0f21131b 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -263,7 +244,7 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "" +msgstr "Podijeli" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" @@ -480,13 +461,28 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "" +msgstr "Dodaj" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 3a9f98bd28..bad4a3f4a8 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 21:41+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Podijeli" #: js/fileactions.js:126 msgid "Delete permanently" @@ -189,11 +189,11 @@ msgstr "" #: js/files.js:877 templates/index.php:69 msgid "Name" -msgstr "" +msgstr "Ime" #: js/files.js:878 templates/index.php:80 msgid "Size" -msgstr "" +msgstr "Veličina" #: js/files.js:879 templates/index.php:82 msgid "Modified" @@ -257,7 +257,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Spasi" #: templates/index.php:7 msgid "New" @@ -269,7 +269,7 @@ msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "Fasikla" #: templates/index.php:14 msgid "From link" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index 97638318fd..a93b63ecb9 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/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-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -62,7 +62,7 @@ msgstr "" #: js/settings-admin.js:11 msgid "Saving..." -msgstr "" +msgstr "Spašavam..." #: templates/invalid_private_key.php:5 msgid "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index eef2de962a..cbdfc2891e 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 21:41+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:176 templates/index.php:17 msgid "Name" -msgstr "" +msgstr "Ime" #: js/trash.js:177 templates/index.php:27 msgid "Deleted" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index b38b4c812b..28ed4328d5 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 21:41+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" #: js/personal.js:118 msgid "Saving..." -msgstr "" +msgstr "Spašavam..." #: js/users.js:47 msgid "deleted" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:114 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:117 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -443,15 +443,15 @@ msgstr "" msgid "Language" msgstr "" -#: templates/personal.php:98 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:103 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/bs/user_webdavauth.po b/l10n/bs/user_webdavauth.po index b082622b17..93f72af765 100644 --- a/l10n/bs/user_webdavauth.po +++ b/l10n/bs/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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 21:41+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 30c4ba6b0d..0b2fb73dc3 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -21,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "L'usuari %s ha compartit un fitxer amb vós" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "L'usuari %s ha compartit una carpeta amb vós" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "L'usuari %s ha compartit el fitxer \"%s\" amb vós. Està disponible per a la descàrrega a: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descàrrega a: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -482,6 +463,21 @@ msgstr "Accés prohibit" msgid "Cloud not found" msgstr "No s'ha trobat el núvol" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edita les categories" @@ -613,6 +609,13 @@ msgstr "Inici de sessió" msgid "Alternative Logins" msgstr "Acreditacions alternatives" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index bad7f54ff8..aac3455559 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 4202bcede8..ab38719c5f 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index e2777b8716..89b32ab719 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/ca/files_trashbin.po index f36679d87f..8e9b59c8d8 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/ca/lib.po index 0413ebe265..0a034d361c 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Ajuda" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personal" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Configuració" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Usuaris" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplicacions" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administració" @@ -114,76 +114,76 @@ msgstr "%s no podeu usar punts en el nom de la base de dades" msgid "%s set the database host." msgstr "%s establiu l'ordinador central de la base de dades." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya PostgreSQL no vàlids" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Heu d'escriure un compte existent o el d'administrador." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "No s'ha pogut establir la connexió Oracle" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "L'ordre en conflicte és: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "L'usuari MySQL '%s'@'localhost' ja existeix." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Elimina aquest usuari de MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "L'usuari MySQL '%s'@'%%' ja existeix" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Elimina aquest usuari de MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 4aa5099f54..8f0c16a184 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "El correu electrònic no és vàlid" msgid "Unable to delete group" msgstr "No es pot eliminar el grup" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "No es pot eliminar l'usuari" @@ -326,11 +326,11 @@ msgstr "Més" msgid "Less" msgstr "Menys" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versió" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Afegiu la vostra aplicació" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Més aplicacions" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Seleccioneu una aplicació" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-propietat de " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Actualitza" @@ -388,72 +388,72 @@ msgstr "Seguiment d'errors" msgid "Commercial Support" msgstr "Suport comercial" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Obtén les aplicacions per sincronitzar fitxers" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Torna a mostrar l'assistent de primera execució" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Heu utilitzat %s d'un total disponible de %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Obtén les aplicacions per sincronitzar fitxers" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Torna a mostrar l'assistent de primera execució" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Nom a mostrar" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Idioma" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 338f63d885..9c5766926e 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index 66136ea54a..419fe4b669 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "Autenticació WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index e0b689f6ce..45686d4a14 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -21,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Uživatel %s s vámi sdílí soubor" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Uživatel %s s vámi sdílí složku" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Uživatel %s s vámi sdílí složku \"%s\". Můžete ji stáhnout zde: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -428,11 +409,11 @@ msgid "" "key there will be no way to get your data back once the password was " "resetted. If you are not sure what to do, please contact your administrator " "first before continue. Do you really want to continue?" -msgstr "" +msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč obnovy, neexistuje způsob jak získat po obnově hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ano, opravdu si nyní přeji obnovit své heslo" #: lostpassword/templates/lostpassword.php:29 msgid "Request reset" @@ -482,6 +463,21 @@ msgstr "Přístup zakázán" msgid "Cloud not found" msgstr "Cloud nebyl nalezen" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Upravit kategorie" @@ -613,6 +609,13 @@ msgstr "Přihlásit" msgid "Alternative Logins" msgstr "Alternativní přihlášení" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "předchozí" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 1360e93381..50d7f22e68 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 40011c68e6..47c4307b1b 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,20 +47,20 @@ msgstr "Nelze změnit heslo. Pravděpodobně nebylo stávající heslo zadáno s #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Heslo soukromého klíče úspěšně aktualizováno." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně." #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "Váš soukromý klíč není platný. Možná bylo vaše heslo změněno z venku. Můžete aktualizovat heslo soukromého klíče v osobním nastavení pro opětovné získání přístupu k souborům" #: js/settings-admin.js:11 msgid "Saving..." @@ -145,13 +145,13 @@ msgstr "" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Povolit obnovu hesla:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index d71735e460..4227fdd775 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 6edc033c0f..ae62015fe4 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 704051fb67..b4e984640c 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index c5be0d3ff8..86c6b7539a 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Nápověda" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Osobní" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Nastavení" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Uživatelé" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplikace" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administrace" @@ -114,76 +114,76 @@ msgstr "V názvu databáze %s nesmíte používat tečky." msgid "%s set the database host." msgstr "Zadejte název počítače s databází %s." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Uživatelské jméno, či heslo PostgreSQL není platné" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadat existující účet, či správce." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Spojení s Oracle nemohlo být navázáno" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Uživatelské jméno, či heslo MySQL není platné" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba DB: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Podezřelý příkaz byl: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Uživatel '%s'@'localhost' již v MySQL existuje." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Zahodit uživatele z MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Uživatel '%s'@'%%' již v MySQL existuje" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Zahodit uživatele z MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Uživatelské jméno, či heslo Oracle není platné" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Uživatelské jméno, či heslo MSSQL není platné: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 27e39b977a..7388ae85b5 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Neplatný e-mail" msgid "Unable to delete group" msgstr "Nelze smazat skupinu" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Nelze smazat uživatele" @@ -325,11 +325,11 @@ msgstr "Více" msgid "Less" msgstr "Méně" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Verze" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Přidat Vaší aplikaci" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Více aplikací" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Vyberte aplikaci" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Více na stránce s aplikacemi na apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licencováno " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Aktualizovat" @@ -387,72 +387,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Placená podpora" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Získat aplikace pro synchronizaci vašich souborů" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Znovu zobrazit průvodce prvním spuštěním" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Používáte %s z %s dostupných" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Získat aplikace pro synchronizaci vašich souborů" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Znovu zobrazit průvodce prvním spuštěním" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Vaše heslo nelze změnit" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované jméno" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-mail" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 164c9e7976..66af31d702 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 420758436b..8e15121305 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "Ověření WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 8afd87394c..b061c4dbca 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Rhannodd defnyddiwr %s ffeil â chi" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -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 "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 "Rhannodd defnyddiwr %s blygell \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Mynediad wedi'i wahardd" msgid "Cloud not found" msgstr "Methwyd canfod cwmwl" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Golygu categorïau" @@ -612,6 +608,13 @@ msgstr "Mewngofnodi" msgid "Alternative Logins" msgstr "Mewngofnodiadau Amgen" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "blaenorol" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 248a4552ca..e197fcbd0f 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index db2ab484c9..ea87e65398 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index b78faea2bd..91212135d1 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 5c3f290a67..a0e4f49251 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 06daabdd76..769ead91b7 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+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" @@ -17,27 +17,27 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Cymorth" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personol" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Gosodiadau" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Defnyddwyr" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Pecynnau" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Gweinyddu" @@ -113,76 +113,76 @@ msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata" msgid "%s set the database host." msgstr "%s gosod gwesteiwr y gronfa ddata." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Enw a/neu gyfrinair PostgreSQL annilys" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Enw a/neu gyfrinair MySQL annilys" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Gwall DB: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Gollwng y defnyddiwr hwn o MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Gollwng y defnyddiwr hwn o MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Enw a/neu gyfrinair Oracle annilys" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Gwiriwch y canllawiau gosod eto." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index f84626907a..6fe2d2d907 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Cyfrinair" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Cyfrinair newydd" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-bost" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 0dc7e5dc83..846e20673a 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_webdavauth.po b/l10n/cy_GB/user_webdavauth.po index 2f567efac8..d034799f18 100644 --- a/l10n/cy_GB/user_webdavauth.po +++ b/l10n/cy_GB/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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/da/core.po b/l10n/da/core.po index ba8f83f0f2..86d1e6dc5b 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -21,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Bruger %s delte en fil med dig" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Bruger %s delte en mappe med dig" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -482,6 +463,21 @@ msgstr "Adgang forbudt" msgid "Cloud not found" msgstr "Sky ikke fundet" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "Webtjenester under din kontrol" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Rediger kategorier" @@ -613,6 +609,13 @@ msgstr "Log ind" msgid "Alternative Logins" msgstr "Alternative logins" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/da/files.po b/l10n/da/files.po index fd930c1c85..5e2cac3f70 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-13 12:16+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Ole Holm Frandsen \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 4406ce7b6c..c5b73d5363 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/da/files_sharing.po b/l10n/da/files_sharing.po index 65e59d519c..e61dc2a39f 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/da/files_trashbin.po b/l10n/da/files_trashbin.po index 537aa7e9cc..af028f0a94 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/da/lib.po b/l10n/da/lib.po index 32ecd7b028..e5ef20904f 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-13 12:19+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -114,76 +114,76 @@ msgstr "%s du må ikke bruge punktummer i databasenavnet." msgid "%s set the database host." msgstr "%s sæt database værten." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt." -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Oracle forbindelsen kunne ikke etableres" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt." -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Databasefejl: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fejlende kommando var: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL brugeren '%s'@'localhost' eksisterer allerede." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Slet denne bruger fra MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL brugeren '%s'@'%%' eksisterer allerede." -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Slet denne bruger fra MySQL" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt." -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index e271d872b9..adcd6174e3 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-13 12:18+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index f3657f500e..995c8ac4e1 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 9c0bc594ab..5a46dae8fe 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV-godkendelse" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/de/core.po b/l10n/de/core.po index d489e6a4cd..3636b2b812 100644 --- a/l10n/de/core.po +++ b/l10n/de/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -23,27 +23,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Der Nutzer %s hat eine Datei mit Dir geteilt" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "%s hat ein Verzeichnis mit Dir geteilt" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "%s hat die Datei \"%s\" mit Dir geteilt. Sie ist hier zum Download verfügbar: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "%s hat den Ordner \"%s\" mit Dir geteilt. Er ist hier zum Download verfügbar: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -484,6 +465,21 @@ msgstr "Zugriff verboten" msgid "Cloud not found" msgstr "Cloud nicht gefunden" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "Web-Services unter Deiner Kontrolle" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorien bearbeiten" @@ -615,6 +611,13 @@ msgstr "Einloggen" msgid "Alternative Logins" msgstr "Alternative Logins" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" diff --git a/l10n/de/files.po b/l10n/de/files.po index 53c74030db..5a172d269c 100644 --- a/l10n/de/files.po +++ b/l10n/de/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: ninov \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 2ad51443ea..bc0716ec0d 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index e16b2760f4..0f29452ce3 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+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 b31d8481e2..9d50fbf725 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 122f5804cd..fd94af809c 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -19,27 +19,27 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Hilfe" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Persönlich" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Einstellungen" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Benutzer" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Apps" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administration" @@ -115,76 +115,76 @@ msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" msgid "%s set the database host." msgstr "%s setze den Datenbank-Host" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fehlerhafter Befehl war: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Lösche diesen Benutzer von MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Lösche diesen Benutzer aus MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Password ungültig: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfe die Installationsanleitungen." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 271c738d01..461e5e1cf0 100644 --- a/l10n/de/settings.po +++ b/l10n/de/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -61,7 +61,7 @@ msgstr "Ungültige E-Mail Adresse" msgid "Unable to delete group" msgstr "Gruppe konnte nicht gelöscht werden" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Benutzer konnte nicht gelöscht werden" @@ -327,11 +327,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Füge Deine Anwendung hinzu" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Weitere Anwendungen" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Wähle eine Anwendung aus" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Weitere Anwendungen findest Du auf apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-lizenziert von " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Aktualisierung durchführen" @@ -389,72 +389,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Kommerzieller Support" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Lade die Apps zur Synchronisierung Deiner Daten herunter" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Erstinstallation erneut durchführen" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Du verwendest %s der verfügbaren %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Lade die Apps zur Synchronisierung Deiner Daten herunter" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Erstinstallation erneut durchführen" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Sprache" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 69e53882b1..17eb29eaab 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 ff18551f62..47b68e0fd1 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV Authentifikation" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index ac56eb0940..0a95dd4316 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -23,27 +23,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Der Nutzer %s hat eine Datei mit Ihnen geteilt" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "%s hat einen Ordner mit Ihnen geteilt" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "%s hat die Datei \"%s\" mit Ihnen geteilt. Sie ist hier zum Download verfügbar: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "%s hat den Ordner \"%s\" mit Ihnen geteilt. Er ist hier zum Download verfügbar: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -484,6 +465,21 @@ msgstr "Zugriff verboten" msgid "Cloud not found" msgstr "Cloud wurde nicht gefunden" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "Web-Services unter Ihrer Kontrolle" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorien ändern" @@ -615,6 +611,13 @@ msgstr "Einloggen" msgid "Alternative Logins" msgstr "Alternative Logins" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ab8b5fadfb..990d9f00a2 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: a.tangemann \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 c22e70ce0b..a417e3dd26 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index d965b29a4a..72d4c2c142 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+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 8de7dd8684..692a966f28 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index a1de071d05..cc676a31db 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Hilfe" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Persönlich" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Einstellungen" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Benutzer" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Apps" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administrator" @@ -114,76 +114,76 @@ msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" msgid "%s set the database host." msgstr "%s setze den Datenbank-Host" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fehlerhafter Befehl war: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Lösche diesen Benutzer aus MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Lösche diesen Benutzer aus MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index e83776b2f4..f4926dad38 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -62,7 +62,7 @@ msgstr "Ungültige E-Mail-Adresse" msgid "Unable to delete group" msgstr "Die Gruppe konnte nicht gelöscht werden" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Der Benutzer konnte nicht gelöscht werden" @@ -328,11 +328,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Fügen Sie Ihre Anwendung hinzu" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Weitere Anwendungen" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Wählen Sie eine Anwendung aus" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-lizenziert von " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Update durchführen" @@ -390,72 +390,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Kommerzieller Support" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Den Einrichtungsassistenten erneut anzeigen" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Den Einrichtungsassistenten erneut anzeigen" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Sprache" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index b7b54c71e0..f0a767b5d6 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: traductor \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 44670121a4..31277b4628 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV-Authentifizierung" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/el/core.po b/l10n/el/core.po index dc67f52271..a0dc1318c1 100644 --- a/l10n/el/core.po +++ b/l10n/el/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -22,27 +22,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Ο χρήστης %s διαμοιράστηκε ένα φάκελο με εσάς" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Ο χρήστης %s διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -483,6 +464,21 @@ msgstr "Δεν επιτρέπεται η πρόσβαση" msgid "Cloud not found" msgstr "Δεν βρέθηκε νέφος" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Επεξεργασία κατηγοριών" @@ -614,6 +610,13 @@ msgstr "Είσοδος" msgid "Alternative Logins" msgstr "Εναλλακτικές Συνδέσεις" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "προηγούμενο" diff --git a/l10n/el/files.po b/l10n/el/files.po index 2f569777b3..0f2f21822a 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Efstathios Iosifidis \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 35aaea8e90..004720598f 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 46973c1f60..b3e82b2aa4 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/el/files_trashbin.po b/l10n/el/files_trashbin.po index bd81040073..0eb87e5d6c 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/el/lib.po b/l10n/el/lib.po index 7969c08956..5ef924bc8a 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Βοήθεια" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Προσωπικά" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Χρήστες" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Εφαρμογές" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Διαχειριστής" @@ -113,76 +113,76 @@ msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στ msgid "%s set the database host." msgstr "%s ρυθμίση του κεντρικόυ υπολογιστή βάσης δεδομένων. " -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Απόρριψη αυτού του χρήστη από την MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Ο χρήστης '%s'@'%%' της MySQL υπάρχει ήδη" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Απόρριψη αυτού του χρήστη από την MySQL" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 2bc54778f8..3c9cd3b650 100644 --- a/l10n/el/settings.po +++ b/l10n/el/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -60,7 +60,7 @@ msgstr "Μη έγκυρο email" msgid "Unable to delete group" msgstr "Αδυναμία διαγραφής ομάδας" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Αδυναμία διαγραφής χρήστη" @@ -326,11 +326,11 @@ msgstr "Περισσότερα" msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Πρόσθεστε τη Δικιά σας Εφαρμογή" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Περισσότερες Εφαρμογές" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Επιλέξτε μια Εφαρμογή" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-άδεια από " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Ενημέρωση" @@ -388,72 +388,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Εμπορική Υποστήριξη" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Λήψη της εφαρμογής για συγχρονισμό των αρχείων σας" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Προβολή Πρώτης Εκτέλεσης Οδηγού πάλι" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Χρησιμοποιήσατε %s από διαθέσιμα %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Συνθηματικό" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Το συνθηματικό σας έχει αλλάξει" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Όνομα εμφάνισης" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Ηλ. ταχυδρομείο" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index d5a705b7a4..a72ca9c73e 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index 3a75e3ceae..6076410065 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgid "WebDAV Authentication" msgstr "Αυθεντικοποίηση μέσω WebDAV " #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index a5f01d366a..ad13bf3185 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -20,26 +20,7 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "User %s shared a file with you" - -#: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -481,6 +462,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -612,6 +608,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 9df18ea3ed..bb2d631f28 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 54a58af87a..68dd194f52 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/user_webdavauth.po b/l10n/en@pirate/user_webdavauth.po index 055e077694..22b86eac19 100644 --- a/l10n/en@pirate/user_webdavauth.po +++ b/l10n/en@pirate/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-05-25 02:01+0200\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 69311a25ad..9fd8d7e651 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "La uzanto %s kunhavigis dosieron kun vi" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "La uzanto %s kunhavigis dosierujon kun vi" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "La uzanto %s kunhavigis la dosieron “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "La uzanto %s kunhavigis la dosierujon “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Aliro estas malpermesata" msgid "Cloud not found" msgstr "La nubo ne estas trovita" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "TTT-servoj regataj de vi" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Redakti kategoriojn" @@ -612,6 +608,13 @@ msgstr "Ensaluti" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "maljena" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index a0b27181a4..83fd2741e7 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 9be001b0d6..407d841c9b 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/eo/files_sharing.po b/l10n/eo/files_sharing.po index 7db0e1caa9..5c688f14ac 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 62d64f0e22..f8e726e0ca 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/eo/lib.po b/l10n/eo/lib.po index eaf3a900c6..20673de28f 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Helpo" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Persona" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Agordo" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Uzantoj" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplikaĵoj" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administranto" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 33b46e2ddb..9256e1b3d3 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Nevalida retpoŝtadreso" msgid "Unable to delete group" msgstr "Ne eblis forigi la grupon" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Ne eblis forigi la uzanton" @@ -324,11 +324,11 @@ msgstr "Pli" msgid "Less" msgstr "Malpli" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Eldono" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Ellaborita de la komunumo de ownCloud, la fontokodo publikas laŭ la permesilo AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Aldonu vian aplikaĵon" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Pli da aplikaĵoj" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Elekti aplikaĵon" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-permesilhavigita de " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Ĝisdatigi" @@ -386,72 +386,72 @@ msgstr "Cimoraportejo" msgid "Commercial Support" msgstr "Komerca subteno" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Vi uzas %s el la haveblaj %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index c97530b813..746a2452dd 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index aa3b42b411..c7675bf387 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV-aŭtentigo" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/es/core.po b/l10n/es/core.po index 2cbc07637c..23a16692f7 100644 --- a/l10n/es/core.po +++ b/l10n/es/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -23,27 +23,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "El usuario %s ha compartido un archivo contigo." - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "El usuario %s ha compartido una carpeta contigo." - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s." - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s." +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -484,6 +465,21 @@ msgstr "Acceso denegado" msgid "Cloud not found" msgstr "No se ha encontrado la nube" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "Servicios web bajo su control" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorías" @@ -615,6 +611,13 @@ msgstr "Entrar" msgid "Alternative Logins" msgstr "Nombre de usuarios alternativos" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es/files.po b/l10n/es/files.po index c464efc0a9..9b94d91b4f 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Art O. Pal \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 13a77bad72..a3be10d226 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/es/files_sharing.po index eea2fe8af6..a4b2fba48c 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/es/files_trashbin.po index 489ca41f18..b732b5dfdf 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/es/lib.po index c534d72bcc..d9a2c684f6 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Ayuda" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personal" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Ajustes" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Usuarios" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplicaciones" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administración" @@ -114,76 +114,76 @@ msgstr "%s no se puede utilizar puntos en el nombre de la base de datos" msgid "%s set the database host." msgstr "%s ingresar el host de la base de datos." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Usuario y/o contraseña de PostgreSQL no válidos" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "No se pudo establecer la conexión a Oracle" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña de MySQL no válidos" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Comando infractor: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Usuario MySQL '%s'@'localhost' ya existe." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Eliminar este usuario de MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Usuario MySQL '%s'@'%%' ya existe" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Eliminar este usuario de MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Usuario y/o contraseña de Oracle no válidos" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 924423ff34..073c110b1d 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-13 20:21+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: saskarip\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index c7cd6fd884..dd5d2c5861 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index 9b520ddeaa..f6ab60876c 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -25,8 +25,8 @@ msgid "WebDAV Authentication" msgstr "Autenticación de WevDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index a65823e76a..8cf6fbf766 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "El usurario %s compartió un archivo con vos." - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "El usurario %s compartió una carpeta con vos." - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Acceso denegado" msgid "Cloud not found" msgstr "No se encontró ownCloud" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorías" @@ -612,6 +608,13 @@ msgstr "Entrar" msgid "Alternative Logins" msgstr "Nombre alternativos de usuarios" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index c1cbed4a1e..6df041c248 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Agustin Ferrario \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 101e14a78f..a7dfbddca4 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 11:54+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 154015a0b2..f32e685599 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-13 14:36+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 310e8a606b..3f8df062da 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 1d738ef558..fe1e83f89a 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/es_AR/lib.po index e33ad226b1..41834bca1e 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-13 14:32+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -114,76 +114,76 @@ msgstr "%s no puede usar puntos en el nombre de la Base de Datos" msgid "%s set the database host." msgstr "%s Especifique la dirección de la Base de Datos" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Nombre de usuario o contraseña de PostgradeSQL no válido." -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Debe ingresar una cuenta existente o el administrador" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "No fue posible establecer la conexión a Oracle" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña MySQL no válido" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "El comando no comprendido es: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Usuario MySQL '%s'@'localhost' ya existente" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Borrar este usuario de MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Usuario MySQL '%s'@'%%' ya existente" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Borrar este usuario de MySQL" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "El nombre de usuario y contraseña no son válidos" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nombre de usuario y contraseña de MS SQL no son válidas: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, comprobá nuevamente la guía de instalación." diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index a7e332f694..9c73b8728c 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-13 14:31+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 895a57f888..87a4029140 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-13 14:38+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index 752a64616b..331ef231ba 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -25,8 +25,8 @@ msgid "WebDAV Authentication" msgstr "Autenticación de WevDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 693dd90479..2d69361d43 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -21,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Kasutaja %s jagas sinuga faili" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Kasutaja %s jagas Sinuga kausta." - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Kasutaja %s jagas sinuga faili \"%s\". See on allalaadimiseks saadaval siin: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Kasutaja %s jagas sinuga kausta \"%s\". See on allalaadimiseks saadaval siin: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -482,6 +463,21 @@ msgstr "Ligipääs on keelatud" msgid "Cloud not found" msgstr "Pilve ei leitud" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "veebitenused sinu kontrolli all" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Muuda kategooriaid" @@ -613,6 +609,13 @@ msgstr "Logi sisse" msgid "Alternative Logins" msgstr "Alternatiivsed sisselogimisviisid" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "eelm" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index a3b7d28b1c..a3098219dd 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 520e259b8c..2dcf31ea79 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 81a1fa5309..f8e917fc36 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 7e2f05b4fe..441dd5cd08 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 083478a8b0..4a2b64ac13 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,27 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Abiinfo" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Isiklik" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Seaded" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Kasutajad" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Rakendused" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -115,76 +115,76 @@ msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud" msgid "%s set the database host." msgstr "%s määra andmebaasi server." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL kasutajatunnus ja/või parool pole õiged" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Sisesta kas juba olemasolev konto või administrator." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Ei suuda luua ühendust Oracle baasiga" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL kasutajatunnus ja/või parool pole õiged" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Andmebaasi viga: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Tõrkuv käsk oli: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL kasutaja '%s'@'localhost' on juba olemas." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Kustuta see kasutaja MySQL-ist" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL kasutaja '%s'@'%%' on juba olemas" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Kustuta see kasutaja MySQL-ist." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle kasutajatunnus ja/või parool pole õiged" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kasutajatunnus ja/või parool pole õiged: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Palun tutvu veelkord paigalduse juhenditega." diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 4f81648e52..f4ac45e73f 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "Vigane e-post" msgid "Unable to delete group" msgstr "Grupi kustutamine ebaõnnestus" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Kasutaja kustutamine ebaõnnestus" @@ -326,11 +326,11 @@ msgstr "Rohkem" msgid "Less" msgstr "Vähem" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versioon" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Arendatud ownCloud kogukonna poolt. Lähtekood on avaldatud ja kaetud AGPL litsentsiga." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Lisa oma rakendus" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Veel rakendusi" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Vali programm" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-litsenseeritud " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Uuenda" @@ -388,72 +388,72 @@ msgstr "Vigade nimekiri" msgid "Commercial Support" msgstr "Tasuline kasutajatugi" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Hangi rakendusi failide sünkroniseerimiseks" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Näita veelkord Esmase Käivituse Juhendajat" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Kasutad %s saadavalolevast %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Hangi rakendusi failide sünkroniseerimiseks" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Näita veelkord Esmase Käivituse Juhendajat" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parool" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Näidatav nimi" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-post" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Keel" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Kasuta seda aadressi ühendamaks oma ownCloudi failihalduriga" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 2ce1e0e8ec..4edfe0470e 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index ee2a1e41f4..21fbf41a04 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "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" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV autentimine" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index e303f0dc29..c6875db389 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "%s erabiltzaileak zurekin fitxategi bat elkarbanatu du " - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "%s erabiltzaileak zurekin karpeta bat elkarbanatu du " - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "%s erabiltzaileak \"%s\" fitxategia zurekin elkarbanatu du. Hemen duzu eskuragarri: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "%s erabiltzaileak \"%s\" karpeta zurekin elkarbanatu du. Hemen duzu eskuragarri: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "Sarrera debekatuta" msgid "Cloud not found" msgstr "Ez da hodeia aurkitu" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "web zerbitzuak zure kontrolpean" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editatu kategoriak" @@ -611,6 +607,13 @@ msgstr "Hasi saioa" msgid "Alternative Logins" msgstr "Beste erabiltzaile izenak" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "aurrekoa" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 1e832a1d67..3f75e5eb8a 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 e67b8acbf6..c23fcb85cf 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/eu/files_sharing.po index 478acbb3a4..133f8e466c 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/eu/files_trashbin.po index 7dbb6a4bee..e2207d2677 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/eu/lib.po index 5dc078f41d..50c3dffa86 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Laguntza" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Pertsonala" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Ezarpenak" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Erabiltzaileak" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplikazioak" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -113,76 +113,76 @@ msgstr "%s ezin duzu punturik erabili datu basearen izenean." msgid "%s set the database host." msgstr "%s sartu datu basearen hostalaria." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL erabiltzaile edota pasahitza ez dira egokiak." -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL erabiltzaile edota pasahitza ez dira egokiak." -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "DB errorea: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Errorea komando honek sortu du: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL '%s'@'localhost' erabiltzailea dagoeneko existitzen da." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Ezabatu erabiltzaile hau MySQLtik" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL '%s'@'%%' erabiltzailea dagoeneko existitzen da" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Ezabatu erabiltzaile hau MySQLtik." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle erabiltzaile edota pasahitza ez dira egokiak." -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL erabiltzaile izena edota pasahitza ez dira egokiak: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Mesedez begiratu instalazio gidak." diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index bc18dde666..6cb2360246 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Baliogabeko eposta" msgid "Unable to delete group" msgstr "Ezin izan da taldea ezabatu" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Ezin izan da erabiltzailea ezabatu" @@ -324,11 +324,11 @@ msgstr "Gehiago" msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "ownCloud komunitateak garatuta, itubruru kodeaAGPL lizentziarekin banatzen da." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Gehitu zure aplikazioa" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "App gehiago" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Aukeratu programa bat" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Ikusi programen orria apps.owncloud.com en" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-lizentziatua " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Eguneratu" @@ -386,72 +386,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Babes komertziala" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Lortu aplikazioak zure fitxategiak sinkronizatzeko" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Erakutsi berriz Lehenengo Aldiko Morroia" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %setatik" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Lortu aplikazioak zure fitxategiak sinkronizatzeko" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Erakutsi berriz Lehenengo Aldiko Morroia" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Zere pasahitza aldatu da" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Bistaratze Izena" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-posta" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 6800daf9f4..2025951a77 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+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 c9297b3ff2..03f85ec7ec 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV Autentikazioa" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 938be37292..dcf6fa936c 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "کاربر %s یک پرونده را با شما به اشتراک گذاشته است." - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "کاربر %s یک پوشه را با شما به اشتراک گذاشته است." - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "کاربر %s پرونده \"%s\" را با شما به اشتراک گذاشته است. پرونده برای دانلود اینجاست : %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "کاربر %s پوشه \"%s\" را با شما به اشتراک گذاشته است. پرونده برای دانلود اینجاست : %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "اجازه دسترسی به مناطق ممنوعه را ندارید" msgid "Cloud not found" msgstr "پیدا نشد" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "سرویس های تحت وب در کنترل شما" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ویرایش گروه" @@ -611,6 +607,13 @@ msgstr "ورود" msgid "Alternative Logins" msgstr "ورود متناوب" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "بازگشت" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 0c93f45a7a..c4a93b7b4c 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 88c7de3556..698af32ac7 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/fa/files_sharing.po index d16cdbd714..7bd4d424c6 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/fa/files_trashbin.po index b09c59d670..21e8e67a7a 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/fa/lib.po index 64b80e21f2..b4ce54d987 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "راه‌نما" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "شخصی" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "تنظیمات" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "کاربران" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr " برنامه ها" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "مدیر" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 13474ba822..e580420023 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "ایمیل غیر قابل قبول" msgid "Unable to delete group" msgstr "حذف گروه امکان پذیر نیست" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "حذف کاربر امکان پذیر نیست" @@ -324,11 +324,11 @@ msgstr "بیش‌تر" msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "نسخه" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "توسعه یافته به وسیله ی انجمن ownCloud, the کد اصلی مجاز زیر گواهی AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "برنامه خود را بیافزایید" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "برنامه های بیشتر" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "یک برنامه انتخاب کنید" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-مجاز از طرف " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "به روز رسانی" @@ -386,72 +386,72 @@ msgstr "ردیاب باگ " msgid "Commercial Support" msgstr "پشتیبانی تجاری" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "برنامه ها را دریافت کنید تا فایل هایتان را همگام سازید" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "راهبری کمکی اجرای اول را دوباره نمایش بده" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "شما استفاده کردید از %s از میزان در دسترس %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "گذرواژه" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "رمز عبور شما تغییر یافت" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "نام نمایشی" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "ایمیل" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "زبان" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index e3df271ba1..c7259232b5 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+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 f89e5c1feb..1310a3b5e6 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 4a8e1dd0a5..dea7f6555a 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Käyttäjä %s jakoi tiedoston kanssasi" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Käyttäjä %s jakoi kansion kanssasi" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Käyttäjä %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa täältä: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Pääsy estetty" msgid "Cloud not found" msgstr "Pilveä ei löydy" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "verkkopalvelut hallinnassasi" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Muokkaa luokkia" @@ -612,6 +608,13 @@ msgstr "Kirjaudu sisään" msgid "Alternative Logins" msgstr "Vaihtoehtoiset kirjautumiset" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "edellinen" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 56c8913ede..7bd30bd96e 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 3cf2d0347c..68f881f293 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/fi_FI/files_sharing.po index 01f2e8c1a0..c0ede15d1c 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 83002ab4f7..a9c42c9343 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/fi_FI/lib.po index 979b8f8b6d..bcef387026 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Ohje" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Asetukset" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Käyttäjät" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Sovellukset" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Ylläpitäjä" @@ -114,76 +114,76 @@ msgstr "%s et voi käyttää pisteitä tietokannan nimessä" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Oracle-yhteyttä ei voitu muodostaa" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL:n käyttäjätunnus ja/tai salasana on väärin" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Tietokantavirhe: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL-käyttäjä '%s'@'localhost' on jo olemassa." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Pudota tämä käyttäjä MySQL:stä" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL-käyttäjä '%s'@'%%' on jo olemassa" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Pudota tämä käyttäjä MySQL:stä." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Lue tarkasti asennusohjeet." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index cf013b95c9..e24b48f8ac 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "Virheellinen sähköposti" msgid "Unable to delete group" msgstr "Ryhmän poisto epäonnistui" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Käyttäjän poisto epäonnistui" @@ -325,11 +325,11 @@ msgstr "Enemmän" msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versio" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Lisää sovelluksesi" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Lisää sovelluksia" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Valitse sovellus" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-lisensoija " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Päivitä" @@ -387,72 +387,72 @@ msgstr "Ohjelmistovirheiden jäljitys" msgid "Commercial Support" msgstr "Kaupallinen tuki" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Näytä ensimmäisen käyttökerran avustaja uudelleen" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Käytössäsi on %s/%s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Näytä ensimmäisen käyttökerran avustaja uudelleen" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Salasana" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Näyttönimi" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Sähköpostiosoite" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Kieli" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 4bf4ca1581..5eee779302 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index 0361107193..f38e5770f3 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV-todennus" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "Osoite: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index f6b49ec2dc..f86db70919 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -22,27 +22,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "L'utilisateur %s a partagé un fichier avec vous" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "L'utilsateur %s a partagé un dossier avec vous" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "L'utilisateur %s a partagé le dossier \"%s\" avec vous. Il est disponible au téléchargement ici : %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -483,6 +464,21 @@ msgstr "Accès interdit" msgid "Cloud not found" msgstr "Introuvable" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "services web sous votre contrôle" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editer les catégories" @@ -614,6 +610,13 @@ msgstr "Connexion" msgid "Alternative Logins" msgstr "Logins alternatifs" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "précédent" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index cad730674a..afcf1be439 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 5ef61c8cfd..961aaae34d 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/fr/files_sharing.po index 3f1f4097bc..3c42afe9a3 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/fr/files_trashbin.po index b35debbeab..da615896f2 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/fr/lib.po index f4843941b8..d45b25eeea 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Cyril Glapa \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Aide" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personnel" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Paramètres" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Utilisateurs" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Applications" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administration" @@ -114,76 +114,76 @@ msgstr "%s vous nez pouvez pas utiliser de points dans le nom de la base de donn msgid "%s set the database host." msgstr "%s spécifiez l'hôte de la base de données." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base PostgreSQL invalide" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "La connexion Oracle ne peut pas être établie" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Erreur de la base de données : \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "La requête en cause est : \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "L'utilisateur MySQL '%s'@'localhost' existe déjà." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Retirer cet utilisateur de la base MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "L'utilisateur MySQL '%s'@'%%' existe déjà" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Retirer cet utilisateur de la base MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez vous référer au guide d'installation." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index a2b28afbaa..d47cb80cb8 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 14:14+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: lyly95\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -327,11 +327,11 @@ msgstr "Plus" msgid "Less" msgstr "Moins" -#: templates/admin.php:235 templates/personal.php:114 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:237 templates/personal.php:117 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Développé par la communauté ownCloud, le code source est publié sous license AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Ajoutez votre application" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Plus d'applications…" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Sélectionner une Application" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Voir la page des applications à l'url apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "Distribué sous licence , par " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Mettre à jour" @@ -446,15 +446,15 @@ msgstr "Entrez votre adresse e-mail pour permettre la réinitialisation du mot d msgid "Language" msgstr "Langue" -#: templates/personal.php:98 +#: templates/personal.php:99 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:103 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:105 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 0ac88d216e..2e7b16134e 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index d1834912d7..eb424f5417 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "WebDAV Authentication" msgstr "Authentification WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL : http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 1d019a23ce..f44bae0875 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "O usuario %s compartíu un ficheiro con vostede" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "O usuario %s compartíu un cartafol con vostede" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -427,11 +408,11 @@ msgid "" "key there will be no way to get your data back once the password was " "resetted. If you are not sure what to do, please contact your administrator " "first before continue. Do you really want to continue?" -msgstr "" +msgstr "Semella que os ficheiros están cifrados. Se aínda non activou a chave de recuperación non haberá xeito de recuperar os datos unha vez que se teña restabelecido o contrasinal. Se non ten certeza do que ten que facer, póñase en contacto co administrador antes de continuar. Confirma que quere continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Si, confirmo que quero restabelecer agora o meu contrasinal" #: lostpassword/templates/lostpassword.php:29 msgid "Request reset" @@ -481,6 +462,21 @@ msgstr "Acceso denegado" msgid "Cloud not found" msgstr "Nube non atopada" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar as categorías" @@ -612,6 +608,13 @@ msgstr "Conectar" msgid "Alternative Logins" msgstr "Accesos alternativos" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 3b683190b9..80f7c70739 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index dcc1675ec6..3d0bba4e82 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/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-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 11:54+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,20 +48,20 @@ msgstr "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal anti #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "A chave privada foi actualizada correctamente." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto." #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros" #: js/settings-admin.js:11 msgid "Saving..." @@ -71,15 +71,15 @@ msgstr "Gardando..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. " #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Pode desbloquear a chave privada nos seus" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "axustes persoais" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -120,39 +120,39 @@ msgstr "Cambiar o contrasinal" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso." #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual" #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr " Se non lembra o seu antigo contrasinal pode pedírllelo ao seu administrador para recuperar os seus ficheiros." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Contrasinal de acceso antigo" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Contrasinal de acceso actual" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Actualizar o contrasinal da chave privada" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Activar o contrasinal de recuperación:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Ao activar esta opción permitiráselle volver a obter acceso aos ficheiros cifrados no caso de perda do contrasinal" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index c68d470186..354e522831 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/gl/files_sharing.po b/l10n/gl/files_sharing.po index 6e36beaa47..2ce72a18f0 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 16513d74ef..fcc6a59103 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/gl/lib.po b/l10n/gl/lib.po index 491db94ee7..ca792781dd 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Axuda" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Persoal" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Axustes" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Usuarios" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplicativos" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administración" @@ -114,76 +114,76 @@ msgstr "%s non se poden empregar puntos na base de datos" msgid "%s set the database host." msgstr "%s estabeleza o servidor da base de datos" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de PostgreSQL incorrecto" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Deberá introducir unha conta existente ou o administrador." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Non foi posíbel estabelecer a conexión con Oracle" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Produciuse un erro na base de datos: «%s»" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "A orde ofensiva foi: «%s»" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "O usuario MySQL '%s'@'localhost' xa existe." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Omitir este usuario de MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "O usuario MySQL «%s»@«%%» xa existe." -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Omitir este usuario de MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuario e/ou contrasinal de MS SQL incorrecto: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Volva comprobar as guías de instalación" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 354115826d..b5a755560e 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Correo incorrecto" msgid "Unable to delete group" msgstr "Non é posíbel eliminar o grupo." -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Non é posíbel eliminar o usuario" @@ -325,11 +325,11 @@ msgstr "Máis" msgid "Less" msgstr "Menos" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versión" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desenvolvido pola comunidade ownCloud, o código fonte está baixo a licenza AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Engada o seu aplicativo" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Máis aplicativos" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Escolla un aplicativo" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Consulte a páxina do aplicativo en apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licenciado por" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Actualizar" @@ -387,72 +387,72 @@ msgstr "Seguemento de fallos" msgid "Commercial Support" msgstr "Asistencia comercial" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Obteña os aplicativos para sincronizar os seus ficheiros" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Amosar o axudante da primeira execución outra vez" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Ten en uso %s do total dispoñíbel de %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Obteña os aplicativos para sincronizar os seus ficheiros" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Amosar o axudante da primeira execución outra vez" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Non é posíbel cambiar o seu contrasinal" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Amosar o nome" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Correo" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Escriba un enderezo de correo para activar o contrasinal de recuperación" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Idioma" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index e044c6bf20..5647189034 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index 779cbf82ba..68b908ae6e 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgid "WebDAV Authentication" msgstr "Autenticación WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/he/core.po b/l10n/he/core.po index 04152144fd..43b18f04cb 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "המשתמש %s שיתף אתך קובץ" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "המשתמש %s שיתף אתך תיקייה" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "המשתמש %s שיתף אתך את הקובץ „%s“. ניתן להוריד את הקובץ מכאן: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "המשתמש %s שיתף אתך את התיקייה „%s“. ניתן להוריד את התיקייה מכאן: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "הגישה נחסמה" msgid "Cloud not found" msgstr "ענן לא נמצא" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ערוך קטגוריות" @@ -612,6 +608,13 @@ msgstr "כניסה" msgid "Alternative Logins" msgstr "כניסות אלטרנטיביות" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "הקודם" diff --git a/l10n/he/files.po b/l10n/he/files.po index fcf545a9c8..fa0ec869a2 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 26cfc5ad27..3695472456 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/he/files_sharing.po index d839349d69..a826e5579d 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/he/files_trashbin.po index 54fc52620b..74e3329cd6 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 4145111ff8..72b700c307 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "עזרה" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "אישי" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "הגדרות" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "משתמשים" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "יישומים" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "מנהל" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "נא לעיין שוב במדריכי ההתקנה." diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 1486d9004e..74cec0f5cb 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "דוא״ל לא חוקי" msgid "Unable to delete group" msgstr "לא ניתן למחוק את הקבוצה" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "לא ניתן למחוק את המשתמש" @@ -325,11 +325,11 @@ msgstr "יותר" msgid "Less" msgstr "פחות" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "גרסא" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "פותח על די קהילתownCloud, קוד המקור מוגן ברישיון AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "הוספת היישום שלך" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "יישומים נוספים" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "בחירת יישום" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "צפה בעמוד הישום ב apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "ברישיון לטובת " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "עדכון" @@ -387,72 +387,72 @@ msgstr "עוקב תקלות" msgid "Commercial Support" msgstr "תמיכה בתשלום" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "השג את האפליקציות על מנת לסנכרן את הקבצים שלך" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "הצגת אשף ההפעלה הראשונית שוב" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "השתמשת ב־%s מתוך %s הזמינים לך" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "סיסמא" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "שם תצוגה" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "דואר אלקטרוני" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "פה" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים." diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index ca9b80b259..0e0727ed1c 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 8d99fe3f58..ac898b7467 100644 --- a/l10n/he/user_webdavauth.po +++ b/l10n/he/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-06-08 02:03+0200\n" -"PO-Revision-Date: 2013-06-07 09:20+0000\n" -"Last-Translator: Yaron Shahrabani \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "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" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "הזדהות מול WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "כתובת: http://‎" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index c1c679b644..e2bac1aa92 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,26 +20,7 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "उपयोगकर्ता %s ने आप के साथ एक फ़ाइल सहभाजीत किया" - -#: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -481,6 +462,21 @@ msgstr "" msgid "Cloud not found" msgstr "क्लौड नहीं मिला " +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -612,6 +608,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "पिछला" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 56541675e0..06e8e953aa 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 e8e69c034b..d8eae0f090 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+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" @@ -17,27 +17,27 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "सहयोग" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "यक्तिगत" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "सेटिंग्स" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "उपयोगकर्ता" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Apps" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/hi/user_webdavauth.po b/l10n/hi/user_webdavauth.po index 712626e49c..25d78227a5 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 36cf937b32..90b3e540ff 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "Pristup zabranjen" msgid "Cloud not found" msgstr "Cloud nije pronađen" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Uredi kategorije" @@ -611,6 +607,13 @@ msgstr "Prijava" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodan" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c3f64b266a..a7f98662b9 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 e907f86b9f..0a08bb3d8d 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/hr/files_sharing.po index 38a1c3e15d..4fa117375a 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/hr/files_trashbin.po index 71cc5a3d90..311a4b1a6c 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/hr/lib.po index 4c95564d97..efe5e6372f 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Pomoć" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Osobno" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Postavke" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Korisnici" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplikacije" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administrator" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 6d237686ab..5ab496870d 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Neispravan email" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "više" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Dodajte vašu aplikaciju" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Odaberite Aplikaciju" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Pogledajte stranicu s aplikacijama na apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Jezik" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 08f168170c..417f61520e 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_webdavauth.po b/l10n/hr/user_webdavauth.po index bc4382e068..b0b3a830c3 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 7aec7d0ea0..c28736d5c3 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "%s felhasználó megosztott Önnel egy fájlt" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "%s felhasználó megosztott Önnel egy mappát" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "A hozzáférés nem engedélyezett" msgid "Cloud not found" msgstr "A felhő nem található" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategóriák szerkesztése" @@ -612,6 +608,13 @@ msgstr "Bejelentkezés" msgid "Alternative Logins" msgstr "Alternatív bejelentkezés" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "előző" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 3a39364461..c1113bb3c4 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 0f9d5ebc39..3b8388222b 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 0743b0b403..ff5825b57a 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index fcb618e939..fa82f2a6ff 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/hu_HU/lib.po b/l10n/hu_HU/lib.po index a5ed2efd69..24a0e17d83 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Súgó" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Személyes" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Beállítások" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Felhasználók" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Alkalmazások" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Adminsztráció" @@ -114,76 +114,76 @@ msgstr "%s az adatbázis neve nem tartalmazhat pontot" msgid "%s set the database host." msgstr "%s adja meg az adatbázist szolgáltató számítógép nevét." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "A PostgreSQL felhasználói név és/vagy jelszó érvénytelen" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Az Oracle kapcsolat nem hozható létre" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Adatbázis hiba: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "A hibát ez a parancs okozta: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "A '%s'@'localhost' MySQL felhasználó már létezik." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Törölje ezt a felhasználót a MySQL-ből" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "A '%s'@'%%' MySQL felhasználó már létezik" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Törölje ezt a felhasználót a MySQL-ből." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 855361da54..c4ab1ce07d 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -60,7 +60,7 @@ msgstr "Hibás email" msgid "Unable to delete group" msgstr "A csoport nem törölhető" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "A felhasználó nem törölhető" @@ -326,11 +326,11 @@ msgstr "Több" msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Verzió" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "A programot az ownCloud közösség fejleszti. A forráskód az AGPL feltételei mellett használható föl." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Az alkalmazás hozzáadása" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "További alkalmazások" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Válasszon egy alkalmazást" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Lásd apps.owncloud.com, alkalmazások oldal" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-a jogtuladonos " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Frissítés" @@ -388,72 +388,72 @@ msgstr "Hibabejelentések" msgid "Commercial Support" msgstr "Megvásárolható támogatás" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Töltse le az állományok szinkronizációjához szükséges programokat" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Nézzük meg újra az első bejelentkezéskori segítséget!" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Töltse le az állományok szinkronizációjához szükséges programokat" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Nézzük meg újra az első bejelentkezéskori segítséget!" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "A jelszava megváltozott" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "A megjelenített név" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Email" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Az Ön email címe" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Segítsen a fordításban!" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait." diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 440a6356ea..2b92e4a714 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po index e2056a92ca..1d74be6d3f 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV hitelesítés" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index f676687f6b..23d6a9c882 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 63c3c13dde..2ff4367fe1 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index c56d6181c5..c5e9446650 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index d16b231863..78012b96d6 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 129ab3e29c..a15430d342 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index a26369ab7a..6da1cce0ca 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/hy/user_webdavauth.po b/l10n/hy/user_webdavauth.po index 101ab76c34..497f2fbc29 100644 --- a/l10n/hy/user_webdavauth.po +++ b/l10n/hy/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-05-25 02:01+0200\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 25d5aa9359..9d520a20a7 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "Accesso prohibite" msgid "Cloud not found" msgstr "Nube non trovate" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "servicios web sub tu controlo" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Modificar categorias" @@ -611,6 +607,13 @@ msgstr "Aperir session" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prev" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 36c2422f41..d6c5b5155f 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 e5dfd4cd1f..61d1805892 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/ia/files_sharing.po b/l10n/ia/files_sharing.po index 0dcf323e78..33db5fbd1c 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index f3064aecda..a22069503e 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/ia/lib.po b/l10n/ia/lib.po index dd91080f43..ec7370ad3f 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Adjuta" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personal" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Configurationes" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Usatores" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Applicationes" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administration" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 681da984f2..e074e0346d 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "Plus" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Adder tu application" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Selectionar un app" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Actualisar" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Obtene le apps (applicationes) pro synchronizar tu files" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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 "Obtene le apps (applicationes) pro synchronizar tu files" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-posta" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Linguage" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index a2140645b7..82ef2f4c94 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_webdavauth.po b/l10n/ia/user_webdavauth.po index a91b0b25c8..e9996727a3 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/id/core.po b/l10n/id/core.po index fb1ff71690..e8ecf4d015 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "%s berbagi berkas dengan Anda" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "%s berbagi folder dengan Anda" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "%s berbagi berkas \"%s\" dengan Anda. Silakan unduh di sini: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "%s berbagi folder \"%s\" dengan Anda. Silakan unduh di sini: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "Akses ditolak" msgid "Cloud not found" msgstr "Cloud tidak ditemukan" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "layanan web dalam kontrol Anda" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edit kategori" @@ -611,6 +607,13 @@ msgstr "Masuk" msgid "Alternative Logins" msgstr "Cara Alternatif untuk Masuk" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelumnya" diff --git a/l10n/id/files.po b/l10n/id/files.po index 617d7e3521..5f16576376 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 fe7ec6480e..bd60cfe56f 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/id/files_sharing.po b/l10n/id/files_sharing.po index ff64ac7f13..8cbea78191 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/id/files_trashbin.po b/l10n/id/files_trashbin.po index 63f8a38010..3effbf5c86 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/id/lib.po b/l10n/id/lib.po index a33a97d24b..3bf39199ea 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Bantuan" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Pribadi" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Setelan" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Pengguna" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplikasi" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -113,76 +113,76 @@ msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data" msgid "%s set the database host." msgstr "%s setel host basis data." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Nama pengguna dan/atau sandi MySQL tidak valid" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Galat Basis Data: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Perintah yang bermasalah: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Pengguna MySQL '%s'@'localhost' sudah ada." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Hapus pengguna ini dari MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Pengguna MySQL '%s'@'%%' sudah ada." -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Hapus pengguna ini dari MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Nama pengguna dan/atau sandi Oracle tidak valid" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nama pengguna dan/atau sandi MySQL tidak valid: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Silakan periksa ulang panduan instalasi." diff --git a/l10n/id/settings.po b/l10n/id/settings.po index e8f3ba6f62..5be3b76708 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Email tidak valid" msgid "Unable to delete group" msgstr "Tidak dapat menghapus grup" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Tidak dapat menghapus pengguna" @@ -324,11 +324,11 @@ msgstr "Lainnya" msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versi" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Dikembangkan oleh komunitas ownCloud, kode sumber dilisensikan di bawah AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Tambahkan Aplikasi Anda" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Aplikasi Lainnya" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Pilih Aplikasi" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman aplikasi di apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-dilisensikan oleh " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Perbarui" @@ -386,72 +386,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Dukungan Komersial" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Dapatkan aplikasi untuk sinkronisasi berkas Anda" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Tampilkan Penuntun Konfigurasi Awal" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Anda telah menggunakan %s dari total %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Dapatkan aplikasi untuk sinkronisasi berkas Anda" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Tampilkan Penuntun Konfigurasi Awal" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Sandi" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Sandi Anda telah diubah" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Gagal mengubah sandi Anda" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Sandi saat ini" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Sandi baru" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Ubah sandi" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Nama Tampilan" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Email" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Alamat email Anda" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Masukkan alamat email untuk mengaktifkan pemulihan sandi" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gunakan alamat ini untuk terhubung ke ownCloud Anda pada manajer berkas " diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 544aabb1ad..8b0c6a361c 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_webdavauth.po b/l10n/id/user_webdavauth.po index f4b9d4b50e..b411106f5f 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "Otentikasi WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/is/core.po b/l10n/is/core.po index 1573951711..f4fe7935a4 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Notandinn %s deildi skrá með þér" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Notandinn %s deildi möppu með þér" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Aðgangur bannaður" msgid "Cloud not found" msgstr "Ský finnst ekki" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "vefþjónusta undir þinni stjórn" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Breyta flokkum" @@ -612,6 +608,13 @@ msgstr "Skrá inn" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "fyrra" diff --git a/l10n/is/files.po b/l10n/is/files.po index 54bb318721..5ef4e65c5e 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 eb85430062..def028c17b 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 f877788368..1279350159 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/is/files_trashbin.po index c5f9d0c5dd..f19e3ed988 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/is/lib.po index 65ba22e236..dff7adbb44 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Hjálp" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Um mig" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Stillingar" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Notendur" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Forrit" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Stjórnun" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 3e34360216..59cce3185e 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "Ógilt netfang" msgid "Unable to delete group" msgstr "Ekki tókst að eyða hóp" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Ekki tókst að eyða notenda" @@ -325,11 +325,11 @@ msgstr "Meira" msgid "Less" msgstr "Minna" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Þróað af ownCloud samfélaginu, forrita kóðinn er skráðu með AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Bæta við forriti" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Fleiri forrit" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Veldu forrit" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Skoða síðu forrits hjá apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-leyfi skráð af " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Uppfæra" @@ -387,72 +387,72 @@ msgstr "Villubókhald" msgid "Commercial Support" msgstr "Borgaður stuðningur" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Þú hefur notað %s af tiltæku %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lykilorð" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Lykilorði þínu hefur verið breytt" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þínu" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Vísa nafn" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Netfang" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 94586fbf40..37ca9993e2 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po index a771de8f67..d6a3dc156d 100644 --- a/l10n/is/user_webdavauth.po +++ b/l10n/is/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-06-08 02:03+0200\n" -"PO-Revision-Date: 2013-06-07 09:20+0000\n" -"Last-Translator: Magnus Magnusson \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "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" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV Auðkenni" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "Vefslóð: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/it/core.po b/l10n/it/core.po index e05ae36ff1..3205b81c69 100644 --- a/l10n/it/core.po +++ b/l10n/it/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "L'utente %s ha condiviso un file con te" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "L'utente %s ha condiviso una cartella con te" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "L'utente %s ha condiviso il file \"%s\" con te. È disponibile per lo scaricamento qui: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "L'utente %s ha condiviso la cartella \"%s\" con te. È disponibile per lo scaricamento qui: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Accesso negato" msgid "Cloud not found" msgstr "Nuvola non trovata" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "servizi web nelle tue mani" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Modifica categorie" @@ -612,6 +608,13 @@ msgstr "Accedi" msgid "Alternative Logins" msgstr "Accessi alternativi" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedente" diff --git a/l10n/it/files.po b/l10n/it/files.po index b34d57328a..59e6d9b348 100644 --- a/l10n/it/files.po +++ b/l10n/it/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 3b1468ba8a..67f9646d14 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 30378e2e99..0c32200764 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/it/files_trashbin.po index 1b0c7ae635..faa388150a 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 449983b3b4..b3cf5e2064 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Aiuto" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personale" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Impostazioni" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Utenti" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Applicazioni" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -114,76 +114,76 @@ msgstr "%s non dovresti utilizzare punti nel nome del database" msgid "%s set the database host." msgstr "%s imposta l'host del database." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Nome utente e/o password di PostgreSQL non validi" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "È necessario inserire un account esistente o l'amministratore." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "La connessione a Oracle non può essere stabilita" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Nome utente e/o password di MySQL non validi" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Errore DB: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Il comando non consentito era: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "L'utente MySQL '%s'@'localhost' esiste già." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Elimina questo utente da MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "L'utente MySQL '%s'@'%%' esiste già" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Elimina questo utente da MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Nome utente e/o password di Oracle non validi" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome utente e/o password MS SQL non validi: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index b808f0f199..9efdab04a1 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Email non valida" msgid "Unable to delete group" msgstr "Impossibile eliminare il gruppo" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Impossibile eliminare l'utente" @@ -325,11 +325,11 @@ msgstr "Altro" msgid "Less" msgstr "Meno" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versione" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Sviluppato dalla comunità di ownCloud, il codice sorgente è rilasciato nei termini della licenza AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Aggiungi la tua applicazione" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Altre applicazioni" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Seleziona un'applicazione" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licenziato da " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Aggiorna" @@ -387,72 +387,72 @@ msgstr "Sistema di tracciamento bug" msgid "Commercial Support" msgstr "Supporto commerciale" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Scarica le applicazioni per sincronizzare i tuoi file" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Mostra nuovamente la procedura di primo avvio" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Hai utilizzato %s dei %s disponibili" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Scarica le applicazioni per sincronizzare i tuoi file" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Mostra nuovamente la procedura di primo avvio" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Password" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Nome visualizzato" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Posta elettronica" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Lingua" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 8d3238385f..cfa6184057 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index 342564faf7..d8a8cf5216 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "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" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "Autenticazione WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 61226edd5e..19ada0a05c 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -4,12 +4,13 @@ # # Translators: # Daisuke Deguchi , 2013 +# plazmism , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "ユーザ %s はあなたとファイルを共有しています" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "ユーザ %s はあなたとフォルダを共有しています" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "ユーザ %s はあなたとファイル \"%s\" を共有しています。こちらからダウンロードできます: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "ユーザ %s はあなたとフォルダ \"%s\" を共有しています。こちらからダウンロードできます: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -427,11 +409,11 @@ msgid "" "key there will be no way to get your data back once the password was " "resetted. If you are not sure what to do, please contact your administrator " "first before continue. Do you really want to continue?" -msgstr "" +msgstr "ファイルが暗号化されているようです。復旧キーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "はい、今すぐパスワードをリセットします。" #: lostpassword/templates/lostpassword.php:29 msgid "Request reset" @@ -481,6 +463,21 @@ msgstr "アクセスが禁止されています" msgid "Cloud not found" msgstr "見つかりません" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "カテゴリを編集" @@ -612,6 +609,13 @@ msgstr "ログイン" msgid "Alternative Logins" msgstr "代替ログイン" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "前" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index c1ca254ef4..6a1fcd9d75 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 45a5bfa343..9b3310cd58 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -4,14 +4,15 @@ # # Translators: # Daisuke Deguchi , 2013 +# plazmism , 2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 10:30+0000\n" +"Last-Translator: plazmism \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" @@ -47,20 +48,20 @@ msgstr "パスワードを変更できませんでした。古いパスワード #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "秘密鍵のパスワードが正常に更新されました。" #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。" #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。。個人設定で秘密鍵のパスワードを更新して、ファイルへのアクセス権を奪還できます。" #: js/settings-admin.js:11 msgid "Saving..." @@ -70,15 +71,15 @@ msgstr "保存中..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。" #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "個人設定で" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "秘密鍵をアンロックできます" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -119,39 +120,39 @@ msgstr "パスワードを変更" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "もはや秘密鍵はログインパスワードと一致しません:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "古い秘密鍵のパスワードを現在のログインパスワードに設定する。" #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "古いログインパスワード" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "現在のログインパスワード" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "秘密鍵のパスワードを更新" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "パスワード復旧を有効化:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index f3a184be03..f022a39edd 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/ja_JP/files_sharing.po index d962b06d22..d5555baf6e 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 881a2de647..e89d88e92b 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/ja_JP/lib.po index eed211faea..39d89b1958 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "ヘルプ" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "個人" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "設定" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "ユーザ" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "アプリ" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "管理" @@ -114,76 +114,76 @@ msgstr "%s ではデータベース名にドットを利用できないかもし msgid "%s set the database host." msgstr "%s にデータベースホストを設定します。" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQLのユーザ名もしくはパスワードは有効ではありません" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "既存のアカウントもしくは管理者のどちらかを入力する必要があります。" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Oracleへの接続が確立できませんでした。" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQLのユーザ名もしくはパスワードは有効ではありません" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "DBエラー: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "違反コマンド: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQLのユーザ '%s'@'localhost' はすでに存在します。" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "MySQLからこのユーザを削除" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQLのユーザ '%s'@'%%' はすでに存在します。" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "MySQLからこのユーザを削除する。" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracleのユーザ名もしくはパスワードは有効ではありません" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "インストールガイドをよく確認してください。" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 8a0f3d3f53..87fa22bdc9 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -61,7 +61,7 @@ msgstr "無効なメールアドレス" msgid "Unable to delete group" msgstr "グループを削除できません" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "ユーザを削除できません" @@ -327,11 +327,11 @@ msgstr "もっと見る" msgid "Less" msgstr "閉じる" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "バージョン" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "アプリを追加" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "さらにアプリを表示" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "アプリを選択してください" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com でアプリケーションのページを見てください" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-ライセンス: " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "更新" @@ -389,72 +389,72 @@ msgstr "バグトラッカー" msgid "Commercial Support" msgstr "コマーシャルサポート" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "ファイルを同期するためのアプリを取得" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "初回ウィザードを再表示する" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "現在、%s / %s を利用しています" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "パスワード" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "パスワードを変更しました" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Current password" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "新しいパスワードを入力" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "表示名" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "メール" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "※パスワード回復を有効にするにはメールアドレスの入力が必要です" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "言語" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index bee60e7a31..91de95a1b5 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 9db2784888..0db6319342 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV 認証" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 808b9f7d1b..af6bce82f1 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 5412c33fef..44be893a8a 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 f0c2e6ef32..70bd2c21e1 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 81c2565495..35f97470b1 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 23bfb2f60d..29272b0268 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "მომხმარებელმა %s გაგიზიარათ ფაილი" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "მომხმარებელმა %s გაგიზიარათ ფოლდერი" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "მომხმარებელმა %s გაგიზიარათ ფაილი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "მომხმარებელმა %s გაგიზიარათ ფოლდერი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "წვდომა აკრძალულია" msgid "Cloud not found" msgstr "ღრუბელი არ არსებობს" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "კატეგორიების რედაქტირება" @@ -611,6 +607,13 @@ msgstr "შესვლა" msgid "Alternative Logins" msgstr "ალტერნატიული Login–ი" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "წინა" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 7066486ebd..2030de7fef 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 d35367d764..0b65726778 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 7f4cb57b33..26f4931343 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index f76f4ff3a7..de54f9267c 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 713f50b1a7..819c017a22 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "დახმარება" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "პირადი" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "პარამეტრები" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "მომხმარებელი" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "აპლიკაციები" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "ადმინისტრატორი" @@ -113,76 +113,76 @@ msgstr "%s არ მიუთითოთ წერტილი ბაზის msgid "%s set the database host." msgstr "%s მიუთითეთ ბაზის ჰოსტი." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "DB შეცდომა: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Offending ბრძანება იყო: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index ff09ce5da9..85b98c49fa 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "არასწორი იმეილი" msgid "Unable to delete group" msgstr "ჯგუფის წაშლა ვერ მოხერხდა" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" @@ -325,11 +325,11 @@ msgstr "უფრო მეტი" msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "წარმოებულია ownCloud community–ის მიერ. source code ვრცელდება AGPL ლიცენზიის ფარგლებში." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "დაამატე შენი აპლიკაცია" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "უფრო მეტი აპლიკაციები" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "აირჩიეთ აპლიკაცია" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-ლიცენსირებულია " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "განახლება" @@ -387,72 +387,72 @@ msgstr "ბაგთრექერი" msgid "Commercial Support" msgstr "კომერციული მხარდაჭერა" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "აპლიკაცია ფაილების სინქრონიზაციისთვის" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "მაჩვენე თავიდან გაშვებული ვიზარდი" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "თქვენი პაროლი შეიცვალა" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "დისპლეის სახელი" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "ენა" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index c05b1c9c6c..bfb0263274 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_webdavauth.po b/l10n/ka_GE/user_webdavauth.po index 275948740f..88af8f6bf4 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV აუთენთიფიკაცია" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 3fc5ebc24f..feab760f67 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/kn/user_webdavauth.po b/l10n/kn/user_webdavauth.po index 771cd4f87e..535cabb87b 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 728c6686b6..e6f0bf56c0 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "%s 님이 파일을 공유하였습니다" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "%s 님이 폴더를 공유하였습니다" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "%s 님이 파일 \"%s\"을(를) 공유하였습니다. 여기에서 다운로드할 수 있습니다: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "%s 님이 폴더 \"%s\"을(를) 공유하였습니다. 여기에서 다운로드할 수 있습니다: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "접근 금지됨" msgid "Cloud not found" msgstr "클라우드를 찾을 수 없습니다" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "내가 관리하는 웹 서비스" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "분류 수정" @@ -612,6 +608,13 @@ msgstr "로그인" msgid "Alternative Logins" msgstr "대체 " +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "이전" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 5738ace607..f276c5c238 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 95f832777d..9635e119c7 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/ko/files_sharing.po index da417f0abe..60dbbf682f 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/ko/files_trashbin.po index 120e91f66a..3b7a8e8a12 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/ko/lib.po index 2121637669..1ba39cf7c4 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "도움말" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "개인" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "설정" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "사용자" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "앱" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "관리자" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index bc9aff12c4..0b6af45fec 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "잘못된 이메일 주소" msgid "Unable to delete group" msgstr "그룹을 삭제할 수 없습니다." -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "사용자를 삭제할 수 없습니다." @@ -324,11 +324,11 @@ msgstr "더 중요함" msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "버전" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "앱 추가" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "더 많은 앱" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "앱 선택" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com에 있는 앱 페이지를 참고하십시오" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-라이선스됨: " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "업데이트" @@ -386,72 +386,72 @@ msgstr "버그 트래커" msgid "Commercial Support" msgstr "상업용 지원" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "앱을 이용하여 당신의 파일을 동기화 할 수 있습니다." + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "첫 실행 마법사 다시 보이기" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "현재 공간 %s/%s을(를) 사용 중입니다" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "암호" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "암호가 변경되었습니다" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "새 암호" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "표시 이름" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "이메일" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오." -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "언어" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오." diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index e35eb349d1..af42c12374 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 07e03e8838..73deb90e44 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -28,8 +28,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV 인증" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 1163182115..2f4972fb27 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "هیچ نه‌دۆزرایه‌وه‌" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "پێشتر" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 1dc5daca48..66cb431e9c 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 103a03fb15..f4231bfc22 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 79f5da1fed..284b774976 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/ku_IQ/lib.po index 18041831e5..55c8936b8f 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "یارمەتی" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "ده‌ستكاری" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "به‌كارهێنه‌ر" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "به‌رنامه‌كان" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 906b080897..bea61782a2 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "نوێکردنه‌وه" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index e959634da8..3e489d59a3 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_webdavauth.po b/l10n/ku_IQ/user_webdavauth.po index 381e788ea4..14906a0a57 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/lb/core.po b/l10n/lb/core.po index a7a53ae7ac..668d648449 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "Access net erlaabt" msgid "Cloud not found" msgstr "Cloud net fonnt" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorien editéieren" @@ -611,6 +607,13 @@ msgstr "Log dech an" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "zeréck" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index f6b899c804..b8d01362b0 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 46158823d4..6f1540d4bf 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lb/files_sharing.po b/l10n/lb/files_sharing.po index f684c8f086..9d901c290e 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 68898ece60..4180748506 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lb/lib.po b/l10n/lb/lib.po index 6711dddd44..c1fc826be4 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Hëllef" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Perséinlech" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Astellungen" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Benotzer" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Applicatiounen" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 18435e1f25..980a0b09c9 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Ongülteg e-mail" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "Méi" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Setz deng App bei" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Wiel eng Applikatioun aus" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Email" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 4543599a14..3535881acb 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_webdavauth.po b/l10n/lb/user_webdavauth.po index 1bceab60db..20d27db5b4 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index ba6e9978c7..01382950b7 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -21,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Vartotojas %s pasidalino su jumis failu" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Vartotojas %s su jumis pasidalino aplanku" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Vartotojas %s pasidalino failu \"%s\" su jumis. Jį atsisiųsti galite čia: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Vartotojas %s pasidalino aplanku \"%s\" su jumis. Jį atsisiųsti galite čia: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -482,6 +463,21 @@ msgstr "Priėjimas draudžiamas" msgid "Cloud not found" msgstr "Negalima rasti" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Redaguoti kategorijas" @@ -613,6 +609,13 @@ msgstr "Prisijungti" msgid "Alternative Logins" msgstr "Alternatyvūs prisijungimai" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "atgal" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index e56e73160a..a082db3c7c 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index a59135036d..fc634a4457 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 215462c70f..ff3e427ee3 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index c4023b2e82..b41d20f620 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 455e7b97c4..3b854844d4 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Pagalba" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Asmeniniai" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Nustatymai" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Vartotojai" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Programos" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administravimas" @@ -114,76 +114,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index ed797bfdea..bb24553620 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Netinkamas el. paštas" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "Daugiau" msgid "Less" msgstr "Mažiau" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Pridėti programėlę" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Daugiau aplikacijų" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Pasirinkite programą" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "- autorius" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Atnaujinti" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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 "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Jūsų slaptažodis buvo pakeistas" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "El. Paštas" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Kalba" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 929d3911fc..9f54d77d2c 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_webdavauth.po b/l10n/lt_LT/user_webdavauth.po index 173f9167f2..401e8edc0f 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV autorizavimas" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "Adresas: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index be14322caf..b00a7621a6 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Lietotājs %s ar jums dalījās ar datni." - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Lietotājs %s ar jums dalījās ar mapi." - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Lietotājs %s ar jums dalījās ar datni “%s”. To var lejupielādēt šeit — %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Lietotājs %s ar jums dalījās ar mapi “%s”. To var lejupielādēt šeit — %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "Pieeja ir liegta" msgid "Cloud not found" msgstr "Mākonis netika atrasts" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Rediģēt kategoriju" @@ -611,6 +607,13 @@ msgstr "Ierakstīties" msgid "Alternative Logins" msgstr "Alternatīvās pieteikšanās" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "iepriekšējā" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 44c5cd23a8..2e1810e652 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 881d66c22d..967167caf5 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lv/files_sharing.po b/l10n/lv/files_sharing.po index ecef0a2965..2c04bc953c 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 0de6d7caa2..cce2df3dd9 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lv/lib.po b/l10n/lv/lib.po index 13cbad8d66..68a4d780a9 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Palīdzība" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personīgi" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Iestatījumi" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Lietotāji" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Lietotnes" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administratori" @@ -113,76 +113,76 @@ msgstr "%s datubāžu nosaukumos nedrīkst izmantot punktus" msgid "%s set the database host." msgstr "%s iestatiet datubāžu serveri." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Nav derīga PostgreSQL parole un/vai lietotājvārds" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Jums jāievada vai nu esošs vai administratora konts." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Nav derīga MySQL parole un/vai lietotājvārds" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "DB kļūda — “%s”" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Vainīgā komanda bija “%s”" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL lietotājs %s'@'localhost' jau eksistē." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Izmest šo lietotāju no MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL lietotājs '%s'@'%%' jau eksistē" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Izmest šo lietotāju no MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Nav derīga Oracle parole un/vai lietotājvārds" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nav derīga MySQL parole un/vai lietotājvārds — %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 64ce30109d..9ad090e060 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Nederīgs epasts" msgid "Unable to delete group" msgstr "Nevar izdzēst grupu" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Nevar izdzēst lietotāju" @@ -324,11 +324,11 @@ msgstr "Vairāk" msgid "Less" msgstr "Mazāk" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versija" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "IzstrādājusiownCloud kopiena,pirmkodukurš ir licencēts zem AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Pievieno savu lietotni" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Vairāk lietotņu" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Izvēlies lietotni" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Apskati lietotņu lapu — apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licencēts no " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Atjaunināt" @@ -386,72 +386,72 @@ msgstr "Kļūdu sekotājs" msgid "Commercial Support" msgstr "Komerciālais atbalsts" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Saņem lietotnes, lai sinhronizētu savas datnes" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Vēlreiz rādīt pirmās palaišanas vedni" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Jūs lietojat %s no pieejamajiem %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Saņem lietotnes, lai sinhronizētu savas datnes" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Vēlreiz rādīt pirmās palaišanas vedni" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parole" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Jūru parole tika nomainīta" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Nevar nomainīt jūsu paroli" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Redzamais vārds" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Jūsu e-pasta adrese" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Valoda" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Izmanto šo adresi, lai, izmantojot datņu pārvaldnieku, savienotos ar savu ownCloud" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index ad596343f7..8f0fb1cc98 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_webdavauth.po b/l10n/lv/user_webdavauth.po index bc46877310..cdc12e2a8c 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV autentifikācija" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index a89d2245db..f1c5ef23f8 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Корисникот %s сподели датотека со Вас" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Корисникот %s сподели папка со Вас" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Корисникот %s ја сподели датотека „%s“ со Вас. Достапна е за преземање тука: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Корисникот %s ја сподели папката „%s“ со Вас. Достапна е за преземање тука: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "Забранет пристап" msgid "Cloud not found" msgstr "Облакот не е најден" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "веб сервиси под Ваша контрола" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Уреди категории" @@ -611,6 +607,13 @@ msgstr "Најава" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index f415c8b7b1..757b342b85 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 190d3824dd..8daed12b60 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 ce37617d0e..004608cfb5 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/mk/files_trashbin.po index 95f327614e..0bbfd45849 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/mk/lib.po index 92f4da7820..e2e0a84ebf 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Помош" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Лично" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Подесувања" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Корисници" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Аппликации" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Админ" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 14a28b7e5f..9ae06683bd 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Неисправна електронска пошта" msgid "Unable to delete group" msgstr "Неможе да избришам група" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Неможам да избришам корисник" @@ -324,11 +324,11 @@ msgstr "Повеќе" msgid "Less" msgstr "Помалку" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Верзија" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Развој од ownCloud заедницата, изворниот код е лиценциран соAGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Додадете ја Вашата апликација" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Повеќе аппликации" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Избери аппликација" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Види ја страницата со апликации на apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-лиценцирано од " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Ажурирај" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "Комерцијална подршка" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Имате искористено %s од достапните %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Јазик" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користете ја оваа адреса да " diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 982fb57a8d..f5597b108c 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 78f50a5abe..4f39ddca61 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 8ce9b1a971..bf8ecd2277 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "Larangan akses" msgid "Cloud not found" msgstr "Awan tidak dijumpai" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "Perkhidmatan web di bawah kawalan anda" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Ubah kategori" @@ -611,6 +607,13 @@ msgstr "Log masuk" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 6cceab3bb9..a68988556a 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 f2d2a4facc..8a26d21360 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/ms_MY/files_sharing.po index 1d6bb84a11..9412971f4a 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index e0ace588a7..9e792096a5 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/ms_MY/lib.po index 933c4e3443..bc34cc5250 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Bantuan" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Peribadi" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Tetapan" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Pengguna" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplikasi" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index ba8164f4f7..50218ee5c8 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Emel tidak sah" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "Lanjutan" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Tambah apps anda" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Pilih aplikasi" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman applikasi di apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Kemaskini" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kata laluan" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Email" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index c9a2b748a3..87d1374cf6 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po index acf08a184c..57b4d246ca 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 32b6c525cb..3214ef545f 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "မတွေ့ရှိမိပါ" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "ဝင်ရောက်ရန်" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ယခင်" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 653225d03e..f350b606b7 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 8511cce551..b377716c12 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/my_MM/lib.po index 13d9374b1a..6bdf49d04c 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "အကူအညီ" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "သုံးစွဲသူ" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Apps" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "အက်ဒမင်" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:329 setup.php:374 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:238 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:237 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432 -#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573 -#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617 -#: setup.php:623 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433 -#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574 -#: setup.php:585 setup.php:601 setup.php:609 setup.php:618 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:308 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:309 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:314 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:315 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:466 setup.php:533 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:592 setup.php:624 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:644 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:867 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:868 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/my_MM/user_webdavauth.po b/l10n/my_MM/user_webdavauth.po index 51443b323f..f89dd9cd9e 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index c18033b3b2..3f821b96d2 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "Tilgang nektet" msgid "Cloud not found" msgstr "Sky ikke funnet" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "web tjenester du kontrollerer" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Rediger kategorier" @@ -611,6 +607,13 @@ msgstr "Logg inn" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 96dd51fb7f..db5dc4229a 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 68f58025f8..ffaaf976df 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 61d8ea4c6e..49724c7499 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 11bb62601b..340a421ab1 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index a539ed5369..338fbef3db 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Hjelp" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personlig" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Innstillinger" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Brukere" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Apper" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Vennligst dobbelsjekk installasjonsguiden." diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 0f28157fe1..3c79b866ee 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "Ugyldig epost" msgid "Unable to delete group" msgstr "Kan ikke slette gruppe" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Kan ikke slette bruker" @@ -325,11 +325,11 @@ msgstr "Mer" msgid "Less" msgstr "Mindre" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versjon" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Utviklet avownCloud sammfunnet, kildekoden er lisensiert under AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Legg til din App" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Flere Apps" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Velg en app" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Se applikasjonens side på apps.owncloud.org" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-lisensiert av " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Oppdater" @@ -387,72 +387,72 @@ msgstr "Feilsporing" msgid "Commercial Support" msgstr "Kommersiell støtte" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Få dine apps til å synkronisere dine filer" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Vis \"Førstegangs veiveiseren\" på nytt" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Du har brukt %s av tilgjengelig %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Få dine apps til å synkronisere dine filer" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Vis \"Førstegangs veiveiseren\" på nytt" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Visningsnavn" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Epost" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Oppi epostadressen du vil tilbakestille passordet for" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Språk" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressen for å kople til ownCloud i din filbehandler" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index a403152e4a..d0062cef4f 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index 6228186b67..189cee2719 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index acb376ebaf..049092f64c 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/ne/user_webdavauth.po b/l10n/ne/user_webdavauth.po index d8b30a63e3..c71f7955bd 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 343e4a5304..1db98faf6a 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Gebruiker %s deelde een bestand met u" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Gebruiker %s deelde een map met u" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Toegang verboden" msgid "Cloud not found" msgstr "Cloud niet gevonden" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "Webdiensten in eigen beheer" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Wijzig categorieën" @@ -612,6 +608,13 @@ msgstr "Meld je aan" msgid "Alternative Logins" msgstr "Alternatieve inlogs" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 7752d28177..8f138a098a 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index f98d4c9f90..f3c693b27b 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 82c2c7f4a4..ab79220ef4 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/nl/files_trashbin.po index 9e2b5075f1..7d8667d67b 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/nl/lib.po index 3adb84a822..01553f9117 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Help" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Persoonlijk" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Instellingen" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Gebruikers" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Apps" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Beheerder" @@ -114,76 +114,76 @@ msgstr "%s er mogen geen puntjes in de databasenaam voorkomen" msgid "%s set the database host." msgstr "%s instellen databaseservernaam." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL gebruikersnaam en/of wachtwoord ongeldig" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Geef of een bestaand account op of het beheerdersaccount." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Er kon geen verbinding met Oracle worden bereikt" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL gebruikersnaam en/of wachtwoord ongeldig" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fout: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Onjuiste commande was: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL gebruiker '%s'@'localhost' bestaat al." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Verwijder deze gebruiker uit MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL gebruiker '%s'@'%%' bestaat al" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Verwijder deze gebruiker uit MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Controleer de installatiehandleiding goed." diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index b065718202..d51d2a3a34 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -60,7 +60,7 @@ msgstr "Ongeldige e-mail" msgid "Unable to delete group" msgstr "Niet in staat om groep te verwijderen" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Niet in staat om gebruiker te verwijderen" @@ -326,11 +326,11 @@ msgstr "Meer" msgid "Less" msgstr "Minder" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versie" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "App toevoegen" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Meer apps" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Selecteer een app" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Zie de applicatiepagina op apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-Gelicenseerd door " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Bijwerken" @@ -388,72 +388,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Commerciële ondersteuning" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Download de apps om bestanden te syncen" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Toon de Eerste start Wizard opnieuw" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Je hebt %s gebruikt van de beschikbare %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Download de apps om bestanden te syncen" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Toon de Eerste start Wizard opnieuw" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nieuw" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Weergavenaam" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Vul een mailadres in om je wachtwoord te kunnen herstellen" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Taal" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 89846813d9..2133d848fb 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index 9cd0fb7d2e..20a40d4db7 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV authenticatie" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 16da220150..8319381da8 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -21,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Brukaren %s delte ei fil med deg" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Brukaren %s delte ei mappe med deg" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Brukaren %s delte fila «%s» med deg. Du kan lasta ho ned her: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Brukaren %s delte mappa «%s» med deg. Du kan lasta ho ned her: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -482,6 +463,21 @@ msgstr "Tilgang forbudt" msgid "Cloud not found" msgstr "Fann ikkje skyen" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "Vev tjenester under din kontroll" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Endra kategoriar" @@ -613,6 +609,13 @@ msgstr "Logg inn" msgid "Alternative Logins" msgstr "Alternative innloggingar" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "førre" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 3b4d27d66b..a5cd9acfec 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 155e8cde36..90767bd6a9 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 1a4ba6d1b7..037b999576 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index a6eb1ef45d..14230546f5 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index b1736ee4ff..c0bda9dd75 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Hjelp" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personleg" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Innstillingar" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Brukarar" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Program" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administrer" @@ -114,76 +114,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Ver vennleg og dobbeltsjekk installasjonsrettleiinga." diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 14970866c7..b8c13985ed 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -60,7 +60,7 @@ msgstr "Ugyldig e-postadresse" msgid "Unable to delete group" msgstr "Klarte ikkje å sletta gruppa" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Klarte ikkje sletta brukaren" @@ -326,11 +326,11 @@ msgstr "Meir" msgid "Less" msgstr "Mindre" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Kjeldekoden, utvikla av ownCloud-fellesskapet, er lisensiert under AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Legg til din app" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Fleire app-ar" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Vel eit program" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Sjå programsida på apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "Lisensiert under av " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Oppdater" @@ -388,72 +388,72 @@ msgstr "Feilsporar" msgid "Commercial Support" msgstr "Betalt brukarstøtte" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Få app-ar som kan synkronisera filene dine" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Vis Oppstartvegvisaren igjen" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Du har brukt %s av dine tilgjengelege %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Få app-ar som kan synkronisera filene dine" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Vis Oppstartvegvisaren igjen" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Passordet ditt er endra" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Klarte ikkje endra passordet" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Passord" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Visingsnamn" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-post" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Di epost-adresse" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Fyll inn e-postadressa di for å gjera passordgjenoppretting mogleg" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Språk" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Hjelp oss å omsetja" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressa for å kopla til din ownCloud frå filhandsamaren din" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 756a0e2c6a..3352574d3d 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/nn_NO/user_webdavauth.po b/l10n/nn_NO/user_webdavauth.po index 37bb2ea522..b281d34b07 100644 --- a/l10n/nn_NO/user_webdavauth.po +++ b/l10n/nn_NO/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-05-31 01:58+0200\n" -"PO-Revision-Date: 2013-05-30 10:50+0000\n" -"Last-Translator: unhammer \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "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" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV-autentisering" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "Nettadresse: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 1e4fa173ef..ef3eed64e3 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "Acces enebit" msgid "Cloud not found" msgstr "Nívol pas trobada" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "Services web jos ton contraròtle" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edita categorias" @@ -611,6 +607,13 @@ msgstr "Dintrada" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "dariièr" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index ee46c6f964..d3d7966158 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 71eac19f43..c44fec31d5 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/oc/files_sharing.po index a9f29afc98..554d55b4fc 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/oc/files_trashbin.po index bfba438eff..0245618772 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/oc/lib.po index 3cae83316d..9b3fd029a9 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+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" @@ -17,27 +17,27 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Ajuda" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personal" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Configuracion" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Usancièrs" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Apps" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 2931c0ebeb..318f9ad179 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Corrièl incorrècte" msgid "Unable to delete group" msgstr "Pas capable d'escafar un grop" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Pas capable d'escafar un usancièr" @@ -324,11 +324,11 @@ msgstr "Mai d'aquò" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Ajusta ton App" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Selecciona una applicacion" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Agacha la pagina d'applications en cò de apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licençiat per " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senhal" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Lenga" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 28b9c18dc1..2c06da0d13 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 13f4be6160..72a127406a 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 48bcb2485d..a43292c151 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -21,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Użytkownik %s udostępnił ci plik" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Użytkownik %s udostępnił ci folder" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Użytkownik %s udostępnił ci plik „%s”. Możesz pobrać go stąd: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Użytkownik %s udostępnił ci folder „%s”. Możesz pobrać go stąd: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -482,6 +463,21 @@ msgstr "Dostęp zabroniony" msgid "Cloud not found" msgstr "Nie odnaleziono chmury" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edytuj kategorie" @@ -613,6 +609,13 @@ msgstr "Zaloguj" msgid "Alternative Logins" msgstr "Alternatywne loginy" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "wstecz" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 004841ecda..f735c536b2 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: adbrand \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 8aa3c49865..937887c739 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 0d27d230bd..2497aaaf2d 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/pl/files_trashbin.po index 5fc525f122..885692430d 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/pl/lib.po index 8d76f3508a..963b234b1b 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Pomoc" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Osobiste" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Ustawienia" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Użytkownicy" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplikacje" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administrator" @@ -114,76 +114,76 @@ msgstr "%s nie można używać kropki w nazwie bazy danych" msgid "%s set the database host." msgstr "%s ustaw hosta bazy danych." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Należy wprowadzić istniejące konto użytkownika lub administratora." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Nie można ustanowić połączenia z bazą Oracle" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Błąd DB: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Niepoprawna komenda: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Użytkownik MySQL '%s'@'localhost' już istnieje" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Usuń tego użytkownika z MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Użytkownik MySQL '%s'@'%%t' już istnieje" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Usuń tego użytkownika z MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nazwa i/lub hasło serwera MS SQL jest niepoprawne: %s." -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Sprawdź ponownie przewodniki instalacji." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 8e1c531a3a..e05160538e 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -60,7 +60,7 @@ msgstr "Nieprawidłowy e-mail" msgid "Unable to delete group" msgstr "Nie można usunąć grupy" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Nie można usunąć użytkownika" @@ -326,11 +326,11 @@ msgstr "Więcej" msgid "Less" msgstr "Mniej" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Wersja" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Stworzone przez społeczność ownCloud, kod źródłowy na licencji AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Dodaj swoją aplikację" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Więcej aplikacji" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Zaznacz aplikację" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Zobacz stronę aplikacji na apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licencjonowane przez " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Aktualizuj" @@ -388,72 +388,72 @@ msgstr "Zgłaszanie błędów" msgid "Commercial Support" msgstr "Wsparcie komercyjne" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Pobierz aplikacje żeby synchronizować swoje pliki" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Uruchom ponownie kreatora pierwszego uruchomienia" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Wykorzystujesz %s z dostępnych %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Pobierz aplikacje żeby synchronizować swoje pliki" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Uruchom ponownie kreatora pierwszego uruchomienia" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Hasło" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Wyświetlana nazwa" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Email" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Twój adres e-mail" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Język" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 77d63dc096..008f309727 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index 0f5ded49b5..4b08a26039 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -25,8 +25,8 @@ msgid "WebDAV Authentication" msgstr "Uwierzytelnienie WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 2faefa6d94..b98165b3ea 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "O usuário %s compartilhou um arquivo com você" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "O usuário %s compartilhou uma pasta com você" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "O usuário %s compartilhou com você o arquivo \"%s\", que está disponível para download em: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "O usuário %s compartilhou com você a pasta \"%s\", que está disponível para download em: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Acesso proibido" msgid "Cloud not found" msgstr "Cloud não encontrado" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorias" @@ -612,6 +608,13 @@ msgstr "Fazer login" msgid "Alternative Logins" msgstr "Logins alternativos" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 67ad1e60d5..cf6d54133b 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 61d7b40ea1..d33fbc41fa 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index d5a177bc6a..ccde5ad3f6 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 4a5512d874..223348ceb8 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/pt_BR/lib.po index c9944de137..831450d742 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Ajuda" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Pessoal" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Ajustes" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Usuários" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplicações" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -114,76 +114,76 @@ msgstr "%s você não pode usar pontos no nome do banco de dados" msgid "%s set the database host." msgstr "%s defina o host do banco de dados." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Nome de usuário e/ou senha PostgreSQL inválido(s)" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Você precisa inserir uma conta existente ou o administrador." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Conexão Oracle não pode ser estabelecida" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Nome de usuário e/ou senha MySQL inválido(s)" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Erro no BD: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Comando ofensivo era: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "O usuário MySQL '%s'@'localhost' já existe." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Derrubar este usuário do MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Usuário MySQL '%s'@'%%' já existe" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Derrube este usuário do MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Nome de usuário e/ou senha Oracle inválido(s)" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuário e/ou senha MS SQL inválido(s): %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, confira os guias de instalação." diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index a6aa0509e4..f5976d91bb 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "E-mail inválido" msgid "Unable to delete group" msgstr "Não foi possível remover grupo" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Não foi possível remover usuário" @@ -326,11 +326,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versão" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desenvolvido pela comunidade ownCloud, o código fonte está licenciado sob AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Adicione seu Aplicativo" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Mais Apps" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Selecione um Aplicativo" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Ver página do aplicativo em apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licenciado por " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Atualizar" @@ -388,72 +388,72 @@ msgstr "Rastreador de Bugs" msgid "Commercial Support" msgstr "Suporte Comercial" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Faça com que os apps sincronize seus arquivos" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Mostrar este Assistente de novo" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Você usou %s do seu espaço de %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Faça com que os apps sincronize seus arquivos" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Mostrar este Assistente de novo" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senha" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Nome de Exibição" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-mail" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Preencha um endereço de e-mail para habilitar a recuperação de senha" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Idioma" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usar este endereço para conectar-se ao seu ownCloud no seu gerenciador de arquivos" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index b72b019791..a63c5d293e 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_webdavauth.po b/l10n/pt_BR/user_webdavauth.po index ef503e227b..0b37738524 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "Autenticação WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index a3eea06106..a18f1d1030 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -21,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "O utilizador %s partilhou um ficheiro consigo." - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "O utilizador %s partilhou uma pasta consigo." - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "O utilizador %s partilhou o ficheiro \"%s\" consigo. Está disponível para download aqui: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "O utilizador %s partilhou a pasta \"%s\" consigo. Está disponível para download aqui: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -482,6 +463,21 @@ msgstr "Acesso interdito" msgid "Cloud not found" msgstr "Cloud nao encontrada" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorias" @@ -613,6 +609,13 @@ msgstr "Entrar" msgid "Alternative Logins" msgstr "Contas de acesso alternativas" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index cde4bd2fe7..c62a270490 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: bmgmatias \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 47381cc631..8b6e77f5e1 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index ae91ca85db..1d43a26736 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 14e8275dc7..22c5fdc702 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/pt_PT/lib.po index b1732385bb..493323027c 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Ajuda" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Pessoal" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Configurações" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Utilizadores" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplicações" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -114,76 +114,76 @@ msgstr "%s não é permitido utilizar pontos (.) no nome da base de dados" msgid "%s set the database host." msgstr "%s defina o servidor da base de dados (geralmente localhost)" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Nome de utilizador/password do PostgreSQL inválido" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Precisa de introduzir uma conta existente ou de administrador" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Não foi possível estabelecer a ligação Oracle" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Nome de utilizador/password do MySQL inválida" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Erro na BD: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "O comando gerador de erro foi: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "O utilizador '%s'@'localhost' do MySQL já existe." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Eliminar este utilizador do MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "O utilizador '%s'@'%%' do MySQL já existe" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Eliminar este utilizador do MySQL" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Nome de utilizador/password do Oracle inválida" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de utilizador/password do MySQL é inválido: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Por favor verifique installation guides." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 600e4d5d6d..17f654b386 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 09:50+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Nelson Rosado \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -327,11 +327,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:235 templates/personal.php:114 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versão" -#: templates/admin.php:237 templates/personal.php:117 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desenvolvido pela comunidade ownCloud, ocódigo fonte está licenciado sob a AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Adicione a sua aplicação" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Mais Aplicações" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Selecione uma aplicação" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Ver a página da aplicação em apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licenciado por " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Actualizar" @@ -446,15 +446,15 @@ msgstr "Preencha com o seu endereço de email para ativar a recuperação da pal msgid "Language" msgstr "Idioma" -#: templates/personal.php:98 +#: templates/personal.php:99 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:103 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:105 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 2a3fc93241..241d17ea7b 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_webdavauth.po b/l10n/pt_PT/user_webdavauth.po index e7e520a00a..bee54e46da 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "Autenticação WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 8af98b2650..01d8cb23c8 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Utilizatorul %s a partajat un fișier cu tine" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Utilizatorul %s a partajat un dosar cu tine" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Utilizatorul %s a partajat fișierul \"%s\" cu tine. Îl poți descărca de aici: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Utilizatorul %s a partajat dosarul \"%s\" cu tine. Îl poți descărca de aici: %s " +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Acces interzis" msgid "Cloud not found" msgstr "Nu s-a găsit" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "servicii web controlate de tine" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editează categorii" @@ -612,6 +608,13 @@ msgstr "Autentificare" msgid "Alternative Logins" msgstr "Conectări alternative" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedentul" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 1aaf124c8c..d9e0e54aac 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 bf5db90818..3bde8e5a39 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/ro/files_sharing.po b/l10n/ro/files_sharing.po index b87f325317..867e787303 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 71b0644ad4..04387f57c6 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/ro/lib.po b/l10n/ro/lib.po index 8e2c6af784..0e610d10f4 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Ajutor" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personal" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Setări" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Utilizatori" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplicații" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 83b37d9499..6212e1df37 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "E-mail nevalid" msgid "Unable to delete group" msgstr "Nu s-a putut șterge grupul" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Nu s-a putut șterge utilizatorul" @@ -324,11 +324,11 @@ msgstr "Mai mult" msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Adaugă aplicația ta" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Mai multe aplicații" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Selectează o aplicație" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Vizualizează pagina applicației pe apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licențiat " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Actualizare" @@ -386,72 +386,72 @@ msgstr "Urmărire bug-uri" msgid "Commercial Support" msgstr "Suport comercial" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Ia acum aplicatia pentru sincronizarea fisierelor " + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Ați utilizat %s din %s disponibile" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Ia acum aplicatia pentru sincronizarea fisierelor " - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parolă" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Email" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Completează o adresă de mail pentru a-ți putea recupera parola" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Limba" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Folosește această adresă pentru a conecta ownCloud cu managerul de fișiere" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 344678eadd..2f396060ca 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_webdavauth.po b/l10n/ro/user_webdavauth.po index 7c28a3a2af..79f4ebb8a7 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "Autentificare WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 4e070e3a8b..4227630bf9 100644 --- a/l10n/ru/core.po +++ b/l10n/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -22,27 +22,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Пользователь %s поделился с вами файлом" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Пользователь %s открыл вам доступ к папке" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Пользователь %s открыл вам доступ к файлу \"%s\". Он доступен для загрузки здесь: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Пользователь %s открыл вам доступ к папке \"%s\". Она доступна для загрузки здесь: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -483,6 +464,21 @@ msgstr "Доступ запрещён" msgid "Cloud not found" msgstr "Облако не найдено" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "веб-сервисы под вашим управлением" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Редактировать категрии" @@ -614,6 +610,13 @@ msgstr "Войти" msgid "Alternative Logins" msgstr "Альтернативные имена пользователя" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "пред" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 02c0711456..7892b6361e 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Friktor \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 2722a7c0e8..2cab74c9da 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 899a8048c0..fccec3e5eb 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/ru/files_trashbin.po index 6edac7e313..e64c1ed9c0 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/ru/lib.po index e180213766..ee7c104847 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Помощь" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Личное" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Конфигурация" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Пользователи" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Приложения" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -114,76 +114,76 @@ msgstr "%s Вы не можете использовать точки в име msgid "%s set the database host." msgstr "%s задайте хост базы данных." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль PostgreSQL" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Вы должны войти или в существующий аккаунт или под администратором." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "соединение с Oracle не может быть установлено" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль MySQL" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Ошибка БД: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Вызываемая команда была: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Пользователь MySQL '%s'@'localhost' уже существует." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Удалить этого пользователя из MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Пользователь MySQL '%s'@'%%' уже существует" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Удалить этого пользователя из MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль Oracle" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Вызываемая команда была: \"%s\", имя: %s, пароль: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Имя пользователя и/или пароль MS SQL не подходит: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index d18bb63a00..2b72d3b7c7 100644 --- a/l10n/ru/settings.po +++ b/l10n/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -60,7 +60,7 @@ msgstr "Неправильный Email" msgid "Unable to delete group" msgstr "Невозможно удалить группу" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Невозможно удалить пользователя" @@ -326,11 +326,11 @@ msgstr "Больше" msgid "Less" msgstr "Меньше" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Версия" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Разрабатывается сообществом ownCloud, исходный код доступен под лицензией AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Добавить приложение" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Больше приложений" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Выберите приложение" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Смотрите дополнения на apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr " лицензия. Автор " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Обновить" @@ -388,72 +388,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Коммерческая поддержка" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Получить приложения для синхронизации ваших файлов" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Показать помощник настройки" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Вы использовали %s из доступных %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Отображаемое имя" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-mail" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Введите адрес электронной почты чтобы появилась возможность восстановления пароля" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Язык" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Используйте этот URL для подключения файлового менеджера к Вашему хранилищу" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index c569c67af8..6a881240f7 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Fenuks \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 d6d190c1ea..ad92e25e80 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -25,8 +25,8 @@ msgid "WebDAV Authentication" msgstr "Идентификация WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index f3175ba4f3..9bb1fa397b 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "ඇතුල් වීම තහනම්" msgid "Cloud not found" msgstr "සොයා ගත නොහැක" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ප්‍රභේදයන් සංස්කරණය" @@ -611,6 +607,13 @@ msgstr "ප්‍රවේශවන්න" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 87e442e0f5..9cab9f9da8 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 c20b3df310..ee4f10fa46 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 18580fb62f..506e595c50 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/si_LK/files_trashbin.po index cb21c984b7..85042e4e65 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/si_LK/lib.po index d344905ccb..264f8a1978 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "උදව්" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "පෞද්ගලික" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "සිටුවම්" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "පරිශීලකයන්" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "යෙදුම්" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "පරිපාලක" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 0fc8fd785f..6e6f47d41c 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "අවලංගු වි-තැපෑල" msgid "Unable to delete group" msgstr "කණ්ඩායම මැකීමට නොහැක" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "පරිශීලකයා මැකීමට නොහැක" @@ -324,11 +324,11 @@ msgstr "වැඩි" msgid "Less" msgstr "අඩු" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "නිපදන ලද්දේ ownCloud සමාජයෙන්, the මුල් කේතය ලයිසන්ස් කර ඇත්තේ AGPL යටතේ." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "යෙදුමක් එක් කිරීම" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "තවත් යෙදුම්" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "යෙදුමක් තොරන්න" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "යාවත්කාල කිරීම" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "මුර පදය" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "විද්‍යුත් තැපෑල" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "ඔබගේ විද්‍යුත් තැපෑල" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "මුරපද ප්‍රතිස්ථාපනය සඳහා විද්‍යුත් තැපැල් විස්තර ලබා දෙන්න" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 8f0971afc4..422a754510 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 50163948c6..f9745043cb 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/sk/core.po b/l10n/sk/core.po index dc58b629f0..4910cee063 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/sk/user_webdavauth.po b/l10n/sk/user_webdavauth.po index 7eac54f7db..6704af8cc4 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 0e7b727484..21946359e3 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Používateľ %s zdieľa s Vami súbor" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Používateľ %s zdieľa s Vami priečinok" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Používateľ %s zdieľa s Vami súbor \"%s\". Môžete si ho stiahnuť tu: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Používateľ %s zdieľa s Vami priečinok \"%s\". Môžete si ho stiahnuť tu: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Prístup odmietnutý" msgid "Cloud not found" msgstr "Nenájdené" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Upraviť kategórie" @@ -612,6 +608,13 @@ msgstr "Prihlásiť sa" msgid "Alternative Logins" msgstr "Alternatívne prihlasovanie" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "späť" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 1a47c8b6da..e3bd2d258c 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index ca70d39c31..d9396b678e 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index c327fdcf61..922dddb822 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 3f1c1fb600..600a7853b0 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/sk_SK/lib.po b/l10n/sk_SK/lib.po index c892d8c56c..de33cbb359 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Pomoc" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Osobné" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Nastavenia" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Používatelia" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Aplikácie" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Administrátor" @@ -114,76 +114,76 @@ msgstr "V názve databázy %s nemôžete používať bodky" msgid "%s set the database host." msgstr "Zadajte názov počítača s databázou %s." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre PostgreSQL databázu je neplatné" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadať jestvujúci účet alebo administrátora." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Nie je možné pripojiť sa k Oracle" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre MySQL databázu je neplatné" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba DB: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Podozrivý príkaz bol: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Používateľ '%s'@'localhost' už v MySQL existuje." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Zahodiť používateľa z MySQL." -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Používateľ '%s'@'%%' už v MySQL existuje" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Zahodiť používateľa z MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Používateľské meno, alebo heslo MS SQL nie je platné: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Prosím skontrolujte inštalačnú príručku." diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 713d0a7721..4d125c48f4 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "Neplatný email" msgid "Unable to delete group" msgstr "Nie je možné odstrániť skupinu" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Nie je možné odstrániť používateľa" @@ -325,11 +325,11 @@ msgstr "Viac" msgid "Less" msgstr "Menej" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Verzia" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Vyvinuté komunitou ownCloud,zdrojový kód je licencovaný pod AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Pridať vašu aplikáciu" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Viac aplikácií" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Vyberte aplikáciu" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Pozrite si stránku aplikácií na apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licencované " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Aktualizovať" @@ -387,72 +387,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Komerčná podpora" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Získať aplikácie na synchronizáciu Vašich súborov" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Znovu zobraziť sprievodcu prvým spustením" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Použili ste %s z %s dostupných " -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Získať aplikácie na synchronizáciu Vašich súborov" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Znovu zobraziť sprievodcu prvým spustením" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Heslo bolo zmenené" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované meno" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Email" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 8b1e52f7e2..364d219f89 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index b0cb3100e7..584941b201 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV overenie" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 7ae69876a8..095b3ee65b 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Uporabnik %s je omogočil souporabo datoteke" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Uporabnik %s je omogočil souporabo mape" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Uporabnik %s je omogočil souporabo datoteke \"%s\". Prejmete jo lahko preko povezave: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Uporabnik %s je omogočil souporabo mape \"%s\". Prejmete jo lahko preko povezave: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Dostop je prepovedan" msgid "Cloud not found" msgstr "Oblaka ni mogoče najti" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "spletne storitve pod vašim nadzorom" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Uredi kategorije" @@ -612,6 +608,13 @@ msgstr "Prijava" msgid "Alternative Logins" msgstr "Druge prijavne možnosti" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "nazaj" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 83b7d7a0e2..7bb679f934 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 c7ba402ab0..c22fd3c521 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 3f42c284a8..8a69883b89 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/sl/files_trashbin.po index 65f295ebac..35b1696bcf 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/sl/lib.po index ccc1be9ff6..884c58f889 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Pomoč" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Osebno" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Nastavitve" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Uporabniki" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Programi" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Skrbništvo" @@ -113,76 +113,76 @@ msgstr "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik." msgid "%s set the database host." msgstr "%s - vnos gostitelja podatkovne zbirke." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Uporabniško ime ali geslo PostgreSQL ni veljavno" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Uporabniško ime ali geslo MySQL ni veljavno" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Napaka podatkovne zbirke: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Napačni ukaz je: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Uporabnik MySQL '%s'@'localhost' že obstaja." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Uporabnik MySQL '%s'@'%%' že obstaja." -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Uporabniško ime ali geslo Oracle ni veljavno" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Uporabniško ime ali geslo MS SQL ni veljavno: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Preverite navodila namestitve." diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 1302cb8f88..df08eb40fa 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "Neveljaven elektronski naslov" msgid "Unable to delete group" msgstr "Skupine ni mogoče izbrisati" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Uporabnika ni mogoče izbrisati" @@ -325,11 +325,11 @@ msgstr "Več" msgid "Less" msgstr "Manj" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Različica" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Programski paket razvija skupnost ownCloud. Izvorna koda je objavljena pod pogoji AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Dodaj program" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Več programov" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Izbor programa" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Obiščite spletno stran programa na apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-z dovoljenjem " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Posodobi" @@ -387,72 +387,72 @@ msgstr "Sledilnik hroščev" msgid "Commercial Support" msgstr "Podpora strankam" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Pridobi programe za usklajevanje datotek" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Zaženi čarovnika prvega zagona" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Uporabljenega je %s od razpoložljivih %s prostora." -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Pridobi programe za usklajevanje datotek" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Zaženi čarovnika prvega zagona" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Geslo" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Geslo je spremenjeno" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Prikazano ime" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Elektronski naslov" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Osebni elektronski naslov" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Jezik" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Sodelujte pri prevajanju" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud." diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 0ca6dd20a2..50becb56bc 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 1d6f802d7e..8dadab8687 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "Overitev WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 0b5b9d8354..49fc5f074e 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Përdoruesi %s ndau me ju një skedar" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Përdoruesi %s ndau me ju një dosje" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Përdoruesi %s ndau me ju skedarin \"%s\". Ky skedar është gati për shkarkim nga këtu: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Përdoruesi %s ndau me ju dosjen \"%s\". Kjo dosje është gati për shkarkim nga këto: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Ndalohet hyrja" msgid "Cloud not found" msgstr "Cloud-i nuk u gjet" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "shërbime web nën kontrollin tënd" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Ndrysho kategoritë" @@ -612,6 +608,13 @@ msgstr "Hyrje" msgid "Alternative Logins" msgstr "Hyrje alternative" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "mbrapa" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index df6a46e49c..a6b80deaaa 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 5dc4d6a8a9..bc3650b7c4 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 e3721b11f5..4a7653f8f5 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/sq/files_trashbin.po index b0c2693ecd..218015d5b2 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/sq/lib.po index e56165d5a8..d7e29e83e5 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Ndihmë" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personale" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Parametra" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Përdoruesit" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "App" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -113,76 +113,76 @@ msgstr "%s nuk mund të përdorni pikat tek emri i database-it" msgid "%s set the database host." msgstr "%s caktoni pozicionin (host) e database-it." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm." -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Veprim i gabuar i DB-it: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Komanda e gabuar ishte: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Përdoruesi MySQL '%s'@'localhost' ekziston." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Eliminoni këtë përdorues nga MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Përdoruesi MySQL '%s'@'%%' ekziston" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Eliminoni këtë përdorues nga MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index c8a77a4794..7378e4e660 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Azhurno" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Merrni app-et për sinkronizimin e skedarëve tuaj" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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 "Merrni app-et për sinkronizimin e skedarëve tuaj" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kodi" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Kodi i ri" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Email-i" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index fd69f40469..590bd739d5 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 2ffc70b6f1..953547cd59 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 5efac0e07a..4b34968f4c 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Корисник %s дели са вама датотеку" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Корисник %s дели са вама директоријум" - -#: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "Забрањен приступ" msgid "Cloud not found" msgstr "Облак није нађен" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "веб сервиси под контролом" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Измени категорије" @@ -611,6 +607,13 @@ msgstr "Пријава" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 26fecf53e0..3a69685cfd 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 12878f651f..4a55e5abd5 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 228adbe6d3..fefeb0e610 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/sr/files_trashbin.po index a283f2b88f..096c6b148f 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/sr/lib.po index 14936fa1ba..1c0236fef4 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Помоћ" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Лично" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Поставке" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Корисници" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Апликације" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Администратор" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Погледајте водиче за инсталацију." diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index f6527a7d74..c9821ef534 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Неисправна е-адреса" msgid "Unable to delete group" msgstr "Не могу да уклоним групу" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Не могу да уклоним корисника" @@ -324,11 +324,11 @@ msgstr "Више" msgid "Less" msgstr "Мање" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Верзија" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Развијају Оунклауд (ownCloud) заједница, изворни код је издат под АГПЛ лиценцом." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Додајте ваш програм" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Више програма" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Изаберите програм" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Погледајте страницу са програмима на apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-лиценцирао " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Ажурирај" @@ -386,72 +386,72 @@ msgstr "Праћење грешака" msgid "Commercial Support" msgstr "Комерцијална подршка" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Преузмите апликације ради синхронизовања датотека" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Поново прикажи чаробњак за прво покретање" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Искористили сте %s од дозвољених %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Лозинка је промењена" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Име за приказ" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Ун" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Језик" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index c0f94ff894..991dc67423 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 30b3f69adc..bff29cbe68 100644 --- a/l10n/sr/user_webdavauth.po +++ b/l10n/sr/user_webdavauth.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rancher , 2013 +# Rancher , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV провера идентитета" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "Адреса: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 15bd6c32aa..9fb4684fc6 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "Oblak nije nađen" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodno" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 1ded1154bb..79afcef0b5 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 35b50f4b21..ffcb0cad58 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 6f7269a370..4e68cf57a6 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index ad664f2c7b..3b5252f02a 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/sr@latin/lib.po b/l10n/sr@latin/lib.po index 6085ffa779..d8e0139095 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Pomoć" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Lično" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Podešavanja" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Korisnici" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Programi" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Adninistracija" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 20e2f534c2..76471e7d37 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Izaberite program" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "E-mail" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Jezik" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/sr@latin/user_webdavauth.po b/l10n/sr@latin/user_webdavauth.po index 8a2eb941c1..7c1b403c83 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 9fc2cac3c4..164fe5f225 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -5,12 +5,13 @@ # Translators: # Gunnar Norin , 2013 # medialabs, 2013 +# medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -21,27 +22,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Användare %s delade en fil med dig" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Användare %s delade en mapp med dig" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Användare %s delade filen \"%s\" med dig. Den finns att ladda ner här: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Användare %s delade mappen \"%s\" med dig. Den finns att ladda ner här: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -428,11 +410,11 @@ msgid "" "key there will be no way to get your data back once the password was " "resetted. If you are not sure what to do, please contact your administrator " "first before continue. Do you really want to continue?" -msgstr "" +msgstr "Dina filer ser ut att vara krypterade. Om du inte har aktiverat återställningsnyckeln så finns finns det inget sätt att få tillbaka dina filer när du väl har återställt lösenordet. Om du inte är säker på vad du ska göra, vänligen kontakta din administratör innan du fortsätter. Vill du verkligen fortsätta?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ja, jag vill verkligen återställa mitt lösenord nu" #: lostpassword/templates/lostpassword.php:29 msgid "Request reset" @@ -482,6 +464,21 @@ msgstr "Åtkomst förbjuden" msgid "Cloud not found" msgstr "Hittade inget moln" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "webbtjänster under din kontroll" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editera kategorier" @@ -613,6 +610,13 @@ msgstr "Logga in" msgid "Alternative Logins" msgstr "Alternativa inloggningar" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "föregående" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 5c44a0ba7a..898d3a676c 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-13 07:14+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Gunnar Norin \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 ea19e43297..4e938730a8 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # medialabs, 2013 +# medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,11 +74,11 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Du kan låsa upp din privata nyckel i dina" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "personliga inställningar" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -132,11 +133,11 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Gammalt inloggningslösenord" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Nuvarande inloggningslösenord" #: templates/settings-personal.php:35 msgid "Update Private Key Password" @@ -144,7 +145,7 @@ msgstr "" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Aktivera lösenordsåterställning" #: templates/settings-personal.php:47 msgid "" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index ae4a79dff1..6d4ca48e41 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 41ada74682..e5b29c5e8c 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/sv/files_trashbin.po index 3020acc5ee..fc6b11eaf4 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/sv/lib.po index 97d2a7079c..cb419af40f 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Hjälp" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Personligt" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Inställningar" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Användare" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Program" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Admin" @@ -114,76 +114,76 @@ msgstr "%s du får inte använda punkter i databasnamnet" msgid "%s set the database host." msgstr "%s ange databasserver/host." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL-användarnamnet och/eller lösenordet är felaktigt" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Du måste antingen ange ett befintligt konto eller administratör." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Oracle-anslutning kunde inte etableras" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL-användarnamnet och/eller lösenordet är felaktigt" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "DB error: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Det felaktiga kommandot var: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL-användaren '%s'@'localhost' existerar redan." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Radera denna användare från MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQl-användare '%s'@'%%' existerar redan" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Radera denna användare från MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle-användarnamnet och/eller lösenordet är felaktigt" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Det felande kommandot var: \"%s\", name: %s, password: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL-användaren och/eller lösenordet var inte giltigt: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Var god kontrollera installationsguiden." diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 763df6f06c..c4dd85195a 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-13 07:13+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Gunnar Norin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 7b02c64191..591f1b6ca4 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index ec341c5481..0f430e9dfc 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV Autentisering" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 602b998564..1fc1e95945 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/sw_KE/user_webdavauth.po b/l10n/sw_KE/user_webdavauth.po index b41a7fe5ab..f37c585e1e 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index e90dd5f0c9..ad003c96d0 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "அணுக தடை" msgid "Cloud not found" msgstr "Cloud காணப்படவில்லை" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "வகைகளை தொகுக்க" @@ -611,6 +607,13 @@ msgstr "புகுபதிகை" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "முந்தைய" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index cf350ec05e..cc9666388f 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 bef22321d5..f8a32b56b0 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/ta_LK/files_sharing.po index c167f66378..02c0c0beb9 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 517ed2b22a..ba3ed74847 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/ta_LK/lib.po index 3f2dc459e8..5612ea1c41 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "உதவி" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "தனிப்பட்ட" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "அமைப்புகள்" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "பயனாளர்" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "செயலிகள்" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "நிர்வாகம்" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 9c24f88e5c..6f64b7c364 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "செல்லுபடியற்ற மின்னஞ்சல்" msgid "Unable to delete group" msgstr "குழுவை நீக்க முடியாது" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "பயனாளரை நீக்க முடியாது" @@ -324,11 +324,11 @@ msgstr "மேலதிக" msgid "Less" msgstr "குறைவான" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Developed by the ownCloud community, the source code is licensed under the AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "உங்களுடைய செயலியை சேர்க்க" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "மேலதிக செயலிகள்" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "செயலி ஒன்றை தெரிவுசெய்க" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com இல் செயலி பக்கத்தை பார்க்க" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-அனுமதி பெற்ற " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "இற்றைப்படுத்தல்" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "மொழி" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index affd247d76..53aa28a928 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_webdavauth.po b/l10n/ta_LK/user_webdavauth.po index fa5d31237c..143001981c 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/te/core.po b/l10n/te/core.po index 37d9da6796..b029d43739 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index 21000fa6e0..344844bd2f 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 d7e1c912c3..fcd7c41368 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/te/files_trashbin.po index 78a9d4a154..23be9fa1bf 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/te/lib.po index a2217b3dee..026dcb4ff6 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+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" @@ -17,27 +17,27 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "సహాయం" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "అమరికలు" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "వాడుకరులు" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 62b68d8d5b..b69ee26731 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "మరిన్ని" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "సంకేతపదం" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "మీ ఈమెయిలు చిరునామా" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "భాష" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 6ff8efb842..c4abd3a9aa 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_webdavauth.po b/l10n/te/user_webdavauth.po index dac5225d96..e586de734d 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4291c5f9cd..4cc5d8a156 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,37 +8,18 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index f604c5ab7f..7ada154ee8 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-06-14 02:46+0200\n" +"POT-Creation-Date: 2013-06-15 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 b25d7b1be6..f1280c6fdd 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-06-14 02:46+0200\n" +"POT-Creation-Date: 2013-06-15 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 0f3aa2e3b8..6d2cb00c21 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-06-14 02:47+0200\n" +"POT-Creation-Date: 2013-06-15 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 f0819018fd..44ae0f186f 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-06-14 02:47+0200\n" +"POT-Creation-Date: 2013-06-15 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 93973340b4..d4a0658c13 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-06-14 02:47+0200\n" +"POT-Creation-Date: 2013-06-15 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 d3319fcae5..06c4f5636b 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-06-14 02:47+0200\n" +"POT-Creation-Date: 2013-06-15 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 eb9af3a2cc..8485ec1d57 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-06-14 02:47+0200\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f1535c6616..32ead9a73c 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-06-14 02:47+0200\n" +"POT-Creation-Date: 2013-06-15 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 65bdb898bb..7f00ea271c 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-06-14 02:47+0200\n" +"POT-Creation-Date: 2013-06-15 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 23f6153a7a..524b73e61b 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-06-14 02:47+0200\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 706c9c80f6..34854022ce 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "ผู้ใช้งาน %s ได้แชร์ไฟล์ให้กับคุณ" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "ผู้ใช้งาน %s ได้แชร์โฟลเดอร์ให้กับคุณ" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "ผู้ใช้งาน %s ได้แชร์ไฟล์ \"%s\" ให้กับคุณ และคุณสามารถสามารถดาวน์โหลดไฟล์ดังกล่าวได้จากที่นี่: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "ผู้ใช้งาน %s ได้แชร์โฟลเดอร์ \"%s\" ให้กับคุณ และคุณสามารถดาวน์โหลดโฟลเดอร์ดังกล่าวได้จากที่นี่: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "การเข้าถึงถูกหวงห้าม" msgid "Cloud not found" msgstr "ไม่พบ Cloud" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "แก้ไขหมวดหมู่" @@ -611,6 +607,13 @@ msgstr "เข้าสู่ระบบ" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ก่อนหน้า" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 5937981390..5ca5df46d4 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 5b27a30d2b..e1a6396788 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 8b7cd7f126..38bba9ced0 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 1aec59f118..caa9199aa3 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/th_TH/lib.po b/l10n/th_TH/lib.po index 64dd3a295f..8dda0d2ba8 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "ช่วยเหลือ" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "ส่วนตัว" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "ตั้งค่า" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "ผู้ใช้งาน" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "แอปฯ" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "ผู้ดูแล" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 88a985f4f5..32b92fe70d 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "อีเมลไม่ถูกต้อง" msgid "Unable to delete group" msgstr "ไม่สามารถลบกลุ่มได้" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "ไม่สามารถลบผู้ใช้งานได้" @@ -324,11 +324,11 @@ msgstr "มาก" msgid "Less" msgstr "น้อย" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "พัฒนาโดย the ชุมชนผู้ใช้งาน ownCloud, the ซอร์สโค้ดอยู่ภายใต้สัญญาอนุญาตของ AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "เพิ่มแอปของคุณ" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "แอปฯอื่นเพิ่มเติม" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "เลือก App" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-ลิขสิทธิ์การใช้งานโดย " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "อัพเดท" @@ -386,72 +386,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "บริการลูกค้าแบบเสียค่าใช้จ่าย" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "แสดงหน้าจอวิซาร์ดนำทางครั้งแรกอีกครั้ง" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "รหัสผ่าน" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "ชื่อที่ต้องการแสดง" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "อีเมล" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ใช้ที่อยู่นี้เพื่อเชื่อมต่อกับ ownCloud ในโปรแกรมจัดการไฟล์ของคุณ" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 831be417ef..7b83afd6a1 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_webdavauth.po b/l10n/th_TH/user_webdavauth.po index af83ef0d00..08cda58947 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV Authentication" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index e575bf2141..596655810f 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "%s kullanıcısı sizinle bir dosyayı paylaştı" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "%s kullanıcısı sizinle bir dizini paylaştı" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "%s kullanıcısı \"%s\" dosyasını sizinle paylaştı. %s adresinden indirilebilir" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "%s kullanıcısı \"%s\" dizinini sizinle paylaştı. %s adresinden indirilebilir" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Erişim yasaklı" msgid "Cloud not found" msgstr "Bulut bulunamadı" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorileri düzenle" @@ -612,6 +608,13 @@ msgstr "Giriş yap" msgid "Alternative Logins" msgstr "Alternatif Girişler" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "önceki" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 70cb40229a..b84c841db8 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index c8c26f8f76..ab193f844b 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/tr/files_sharing.po index ce435ee328..c8a201560e 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/tr/files_trashbin.po index 58833c8c5f..3f4e14f1dc 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/tr/lib.po index 7fb7319160..238451832b 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Yardım" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Kişisel" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Ayarlar" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Kullanıcılar" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Uygulamalar" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Yönetici" @@ -114,76 +114,76 @@ msgstr "%s veritabanı adında nokta kullanamayabilirsiniz" msgid "%s set the database host." msgstr "%s veritabanı sunucu adını tanımla" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Bir konto veya kullanici birlemek ihtiyacin. " -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "Oracle bağlantısı kurulamadı" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL kullanıcı adı ve/veya parolası geçerli değil" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Hata: ''%s''" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Komut rahasiz ''%s''. " -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL kullanici '%s @local host zatan var. " -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Bu kullanici MySQLden list disari koymak. " -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL kullanici '%s @ % % zaten var (zaten yazili)" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Bu kulanıcıyı MySQL veritabanından kaldır" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" -#: setup.php:861 +#: setup.php:870 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:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 1f6abeb6b3..94c2bab266 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "Geçersiz eposta" msgid "Unable to delete group" msgstr "Grup silinemiyor" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Kullanıcı silinemiyor" @@ -325,11 +325,11 @@ msgstr "Daha fazla" msgid "Less" msgstr "Az" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Geliştirilen TarafownCloud community, the source code is altında lisanslanmıştır AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Uygulamanı Ekle" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Daha fazla uygulama" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Bir uygulama seçin" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın " -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-lisanslayan " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Güncelleme" @@ -387,72 +387,72 @@ msgstr "Hata Takip Sistemi" msgid "Commercial Support" msgstr "Ticari Destek" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Dosyalarınızı senkronize etmek için uygulamayı indirin" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "İlk Çalıştırma Sihirbazını yeniden göster" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Kullandığınız:%s seçilebilecekler: %s" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Dosyalarınızı senkronize etmek için uygulamayı indirin" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "İlk Çalıştırma Sihirbazını yeniden göster" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parola" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Şifreniz değiştirildi" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Ekran Adı" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Eposta" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Eposta adresiniz" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Dil" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bu adresi kullanarak ownCloud 'unuza dosya yöneticinizde bağlanın" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 79e5a778ed..2ac30de725 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index 03ee4902c8..5e69022bb6 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" -"Last-Translator: KAT.RAT12 \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "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" @@ -26,8 +26,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV Kimlik doğrulaması" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 133699f491..af6adeafd5 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index e680cf835a..56c6570575 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index c54d1aa0ae..d54fe25a20 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index e7eea2f10a..3248b43e31 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:48+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index fe99efadb8..3cd295ab1e 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 27d1f808fb..30b50f374a 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "ياردەم" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "شەخسىي" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "تەڭشەكلەر" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "ئىشلەتكۈچىلەر" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "ئەپلەر" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index e54e6ab810..8b1076d95e 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "ئىناۋەتسىز تورخەت" msgid "Unable to delete group" msgstr "گۇرۇپپىنى ئۆچۈرەلمىدى" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "ئىشلەتكۈچىنى ئۆچۈرەلمىدى" @@ -324,11 +324,11 @@ msgstr "تېخىمۇ كۆپ" msgid "Less" msgstr "ئاز" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "ئەپىڭىزنى قوشۇڭ" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "تېخىمۇ كۆپ ئەپلەر" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "بىر ئەپ تاللاڭ" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "يېڭىلا" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "ئىم" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "ئىمنى ئۆزگەرتكىلى بولمايدۇ." -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "نۆۋەتتىكى ئىم" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "يېڭى ئىم" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "ئىم ئۆزگەرت" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "كۆرسىتىش ئىسمى" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "تورخەت" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "تورخەت ئادرېسىڭىز" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "تىل" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "تەرجىمىگە ياردەم" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 1c7191b98b..e4207bf14b 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_webdavauth.po b/l10n/ug/user_webdavauth.po index 544a8b946e..ebca1d6ca9 100644 --- a/l10n/ug/user_webdavauth.po +++ b/l10n/ug/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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" -"Last-Translator: Abduqadir Abliz \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,8 +23,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV سالاھىيەت دەلىللەش" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 8ff6c024dd..1098c8bc12 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,27 +19,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "Користувач %s поділився файлом з вами" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "Користувач %s поділився текою з вами" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Користувач %s поділився файлом \"%s\" з вами. Він доступний для завантаження звідси: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Користувач %s поділився текою \"%s\" з вами. Він доступний для завантаження звідси: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -480,6 +461,21 @@ msgstr "Доступ заборонено" msgid "Cloud not found" msgstr "Cloud не знайдено" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "підконтрольні Вам веб-сервіси" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Редагувати категорії" @@ -611,6 +607,13 @@ msgstr "Вхід" msgid "Alternative Logins" msgstr "Альтернативні Логіни" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "попередній" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 49ffed959f..452d9e91fd 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 ce602c5527..6511bb2402 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/uk/files_sharing.po index 437dbcf322..98b070502b 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/uk/files_trashbin.po index 388db08141..f9ee15de2c 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/uk/lib.po index f4ba6f67e6..1a8b9aa5f6 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Допомога" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Особисте" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Налаштування" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Користувачі" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Додатки" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Адмін" @@ -113,76 +113,76 @@ msgstr "%s не можна використовувати крапки в наз msgid "%s set the database host." msgstr "%s встановити хост бази даних." -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL ім'я користувача та/або пароль не дійсні" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "Вам потрібно ввести або існуючий обліковий запис або administrator." -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL ім'я користувача та/або пароль не дійсні" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "Помилка БД: \"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "Команда, що викликала проблему: \"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Користувач MySQL '%s'@'localhost' вже існує." -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "Видалити цього користувача з MySQL" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Користувач MySQL '%s'@'%%' вже існує" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "Видалити цього користувача з MySQL." -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle ім'я користувача та/або пароль не дійсні" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL ім'я користувача та/або пароль не дійсні: %s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "Будь ласка, перевірте інструкції по встановленню." diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index dfd560c57a..588609336d 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Невірна адреса" msgid "Unable to delete group" msgstr "Не вдалося видалити групу" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Не вдалося видалити користувача" @@ -324,11 +324,11 @@ msgstr "Більше" msgid "Less" msgstr "Менше" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Версія" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Розроблено ownCloud громадою, вихідний код має ліцензію AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Додати свою програму" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Більше програм" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Вибрати додаток" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Перегляньте сторінку програм на apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-licensed by " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Оновити" @@ -386,72 +386,72 @@ msgstr "БагТрекер" msgid "Commercial Support" msgstr "Комерційна підтримка" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Отримати додатки для синхронізації ваших файлів" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Показувати Майстер Налаштувань знову" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Ви використали %s із доступних %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Показати Ім'я" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Введіть адресу електронної пошти для відновлення паролю" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Мова" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 006344d785..3eb7f4caec 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_webdavauth.po b/l10n/uk/user_webdavauth.po index feb00291cb..36cc099000 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -25,8 +25,8 @@ msgid "WebDAV Authentication" msgstr "Аутентифікація WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 41f51725e2..93bc08a5f6 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "پہنچ کی اجازت نہیں" msgid "Cloud not found" msgstr "نہیں مل سکا" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "آپ کے اختیار میں ویب سروسیز" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "زمرہ جات کی تدوین کریں" @@ -611,6 +607,13 @@ msgstr "لاگ ان" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "پچھلا" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 0ec378051e..2cec61850e 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 8a19d02aab..e191ed8fef 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/ur_PK/lib.po index 0585e88212..0642055556 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 19:40+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" @@ -17,27 +17,27 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "مدد" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "ذاتی" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "سیٹینگز" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "یوزرز" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "ایپز" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "ایڈمن" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 2999d0a0ba..981a081e20 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "پاسورڈ" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "نیا پاسورڈ" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 5a810047ea..b582766bf9 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 3082e6561f..d401530efb 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/vi/core.po b/l10n/vi/core.po index f7e70b55c1..37f161588a 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "%s chia sẻ tập tin này cho bạn" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "%s chia sẻ thư mục này cho bạn" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "Người dùng %s chia sẻ tập tin \"%s\" cho bạn .Bạn có thể tải tại đây : %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "Người dùng %s chia sẻ thư mục \"%s\" cho bạn .Bạn có thể tải tại đây : %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "Truy cập bị cấm" msgid "Cloud not found" msgstr "Không tìm thấy Clound" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "dịch vụ web dưới sự kiểm soát của bạn" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Sửa chuyên mục" @@ -612,6 +608,13 @@ msgstr "Đăng nhập" msgid "Alternative Logins" msgstr "Đăng nhập khác" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Lùi lại" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index fa1c87f15b..084d0a29e4 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 1c798121ee..7a780165dd 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 71f45b4c85..c45c26f058 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/vi/files_trashbin.po index 5610f4db45..4e6874e85f 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/vi/lib.po index c53e364794..f5e2fb3d29 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "Giúp đỡ" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "Cá nhân" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "Cài đặt" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "Người dùng" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "Ứng dụng" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "Quản trị" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 8bd8099270..69739ec5db 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "Email không hợp lệ" msgid "Unable to delete group" msgstr "Không thể xóa nhóm" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "Không thể xóa người dùng" @@ -324,11 +324,11 @@ msgstr "hơn" msgid "Less" msgstr "ít" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Được phát triển bởi cộng đồng ownCloud, mã nguồn đã được cấp phép theo chuẩn AGPL." -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "Thêm ứng dụng của bạn" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "Nhiều ứng dụng hơn" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "Chọn một ứng dụng" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "Xem nhiều ứng dụng hơn tại apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-Giấy phép được cấp bởi " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "Cập nhật" @@ -386,72 +386,72 @@ msgstr "Hệ ghi nhận lỗi" msgid "Commercial Support" msgstr "Hỗ trợ có phí" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "Nhận ứng dụng để đồng bộ file của bạn" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "Hiện lại việc chạy đồ thuật khởi đầu" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "Bạn đã sử dụng %s có sẵn %s " -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "Nhận ứng dụng để đồng bộ file của bạn" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "Hiện lại việc chạy đồ thuật khởi đầu" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Mật khẩu" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "Mật khẩu của bạn đã được thay đổi." -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Mật khẩu mới" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "Tên hiển thị" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "Email" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Sử dụng địa chỉ này để kết nối ownCloud của bạn trong trình quản lý file của bạn" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index f39bf23575..9a2f660aeb 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_webdavauth.po b/l10n/vi/user_webdavauth.po index e3cb6494d1..bbcb7346fe 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -24,8 +24,8 @@ msgid "WebDAV Authentication" msgstr "Xác thực WebDAV" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL: http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 56ee75292c..465edf71a2 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -21,27 +21,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "用户 %s 与您分享了一个文件" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "用户 %s 与您分享了一个文件夹" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "用户 %s 与您分享了文件“%s”。点击下载:%s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "用户 %s 与您分享了文件夹“%s”。点击下载:%s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -482,6 +463,21 @@ msgstr "禁止访问" msgid "Cloud not found" msgstr "云 没有被找到" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "编辑分类" @@ -613,6 +609,13 @@ msgstr "登陆" msgid "Alternative Logins" msgstr "备选登录" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "后退" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index d36873bb84..502dec464b 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 cf9a0d80d2..b367afa6b7 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 2dad1acb05..f98b130348 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 8f12c7fb15..f63c1f5b14 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/zh_CN.GB2312/lib.po index e5cc4ef803..2279dd688e 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:02+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "帮助" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "私人" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "设置" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "用户" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "程序" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "管理员" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "请双击安装向导。" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 08dfa5e4ff..479c5dd89f 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "非法Email" msgid "Unable to delete group" msgstr "未能删除群组" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "未能删除用户" @@ -325,11 +325,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "版本" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "添加你的应用程序" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "更多应用" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "选择一个程序" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "在owncloud.com上查看应用程序" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "授权协议 " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "更新" @@ -387,72 +387,72 @@ msgstr "Bug追踪者" msgid "Commercial Support" msgstr "商业支持" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "获取应用并同步您的文件" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "再次显示首次运行向导" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "您已使用%s/%s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "您的密码以变更" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "不能改变你的密码" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "现在的密码" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "新密码" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "改变密码" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "显示名称" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "你的email地址" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "输入一个邮箱地址以激活密码恢复功能" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "语言" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "使用此地址来在您的文件管理器中连接您的ownCloud" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 302dad9bdc..be5f8a0d64 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 60e0c7b044..0956f14fc2 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 92e25c0bd0..9d956c7234 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "用户 %s 与您共享了一个文件" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "用户 %s 与您共享了一个文件夹" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "访问禁止" msgid "Cloud not found" msgstr "未找到云" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "编辑分类" @@ -612,6 +608,13 @@ msgstr "登录" msgid "Alternative Logins" msgstr "其他登录方式" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一页" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index fff3cef778..691ac2ec58 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: zhangmin \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 63ba4cbe14..e4f0b06ab4 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/zh_CN/files_sharing.po index ffdbcf1771..f142cbef30 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index f25059b251..9415e97b93 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/zh_CN/lib.po index 4b02e29317..068a0ccc2b 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "帮助" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "个人" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "设置" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "用户" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "应用" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "管理" @@ -114,76 +114,76 @@ msgstr "%s 您不能在数据库名称中使用英文句号。" msgid "%s set the database host." msgstr "%s 设置数据库所在主机。" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 数据库用户名和/或密码无效" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "你需要输入一个数据库中已有的账户或管理员账户。" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "不能建立甲骨文连接" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL 数据库用户名和/或密码无效" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "数据库错误:\"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "冲突命令为:\"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL 用户 '%s'@'localhost' 已存在。" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL 用户 '%s'@'%%' 已存在" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户。" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle 数据库用户名和/或密码无效" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 用户名和/或密码无效:%s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "请认真检查安装指南." diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 43a903f31c..df20400c47 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -60,7 +60,7 @@ msgstr "无效的电子邮件" msgid "Unable to delete group" msgstr "无法删除组" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "无法删除用户" @@ -326,11 +326,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "版本" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "由ownCloud社区开发, 源代码AGPL许可证下发布。" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "添加应用" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "更多应用" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "选择一个应用" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "查看在 app.owncloud.com 的应用程序页面" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-核准: " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "更新" @@ -388,72 +388,72 @@ msgstr "问题跟踪器" msgid "Commercial Support" msgstr "商业支持" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "安装应用进行文件同步" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "再次显示首次运行向导" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "你已使用 %s,有效空间 %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "新密码" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "显示名称" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "填写电子邮件地址以启用密码恢复功能" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "语言" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "用该地址来连接文件管理器中的 ownCloud" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index fb342a94f7..970d6c2f1c 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index 82c49c2fbc..084e95b930 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV 认证" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "URL:http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index cff9bd870b..935fc11c5b 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -19,26 +19,7 @@ msgstr "" #: 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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -480,6 +461,21 @@ msgstr "" msgid "Cloud not found" msgstr "未找到Cloud" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -611,6 +607,13 @@ msgstr "登入" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "前一步" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index fbcb711c83..0c1a73def6 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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 d80adda59d..77431ba10b 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_sharing.po b/l10n/zh_HK/files_sharing.po index 7a12821836..aedd063f76 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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 4c69b76dbc..36b8bc1235 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-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/zh_HK/lib.po index c45358fca7..3342b2b1e4 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-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -17,27 +17,27 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "幫助" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "個人" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "設定" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "用戶" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "軟件" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "管理" @@ -113,76 +113,76 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index e4ae4f4a13..3870242f20 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "新密碼" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "電郵" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 09f43f3293..8593f39069 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-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_webdavauth.po b/l10n/zh_HK/user_webdavauth.po index 944ff2142a..7990321325 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "URL: " msgstr "" #: templates/settings.php:7 diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 454540a481..39005a00b7 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/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-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:59+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" @@ -20,27 +20,8 @@ msgstr "" #: ajax/share.php:97 #, php-format -msgid "User %s shared a file with you" -msgstr "用戶 %s 與您分享了一個檔案" - -#: ajax/share.php:99 -#, php-format -msgid "User %s shared a folder with you" -msgstr "用戶 %s 與您分享了一個資料夾" - -#: ajax/share.php:101 -#, php-format -msgid "" -"User %s shared the file \"%s\" with you. It is available for download here: " -"%s" -msgstr "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s" - -#: ajax/share.php:104 -#, php-format -msgid "" -"User %s shared the folder \"%s\" with you. It is available for download " -"here: %s" -msgstr "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s" +msgid "%s shared »%s« with you" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -481,6 +462,21 @@ msgstr "存取被拒" msgid "Cloud not found" msgstr "未發現雲端" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:24 +msgid "web services under your control" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "編輯分類" @@ -612,6 +608,13 @@ msgstr "登入" msgid "Alternative Logins" msgstr "替代登入方法" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一頁" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index f1e5469c0f..4cdfd762d4 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:27+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index b9c8f7e626..6e931e331f 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23:23+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 907a394147..853aa583af 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:47+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 236dc0c1d6..2c430dfe8d 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:55+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"PO-Revision-Date: 2013-06-14 23: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/lib.po b/l10n/zh_TW/lib.po index 298bf181e3..eab5f5d122 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 01:03+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:22+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:358 +#: app.php:359 msgid "Help" msgstr "說明" -#: app.php:371 +#: app.php:372 msgid "Personal" msgstr "個人" -#: app.php:382 +#: app.php:383 msgid "Settings" msgstr "設定" -#: app.php:394 +#: app.php:395 msgid "Users" msgstr "使用者" -#: app.php:407 +#: app.php:408 msgid "Apps" msgstr "應用程式" -#: app.php:415 +#: app.php:416 msgid "Admin" msgstr "管理" @@ -114,76 +114,76 @@ msgstr "%s 資料庫名稱不能包含小數點" msgid "%s set the database host." msgstr "%s 設定資料庫主機。" -#: setup.php:126 setup.php:323 setup.php:368 +#: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 用戶名和/或密碼無效" -#: setup.php:127 setup.php:232 +#: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." msgstr "您必須輸入一個現有的帳號或管理員帳號。" -#: setup.php:149 +#: setup.php:152 msgid "Oracle connection could not be established" msgstr "無法建立 Oracle 資料庫連線" -#: setup.php:231 +#: setup.php:234 msgid "MySQL username and/or password not valid" msgstr "MySQL 用戶名和/或密碼無效" -#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426 -#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567 -#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611 -#: setup.php:617 +#: setup.php:288 setup.php:398 setup.php:407 setup.php:425 setup.php:435 +#: setup.php:444 setup.php:477 setup.php:543 setup.php:569 setup.php:576 +#: setup.php:587 setup.php:594 setup.php:603 setup.php:611 setup.php:620 +#: setup.php:626 #, php-format msgid "DB Error: \"%s\"" msgstr "資料庫錯誤:\"%s\"" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568 -#: setup.php:579 setup.php:595 setup.php:603 setup.php:612 +#: setup.php:289 setup.php:399 setup.php:408 setup.php:426 setup.php:436 +#: setup.php:445 setup.php:478 setup.php:544 setup.php:570 setup.php:577 +#: setup.php:588 setup.php:604 setup.php:612 setup.php:621 #, php-format msgid "Offending command was: \"%s\"" msgstr "有問題的指令是:\"%s\"" -#: setup.php:302 +#: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL 使用者 '%s'@'localhost' 已經存在。" -#: setup.php:303 +#: setup.php:306 msgid "Drop this user from MySQL" msgstr "在 MySQL 移除這個使用者" -#: setup.php:308 +#: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL 使用者 '%s'@'%%' 已經存在" -#: setup.php:309 +#: setup.php:312 msgid "Drop this user from MySQL." msgstr "在 MySQL 移除這個使用者。" -#: setup.php:460 setup.php:527 +#: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" msgstr "Oracle 用戶名和/或密碼無效" -#: setup.php:586 setup.php:618 +#: setup.php:595 setup.php:627 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" -#: setup.php:638 +#: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 使用者和/或密碼無效:%s" -#: setup.php:861 +#: setup.php:870 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: setup.php:862 +#: setup.php:871 #, php-format msgid "Please double check the installation guides." msgstr "請參考安裝指南。" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index ff41fb0869..5cfcb1d889 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23: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" @@ -59,7 +59,7 @@ msgstr "無效的email" msgid "Unable to delete group" msgstr "群組刪除錯誤" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "使用者刪除錯誤" @@ -325,11 +325,11 @@ msgstr "更多" msgid "Less" msgstr "少" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "版本" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "由ownCloud 社區開發,源代碼AGPL許可證下發布。" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "添加你的 App" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "更多Apps" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "選擇一個應用程式" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "查看應用程式頁面於 apps.owncloud.com" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "-核准: " -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "更新" @@ -387,72 +387,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "商用支援" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "下載應用程式來同步您的檔案" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "再次顯示首次使用精靈" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "您已經使用了 %s ,目前可用空間為 %s" -#: 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:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "你的密碼已更改" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "無法變更您的密碼" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "新密碼" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "顯示名稱" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "信箱" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "您的電子郵件信箱" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "請填入電子郵件信箱以便回復密碼" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "語言" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 2a32a7a3fd..e66fa061e3 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-12 02:56+0200\n" -"PO-Revision-Date: 2013-06-11 23:28+0000\n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-14 23:24+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 bfb582efc9..5e8abbbb84 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:26+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-06-15 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"Last-Translator: I Robot \n" "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" @@ -26,8 +26,8 @@ msgid "WebDAV Authentication" msgstr "WebDAV 認證" #: templates/settings.php:4 -msgid "URL: http://" -msgstr "網址:http://" +msgid "URL: " +msgstr "" #: templates/settings.php:7 msgid "" diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index a69bc9bed5..db79ae2b09 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -81,9 +81,9 @@ "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" => "ابدأ خطوات بداية التشغيل من جديد", +"You have used %s of the available %s" => "تم إستهلاك %s من المتوفر %s", "Password" => "كلمة المرور", "Your password was changed" => "لقد تم تغيير كلمة السر", "Unable to change your password" => "لم يتم تعديل كلمة السر بنجاح", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index a1e724aa96..8c25913fc1 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -39,8 +39,8 @@ "Forum" => "ফোরাম", "Bugtracker" => "বাগট্র্যাকার", "Commercial Support" => "বাণিজ্যিক সাপোর্ট", -"You have used %s of the available %s" => "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।", "Show First Run Wizard again" => "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর", +"You have used %s of the available %s" => "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।", "Password" => "কূটশব্দ", "Your password was changed" => "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে ", "Unable to change your password" => "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়", diff --git a/settings/l10n/bs.php b/settings/l10n/bs.php new file mode 100644 index 0000000000..774f081673 --- /dev/null +++ b/settings/l10n/bs.php @@ -0,0 +1,3 @@ + "Spašavam..." +); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 268fbc2996..201c15536a 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -82,9 +82,9 @@ "Forum" => "Fòrum", "Bugtracker" => "Seguiment d'errors", "Commercial Support" => "Suport comercial", -"You have used %s of the available %s" => "Heu utilitzat %s d'un total disponible de %s", "Get the apps to sync your files" => "Obtén les aplicacions per sincronitzar fitxers", "Show First Run Wizard again" => "Torna a mostrar l'assistent de primera execució", +"You have used %s of the available %s" => "Heu utilitzat %s d'un total disponible de %s", "Password" => "Contrasenya", "Your password was changed" => "La seva contrasenya s'ha canviat", "Unable to change your password" => "No s'ha pogut canviar la contrasenya", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index c0668676dd..3906c2f718 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -82,9 +82,9 @@ "Forum" => "Fórum", "Bugtracker" => "Bugtracker", "Commercial Support" => "Placená podpora", -"You have used %s of the available %s" => "Používáte %s z %s dostupných", "Get the apps to sync your files" => "Získat aplikace pro synchronizaci vašich souborů", "Show First Run Wizard again" => "Znovu zobrazit průvodce prvním spuštěním", +"You have used %s of the available %s" => "Používáte %s z %s dostupných", "Password" => "Heslo", "Your password was changed" => "Vaše heslo bylo změněno", "Unable to change your password" => "Vaše heslo nelze změnit", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 928130f398..3722d5db0c 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -82,9 +82,9 @@ "Forum" => "Forum", "Bugtracker" => "Bugtracker", "Commercial Support" => "Kommerzieller Support", -"You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", "Get the apps to sync your files" => "Lade die Apps zur Synchronisierung Deiner Daten herunter", "Show First Run Wizard again" => "Erstinstallation erneut durchführen", +"You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", "Password" => "Passwort", "Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index f7f5323974..c7846f79b3 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -82,9 +82,9 @@ "Forum" => "Forum", "Bugtracker" => "Bugtracker", "Commercial Support" => "Kommerzieller Support", -"You have used %s of the available %s" => "Sie verwenden %s der verfügbaren %s", "Get the apps to sync your files" => "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren", "Show First Run Wizard again" => "Den Einrichtungsassistenten erneut anzeigen", +"You have used %s of the available %s" => "Sie verwenden %s der verfügbaren %s", "Password" => "Passwort", "Your password was changed" => "Ihr Passwort wurde geändert.", "Unable to change your password" => "Das Passwort konnte nicht geändert werden", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 24f3a099cc..6c07c9d8b4 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -82,9 +82,9 @@ "Forum" => "Φόρουμ", "Bugtracker" => "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" => "Προβολή Πρώτης Εκτέλεσης Οδηγού πάλι", +"You have used %s of the available %s" => "Χρησιμοποιήσατε %s από διαθέσιμα %s", "Password" => "Συνθηματικό", "Your password was changed" => "Το συνθηματικό σας έχει αλλάξει", "Unable to change your password" => "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index baf25a274b..ab9cda4b56 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -82,9 +82,9 @@ "Forum" => "Foorum", "Bugtracker" => "Vigade nimekiri", "Commercial Support" => "Tasuline kasutajatugi", -"You have used %s of the available %s" => "Kasutad %s saadavalolevast %s", "Get the apps to sync your files" => "Hangi rakendusi failide sünkroniseerimiseks", "Show First Run Wizard again" => "Näita veelkord Esmase Käivituse Juhendajat", +"You have used %s of the available %s" => "Kasutad %s saadavalolevast %s", "Password" => "Parool", "Your password was changed" => "Sinu parooli on muudetud", "Unable to change your password" => "Sa ei saa oma parooli muuta", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 9982e9af9a..b7a6cacc47 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -81,9 +81,9 @@ "Forum" => "Foroa", "Bugtracker" => "Bugtracker", "Commercial Support" => "Babes komertziala", -"You have used %s of the available %s" => "Dagoeneko %s erabili duzu eskuragarri duzun %setatik", "Get the apps to sync your files" => "Lortu aplikazioak zure fitxategiak sinkronizatzeko", "Show First Run Wizard again" => "Erakutsi berriz Lehenengo Aldiko Morroia", +"You have used %s of the available %s" => "Dagoeneko %s erabili duzu eskuragarri duzun %setatik", "Password" => "Pasahitza", "Your password was changed" => "Zere pasahitza aldatu da", "Unable to change your password" => "Ezin izan da zure pasahitza aldatu", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 1abb70f27a..b415f2990d 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -75,9 +75,9 @@ "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" => "راهبری کمکی اجرای اول را دوباره نمایش بده", +"You have used %s of the available %s" => "شما استفاده کردید از %s از میزان در دسترس %s", "Password" => "گذرواژه", "Your password was changed" => "رمز عبور شما تغییر یافت", "Unable to change your password" => "ناتوان در تغییر گذرواژه", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index f2d7d33358..38ba5629c8 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -70,8 +70,8 @@ "Forum" => "Keskustelupalsta", "Bugtracker" => "Ohjelmistovirheiden jäljitys", "Commercial Support" => "Kaupallinen tuki", -"You have used %s of the available %s" => "Käytössäsi on %s/%s", "Show First Run Wizard again" => "Näytä ensimmäisen käyttökerran avustaja uudelleen", +"You have used %s of the available %s" => "Käytössäsi on %s/%s", "Password" => "Salasana", "Your password was changed" => "Salasanasi vaihdettiin", "Unable to change your password" => "Salasanaasi ei voitu vaihtaa", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index ee60aa82a2..51e8ee95e0 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -82,9 +82,9 @@ "Forum" => "Foro", "Bugtracker" => "Seguemento de fallos", "Commercial Support" => "Asistencia comercial", -"You have used %s of the available %s" => "Ten en uso %s do total dispoñíbel de %s", "Get the apps to sync your files" => "Obteña os aplicativos para sincronizar os seus ficheiros", "Show First Run Wizard again" => "Amosar o axudante da primeira execución outra vez", +"You have used %s of the available %s" => "Ten en uso %s do total dispoñíbel de %s", "Password" => "Contrasinal", "Your password was changed" => "O seu contrasinal foi cambiado", "Unable to change your password" => "Non é posíbel cambiar o seu contrasinal", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 77c6d37fbb..b2edebe08f 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -74,9 +74,9 @@ "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" => "הצגת אשף ההפעלה הראשונית שוב", +"You have used %s of the available %s" => "השתמשת ב־%s מתוך %s הזמינים לך", "Password" => "סיסמא", "Your password was changed" => "הססמה שלך הוחלפה", "Unable to change your password" => "לא ניתן לשנות את הססמה שלך", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 550796c3c7..872e8f971d 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -82,9 +82,9 @@ "Forum" => "Fórum", "Bugtracker" => "Hibabejelentések", "Commercial Support" => "Megvásárolható támogatás", -"You have used %s of the available %s" => "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s", "Get the apps to sync your files" => "Töltse le az állományok szinkronizációjához szükséges programokat", "Show First Run Wizard again" => "Nézzük meg újra az első bejelentkezéskori segítséget!", +"You have used %s of the available %s" => "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s", "Password" => "Jelszó", "Your password was changed" => "A jelszava megváltozott", "Unable to change your password" => "A jelszó nem változtatható meg", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index fb5ee229f1..02da3c3cf2 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -81,9 +81,9 @@ "Forum" => "Forum", "Bugtracker" => "Bugtracker", "Commercial Support" => "Dukungan Komersial", -"You have used %s of the available %s" => "Anda telah menggunakan %s dari total %s", "Get the apps to sync your files" => "Dapatkan aplikasi untuk sinkronisasi berkas Anda", "Show First Run Wizard again" => "Tampilkan Penuntun Konfigurasi Awal", +"You have used %s of the available %s" => "Anda telah menggunakan %s dari total %s", "Password" => "Sandi", "Your password was changed" => "Sandi Anda telah diubah", "Unable to change your password" => "Gagal mengubah sandi Anda", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index c2ee1e4997..3433f56f2d 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -82,9 +82,9 @@ "Forum" => "Forum", "Bugtracker" => "Sistema di tracciamento bug", "Commercial Support" => "Supporto commerciale", -"You have used %s of the available %s" => "Hai utilizzato %s dei %s disponibili", "Get the apps to sync your files" => "Scarica le applicazioni per sincronizzare i tuoi file", "Show First Run Wizard again" => "Mostra nuovamente la procedura di primo avvio", +"You have used %s of the available %s" => "Hai utilizzato %s dei %s disponibili", "Password" => "Password", "Your password was changed" => "La tua password è cambiata", "Unable to change your password" => "Modifica password non riuscita", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index f9ef8e8682..ddff0f328a 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -82,9 +82,9 @@ "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" => "初回ウィザードを再表示する", +"You have used %s of the available %s" => "現在、%s / %s を利用しています", "Password" => "パスワード", "Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index f6f4249e68..4a118eb785 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -82,9 +82,9 @@ "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" => "მაჩვენე თავიდან გაშვებული ვიზარდი", +"You have used %s of the available %s" => "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან", "Password" => "პაროლი", "Your password was changed" => "თქვენი პაროლი შეიცვალა", "Unable to change your password" => "თქვენი პაროლი არ შეიცვალა", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 2a139a0256..c58a578cae 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -45,9 +45,9 @@ "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" => "첫 실행 마법사 다시 보이기", +"You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 5864a392ac..fd6c2090f5 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -81,9 +81,9 @@ "Forum" => "Forums", "Bugtracker" => "Kļūdu sekotājs", "Commercial Support" => "Komerciālais atbalsts", -"You have used %s of the available %s" => "Jūs lietojat %s no pieejamajiem %s", "Get the apps to sync your files" => "Saņem lietotnes, lai sinhronizētu savas datnes", "Show First Run Wizard again" => "Vēlreiz rādīt pirmās palaišanas vedni", +"You have used %s of the available %s" => "Jūs lietojat %s no pieejamajiem %s", "Password" => "Parole", "Your password was changed" => "Jūru parole tika nomainīta", "Unable to change your password" => "Nevar nomainīt jūsu paroli", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 9f18bf472a..b6182cc308 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -82,9 +82,9 @@ "Forum" => "Forum", "Bugtracker" => "Feilsporing", "Commercial Support" => "Kommersiell støtte", -"You have used %s of the available %s" => "Du har brukt %s av tilgjengelig %s", "Get the apps to sync your files" => "Få dine apps til å synkronisere dine filer", "Show First Run Wizard again" => "Vis \"Førstegangs veiveiseren\" på nytt", +"You have used %s of the available %s" => "Du har brukt %s av tilgjengelig %s", "Password" => "Passord", "Your password was changed" => "Passord har blitt endret", "Unable to change your password" => "Kunne ikke endre passordet ditt", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index bab1babd93..735274368a 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -82,9 +82,9 @@ "Forum" => "Forum", "Bugtracker" => "Bugtracker", "Commercial Support" => "Commerciële ondersteuning", -"You have used %s of the available %s" => "Je hebt %s gebruikt van de beschikbare %s", "Get the apps to sync your files" => "Download de apps om bestanden te syncen", "Show First Run Wizard again" => "Toon de Eerste start Wizard opnieuw", +"You have used %s of the available %s" => "Je hebt %s gebruikt van de beschikbare %s", "Password" => "Wachtwoord", "Your password was changed" => "Je wachtwoord is veranderd", "Unable to change your password" => "Niet in staat om uw wachtwoord te wijzigen", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 3008873c86..61ece5823d 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -82,9 +82,9 @@ "Forum" => "Forum", "Bugtracker" => "Feilsporar", "Commercial Support" => "Betalt brukarstøtte", -"You have used %s of the available %s" => "Du har brukt %s av dine tilgjengelege %s", "Get the apps to sync your files" => "Få app-ar som kan synkronisera filene dine", "Show First Run Wizard again" => "Vis Oppstartvegvisaren igjen", +"You have used %s of the available %s" => "Du har brukt %s av dine tilgjengelege %s", "Password" => "Passord", "Your password was changed" => "Passordet ditt er endra", "Unable to change your password" => "Klarte ikkje endra passordet", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 908a930339..ec99000b4d 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -82,9 +82,9 @@ "Forum" => "Forum", "Bugtracker" => "Zgłaszanie błędów", "Commercial Support" => "Wsparcie komercyjne", -"You have used %s of the available %s" => "Wykorzystujesz %s z dostępnych %s", "Get the apps to sync your files" => "Pobierz aplikacje żeby synchronizować swoje pliki", "Show First Run Wizard again" => "Uruchom ponownie kreatora pierwszego uruchomienia", +"You have used %s of the available %s" => "Wykorzystujesz %s z dostępnych %s", "Password" => "Hasło", "Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index e78e907cf8..2ffa32f603 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -82,9 +82,9 @@ "Forum" => "Fórum", "Bugtracker" => "Rastreador de Bugs", "Commercial Support" => "Suporte Comercial", -"You have used %s of the available %s" => "Você usou %s do seu espaço de %s", "Get the apps to sync your files" => "Faça com que os apps sincronize seus arquivos", "Show First Run Wizard again" => "Mostrar este Assistente de novo", +"You have used %s of the available %s" => "Você usou %s do seu espaço de %s", "Password" => "Senha", "Your password was changed" => "Sua senha foi alterada", "Unable to change your password" => "Não é possivel alterar a sua senha", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index f48e0bae0a..99fb14b4df 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -56,8 +56,8 @@ "Forum" => "Forum", "Bugtracker" => "Urmărire bug-uri", "Commercial Support" => "Suport comercial", -"You have used %s of the available %s" => "Ați utilizat %s din %s disponibile", "Get the apps to sync your files" => "Ia acum aplicatia pentru sincronizarea fisierelor ", +"You have used %s of the available %s" => "Ați utilizat %s din %s disponibile", "Password" => "Parolă", "Your password was changed" => "Parola a fost modificată", "Unable to change your password" => "Imposibil de-ați schimbat parola", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 1531f6a361..3d852d3b20 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -82,9 +82,9 @@ "Forum" => "Форум", "Bugtracker" => "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" => "Показать помощник настройки", +"You have used %s of the available %s" => "Вы использовали %s из доступных %s", "Password" => "Пароль", "Your password was changed" => "Ваш пароль изменён", "Unable to change your password" => "Невозможно сменить пароль", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 5d8445b4b3..595a75833a 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -82,9 +82,9 @@ "Forum" => "Fórum", "Bugtracker" => "Bugtracker", "Commercial Support" => "Komerčná podpora", -"You have used %s of the available %s" => "Použili ste %s z %s dostupných ", "Get the apps to sync your files" => "Získať aplikácie na synchronizáciu Vašich súborov", "Show First Run Wizard again" => "Znovu zobraziť sprievodcu prvým spustením", +"You have used %s of the available %s" => "Použili ste %s z %s dostupných ", "Password" => "Heslo", "Your password was changed" => "Heslo bolo zmenené", "Unable to change your password" => "Nie je možné zmeniť vaše heslo", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 55d957cfa7..413300abc5 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -82,9 +82,9 @@ "Forum" => "Forum", "Bugtracker" => "Sledilnik hroščev", "Commercial Support" => "Podpora strankam", -"You have used %s of the available %s" => "Uporabljenega je %s od razpoložljivih %s prostora.", "Get the apps to sync your files" => "Pridobi programe za usklajevanje datotek", "Show First Run Wizard again" => "Zaženi čarovnika prvega zagona", +"You have used %s of the available %s" => "Uporabljenega je %s od razpoložljivih %s prostora.", "Password" => "Geslo", "Your password was changed" => "Geslo je spremenjeno", "Unable to change your password" => "Gesla ni mogoče spremeniti.", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 29e0661e44..8437c054da 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -75,9 +75,9 @@ "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" => "Поново прикажи чаробњак за прво покретање", +"You have used %s of the available %s" => "Искористили сте %s од дозвољених %s", "Password" => "Лозинка", "Your password was changed" => "Лозинка је промењена", "Unable to change your password" => "Не могу да изменим вашу лозинку", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 998e457778..895e1c3e83 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -62,8 +62,8 @@ "Forum" => "กระดานสนทนา", "Bugtracker" => "Bugtracker", "Commercial Support" => "บริการลูกค้าแบบเสียค่าใช้จ่าย", -"You have used %s of the available %s" => "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s", "Show First Run Wizard again" => "แสดงหน้าจอวิซาร์ดนำทางครั้งแรกอีกครั้ง", +"You have used %s of the available %s" => "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s", "Password" => "รหัสผ่าน", "Your password was changed" => "รหัสผ่านของคุณถูกเปลี่ยนแล้ว", "Unable to change your password" => "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index e694b627af..1fcf6ac6c0 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -82,9 +82,9 @@ "Forum" => "Forum", "Bugtracker" => "Hata Takip Sistemi", "Commercial Support" => "Ticari Destek", -"You have used %s of the available %s" => "Kullandığınız:%s seçilebilecekler: %s", "Get the apps to sync your files" => "Dosyalarınızı senkronize etmek için uygulamayı indirin", "Show First Run Wizard again" => "İlk Çalıştırma Sihirbazını yeniden göster", +"You have used %s of the available %s" => "Kullandığınız:%s seçilebilecekler: %s", "Password" => "Parola", "Your password was changed" => "Şifreniz değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index d2b51e853f..ca5a5d8a07 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -81,9 +81,9 @@ "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" => "Показувати Майстер Налаштувань знову", +"You have used %s of the available %s" => "Ви використали %s із доступних %s", "Password" => "Пароль", "Your password was changed" => "Ваш пароль змінено", "Unable to change your password" => "Не вдалося змінити Ваш пароль", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index c9f7cd8633..d7b4b81e11 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -62,9 +62,9 @@ "Forum" => "Diễn đàn", "Bugtracker" => "Hệ ghi nhận lỗi", "Commercial Support" => "Hỗ trợ có phí", -"You have used %s of the available %s" => "Bạn đã sử dụng %s có sẵn %s ", "Get the apps to sync your files" => "Nhận ứng dụng để đồng bộ file của bạn", "Show First Run Wizard again" => "Hiện lại việc chạy đồ thuật khởi đầu", +"You have used %s of the available %s" => "Bạn đã sử dụng %s có sẵn %s ", "Password" => "Mật khẩu", "Your password was changed" => "Mật khẩu của bạn đã được thay đổi.", "Unable to change your password" => "Không thể đổi mật khẩu", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 6e88d71fe4..67946587e5 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -79,9 +79,9 @@ "Forum" => "论坛", "Bugtracker" => "Bug追踪者", "Commercial Support" => "商业支持", -"You have used %s of the available %s" => "您已使用%s/%s", "Get the apps to sync your files" => "获取应用并同步您的文件", "Show First Run Wizard again" => "再次显示首次运行向导", +"You have used %s of the available %s" => "您已使用%s/%s", "Password" => "密码", "Your password was changed" => "您的密码以变更", "Unable to change your password" => "不能改变你的密码", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index bb2553e4c6..248fce04eb 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -82,9 +82,9 @@ "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" => "再次显示首次运行向导", +"You have used %s of the available %s" => "你已使用 %s,有效空间 %s", "Password" => "密码", "Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index aca20f15e5..ae52b17086 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -82,9 +82,9 @@ "Forum" => "論壇", "Bugtracker" => "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" => "再次顯示首次使用精靈", +"You have used %s of the available %s" => "您已經使用了 %s ,目前可用空間為 %s", "Password" => "密碼", "Your password was changed" => "你的密碼已更改", "Unable to change your password" => "無法變更您的密碼", From 8243d19050d231aecc6102154a625e0308b37a34 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 16 Jun 2013 02:07:45 +0200 Subject: [PATCH 143/145] [tx-robot] updated from transifex --- apps/files_encryption/l10n/ca.php | 14 ++++++++++++ apps/files_encryption/l10n/fr.php | 3 +++ apps/files_encryption/l10n/it.php | 14 ++++++++++++ apps/files_encryption/l10n/nl.php | 9 ++++++++ apps/files_encryption/l10n/sv.php | 8 +++++++ apps/user_webdavauth/l10n/ca.php | 1 + apps/user_webdavauth/l10n/gl.php | 1 + apps/user_webdavauth/l10n/it.php | 1 + apps/user_webdavauth/l10n/ja_JP.php | 1 + apps/user_webdavauth/l10n/nl.php | 1 + apps/user_webdavauth/l10n/sv.php | 1 + core/l10n/bg_BG.php | 1 + core/l10n/ca.php | 6 +++++ core/l10n/cs_CZ.php | 1 + core/l10n/cy_GB.php | 1 + core/l10n/en@pirate.php | 3 ++- core/l10n/es_AR.php | 1 + core/l10n/gl.php | 4 ++++ core/l10n/he.php | 1 + core/l10n/hr.php | 1 + core/l10n/hu_HU.php | 1 + core/l10n/it.php | 5 +++++ core/l10n/ja_JP.php | 4 ++++ core/l10n/ka_GE.php | 1 + core/l10n/ku_IQ.php | 1 + core/l10n/lb.php | 1 + core/l10n/lt_LT.php | 1 + core/l10n/lv.php | 1 + core/l10n/nl.php | 4 ++++ core/l10n/pl.php | 1 + core/l10n/pt_BR.php | 1 + core/l10n/pt_PT.php | 1 + core/l10n/sk_SK.php | 1 + core/l10n/sv.php | 3 +++ core/l10n/ta_LK.php | 1 + core/l10n/th_TH.php | 1 + core/l10n/tr.php | 1 + core/l10n/zh_CN.GB2312.php | 1 + core/l10n/zh_CN.php | 1 + core/l10n/zh_TW.php | 1 + l10n/af_ZA/core.po | 4 ++-- l10n/af_ZA/lib.po | 4 ++-- l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 4 ++-- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 6 ++--- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 4 ++-- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/bs/core.po | 4 ++-- l10n/bs/files.po | 4 ++-- l10n/bs/files_trashbin.po | 4 ++-- l10n/ca/core.po | 18 +++++++-------- l10n/ca/files.po | 4 ++-- l10n/ca/files_encryption.po | 34 ++++++++++++++-------------- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/ca/user_ldap.po | 4 ++-- l10n/ca/user_webdavauth.po | 9 ++++---- l10n/cs_CZ/core.po | 6 ++--- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 6 ++--- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 4 ++-- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 4 ++-- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 4 ++-- l10n/de_DE/files.po | 4 ++-- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 4 ++-- l10n/el/files.po | 4 ++-- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/el/user_ldap.po | 4 ++-- l10n/en@pirate/core.po | 6 ++--- l10n/en@pirate/files.po | 4 ++-- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/eo/files.po | 4 ++-- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 4 ++-- l10n/eo/lib.po | 4 ++-- l10n/eo/settings.po | 4 ++-- l10n/eo/user_ldap.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es/files.po | 4 ++-- l10n/es/files_external.po | 4 ++-- l10n/es/files_sharing.po | 4 ++-- l10n/es/files_trashbin.po | 4 ++-- l10n/es/lib.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es/user_ldap.po | 4 ++-- l10n/es_AR/core.po | 6 ++--- l10n/es_AR/files.po | 4 ++-- l10n/es_AR/files_external.po | 4 ++-- l10n/es_AR/files_sharing.po | 4 ++-- l10n/es_AR/files_trashbin.po | 4 ++-- l10n/es_AR/lib.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/es_AR/user_ldap.po | 4 ++-- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 4 ++-- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 4 ++-- l10n/fa/files_external.po | 4 ++-- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 4 ++-- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_encryption.po | 13 ++++++----- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 4 ++-- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 14 ++++++------ l10n/gl/files.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/gl/user_ldap.po | 4 ++-- l10n/gl/user_webdavauth.po | 8 +++---- l10n/he/core.po | 6 ++--- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 4 ++-- l10n/hi/lib.po | 4 ++-- l10n/hr/core.po | 6 ++--- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 6 ++--- l10n/hu_HU/files.po | 4 ++-- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 4 ++-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 ++-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 4 ++-- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 17 +++++++------- l10n/it/files.po | 4 ++-- l10n/it/files_encryption.po | 35 +++++++++++++++-------------- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/it/user_ldap.po | 4 ++-- l10n/it/user_webdavauth.po | 9 ++++---- l10n/ja_JP/core.po | 14 ++++++------ l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ja_JP/user_webdavauth.po | 9 ++++---- l10n/ka/files.po | 4 ++-- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 6 ++--- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 6 ++--- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/lib.po | 4 ++-- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 6 ++--- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 6 ++--- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lt_LT/user_ldap.po | 4 ++-- l10n/lv/core.po | 6 ++--- l10n/lv/files.po | 4 ++-- l10n/lv/files_external.po | 4 ++-- l10n/lv/files_sharing.po | 4 ++-- l10n/lv/files_trashbin.po | 4 ++-- l10n/lv/lib.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/lv/user_ldap.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/mk/files.po | 4 ++-- l10n/mk/files_external.po | 4 ++-- l10n/mk/files_sharing.po | 4 ++-- l10n/mk/files_trashbin.po | 4 ++-- l10n/mk/lib.po | 4 ++-- l10n/mk/settings.po | 4 ++-- l10n/mk/user_ldap.po | 4 ++-- l10n/ms_MY/core.po | 4 ++-- l10n/ms_MY/files.po | 4 ++-- l10n/ms_MY/files_external.po | 4 ++-- l10n/ms_MY/files_sharing.po | 4 ++-- l10n/ms_MY/files_trashbin.po | 4 ++-- l10n/ms_MY/lib.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/ms_MY/user_ldap.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/my_MM/files.po | 4 ++-- l10n/my_MM/files_sharing.po | 4 ++-- l10n/my_MM/lib.po | 4 ++-- l10n/nb_NO/core.po | 4 ++-- l10n/nb_NO/files.po | 4 ++-- l10n/nb_NO/files_external.po | 4 ++-- l10n/nb_NO/files_sharing.po | 4 ++-- l10n/nb_NO/files_trashbin.po | 4 ++-- l10n/nb_NO/lib.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nb_NO/user_ldap.po | 4 ++-- l10n/nl/core.po | 14 ++++++------ l10n/nl/files.po | 4 ++-- l10n/nl/files_encryption.po | 24 ++++++++++---------- l10n/nl/files_external.po | 4 ++-- l10n/nl/files_sharing.po | 4 ++-- l10n/nl/files_trashbin.po | 4 ++-- l10n/nl/lib.po | 4 ++-- l10n/nl/settings.po | 8 +++---- l10n/nl/user_ldap.po | 4 ++-- l10n/nl/user_webdavauth.po | 8 +++---- l10n/nn_NO/core.po | 4 ++-- l10n/nn_NO/files.po | 4 ++-- l10n/nn_NO/files_external.po | 4 ++-- l10n/nn_NO/files_sharing.po | 4 ++-- l10n/nn_NO/files_trashbin.po | 4 ++-- l10n/nn_NO/lib.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/nn_NO/user_ldap.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/oc/files.po | 4 ++-- l10n/oc/files_external.po | 4 ++-- l10n/oc/files_sharing.po | 4 ++-- l10n/oc/files_trashbin.po | 4 ++-- l10n/oc/lib.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 6 ++--- l10n/pl/files.po | 4 ++-- l10n/pl/files_external.po | 4 ++-- l10n/pl/files_sharing.po | 4 ++-- l10n/pl/files_trashbin.po | 4 ++-- l10n/pl/lib.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pl/user_ldap.po | 4 ++-- l10n/pt_BR/core.po | 6 ++--- l10n/pt_BR/files.po | 4 ++-- l10n/pt_BR/files_external.po | 4 ++-- l10n/pt_BR/files_sharing.po | 4 ++-- l10n/pt_BR/files_trashbin.po | 4 ++-- l10n/pt_BR/lib.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_BR/user_ldap.po | 4 ++-- l10n/pt_PT/core.po | 6 ++--- l10n/pt_PT/files.po | 4 ++-- l10n/pt_PT/files_external.po | 4 ++-- l10n/pt_PT/files_sharing.po | 4 ++-- l10n/pt_PT/files_trashbin.po | 4 ++-- l10n/pt_PT/lib.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/pt_PT/user_ldap.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ro/files.po | 4 ++-- l10n/ro/files_external.po | 4 ++-- l10n/ro/files_sharing.po | 4 ++-- l10n/ro/files_trashbin.po | 4 ++-- l10n/ro/lib.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ro/user_ldap.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru/files.po | 4 ++-- l10n/ru/files_external.po | 4 ++-- l10n/ru/files_sharing.po | 4 ++-- l10n/ru/files_trashbin.po | 4 ++-- l10n/ru/lib.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/ru/user_ldap.po | 4 ++-- l10n/si_LK/core.po | 4 ++-- l10n/si_LK/files.po | 4 ++-- l10n/si_LK/files_external.po | 4 ++-- l10n/si_LK/files_sharing.po | 4 ++-- l10n/si_LK/files_trashbin.po | 4 ++-- l10n/si_LK/lib.po | 4 ++-- l10n/si_LK/settings.po | 4 ++-- l10n/si_LK/user_ldap.po | 4 ++-- l10n/sk_SK/core.po | 6 ++--- l10n/sk_SK/files.po | 4 ++-- l10n/sk_SK/files_external.po | 4 ++-- l10n/sk_SK/files_sharing.po | 4 ++-- l10n/sk_SK/files_trashbin.po | 4 ++-- l10n/sk_SK/lib.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sk_SK/user_ldap.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/files.po | 4 ++-- l10n/sl/files_external.po | 4 ++-- l10n/sl/files_sharing.po | 4 ++-- l10n/sl/files_trashbin.po | 4 ++-- l10n/sl/lib.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sl/user_ldap.po | 4 ++-- l10n/sq/core.po | 4 ++-- l10n/sq/files.po | 4 ++-- l10n/sq/files_external.po | 4 ++-- l10n/sq/files_sharing.po | 4 ++-- l10n/sq/files_trashbin.po | 4 ++-- l10n/sq/lib.po | 4 ++-- l10n/sq/settings.po | 4 ++-- l10n/sq/user_ldap.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr/files.po | 4 ++-- l10n/sr/files_external.po | 4 ++-- l10n/sr/files_sharing.po | 4 ++-- l10n/sr/files_trashbin.po | 4 ++-- l10n/sr/lib.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sr/user_ldap.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sr@latin/files.po | 4 ++-- l10n/sr@latin/files_external.po | 4 ++-- l10n/sr@latin/files_sharing.po | 4 ++-- l10n/sr@latin/files_trashbin.po | 4 ++-- l10n/sr@latin/lib.po | 4 ++-- l10n/sr@latin/settings.po | 4 ++-- l10n/sv/core.po | 12 +++++----- l10n/sv/files.po | 4 ++-- l10n/sv/files_encryption.po | 20 ++++++++--------- l10n/sv/files_external.po | 4 ++-- l10n/sv/files_sharing.po | 4 ++-- l10n/sv/files_trashbin.po | 4 ++-- l10n/sv/lib.po | 4 ++-- l10n/sv/settings.po | 4 ++-- l10n/sv/user_ldap.po | 4 ++-- l10n/sv/user_webdavauth.po | 9 ++++---- l10n/ta_LK/core.po | 6 ++--- l10n/ta_LK/files.po | 4 ++-- l10n/ta_LK/files_external.po | 4 ++-- l10n/ta_LK/files_sharing.po | 4 ++-- l10n/ta_LK/files_trashbin.po | 4 ++-- l10n/ta_LK/lib.po | 4 ++-- l10n/ta_LK/settings.po | 4 ++-- l10n/ta_LK/user_ldap.po | 4 ++-- l10n/te/core.po | 4 ++-- l10n/te/files.po | 4 ++-- l10n/te/files_external.po | 4 ++-- l10n/te/files_trashbin.po | 4 ++-- l10n/te/lib.po | 4 ++-- l10n/te/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 6 ++--- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 4 ++-- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 6 ++--- l10n/tr/files.po | 4 ++-- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/lib.po | 4 ++-- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 6 ++--- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 6 ++--- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 4 ++-- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 6 ++--- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- settings/l10n/nl.php | 1 + 584 files changed, 1306 insertions(+), 1195 deletions(-) diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 01a0e6501d..17a073c1c6 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -5,7 +5,13 @@ "Could not disable recovery key. Please check your recovery key password!" => "No s'ha pogut desactivar la calu de recuperació. Comproveu la contrasenya de la clau de recuperació!", "Password successfully changed." => "La contrasenya s'ha canviat.", "Could not change the password. Maybe the old password was not correct." => "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta.", +"Private key password successfully updated." => "La contrasenya de la clau privada s'ha actualitzat.", +"Could not update the private key password. Maybe the old password was not correct." => "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "La clau privada no és vàlida! Potser la contrasenya ha canviat des de fora. Podeu actualitzar la contrasenya de la clau privada a l'arranjament personal per obtenir de nou accés als vostres fitxers", "Saving..." => "Desant...", +"Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", +"You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre", +"personal settings" => "arranjament personal", "Encryption" => "Xifrat", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Activa la clau de recuperació de contrasenya (permet compartir la clau de recuperació):", "Recovery account password" => "Contrasenya de recuperació del compte", @@ -15,6 +21,14 @@ "Old Recovery account password" => "Contrasenya de recuperació anterior", "New Recovery account password" => "Nova contrasenya de recuperació de compte", "Change Password" => "Canvia la contrasenya", +"Your private key password no longer match your log-in password:" => "La clau privada ja no es correspon amb la contrasenya d'accés:", +"Set your old private key password to your current log-in password." => "Establiu la vostra contrasenya clau en funció de la contrasenya actual d'accés.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Si no recordeu la contrasenya anterior podeu demanar a l'administrador que recuperi els vostres fitxers.", +"Old log-in password" => "Contrasenya anterior d'accés", +"Current log-in password" => "Contrasenya d'accés actual", +"Update Private Key Password" => "Actualitza la contrasenya de clau privada", +"Enable password recovery:" => "Habilita la recuperació de contrasenya:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya", "File recovery settings updated" => "S'han actualitzat els arranjaments de recuperació de fitxers", "Could not update file recovery" => "No s'ha pogut actualitzar la recuperació de fitxers" ); diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 145c4b07a4..50218b341e 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -5,7 +5,10 @@ "Could not disable recovery key. Please check your recovery key password!" => "Ne peut pas désactiver la clé de récupération. S'il vous plait vérifiez votre mot de passe de clé de récupération!", "Password successfully changed." => "Mot de passe changé avec succès ", "Could not change the password. Maybe the old password was not correct." => "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect.", +"Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", +"Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", "Saving..." => "Enregistrement...", +"personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Activer la clé de récupération par mots de passe de cryptage (autoriser le partage de la clé de récupération) ", "Recovery account password" => "Rétablissement du compte mot de passe ", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 91a910baf6..3226a17ee9 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -5,7 +5,13 @@ "Could not disable recovery key. Please check your recovery key password!" => "Impossibile disabilitare la chiave di ripristino. Verifica la password della chiave di ripristino.", "Password successfully changed." => "Password modificata correttamente.", "Could not change the password. Maybe the old password was not correct." => "Impossibile cambiare la password. Forse la vecchia password non era corretta.", +"Private key password successfully updated." => "Password della chiave privata aggiornata correttamente.", +"Could not update the private key password. Maybe the old password was not correct." => "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "La chiave privata non è valida! Forse la password è stata cambiata dall'esterno. Puoi aggiornare la password della chiave privata nelle impostazioni personali per riottenere l'accesso ai file.", "Saving..." => "Salvataggio in corso...", +"Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", +"You can unlock your private key in your " => "Puoi sbloccare la chiave privata nel tuo", +"personal settings" => "Impostazioni personali", "Encryption" => "Cifratura", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Abilita la chiave di ripristino delle password di cifratura (consente di condividere la chiave di ripristino):", "Recovery account password" => "Password di ripristino dell'account", @@ -15,6 +21,14 @@ "Old Recovery account password" => "Vecchia password di ripristino dell'account", "New Recovery account password" => "Nuova password di ripristino dell'account", "Change Password" => "Modifica password", +"Your private key password no longer match your log-in password:" => "La password della chiave privata non corrisponde più alla password di login:", +"Set your old private key password to your current log-in password." => "Imposta la vecchia password della chiave privata sull'attuale password di login", +" If you don't remember your old password you can ask your administrator to recover your files." => "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file", +"Old log-in password" => "Password di login vecchia", +"Current log-in password" => "Password di login corrente", +"Update Private Key Password" => "Aggiorna la Password della Chiave Privata", +"Enable password recovery:" => "Abilita il recupero della password:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Abilitando questa opzione potrai riaccedere ai file cifrati nel caso in cui la password venga perduta", "File recovery settings updated" => "Impostazioni di ripristino dei file aggiornate", "Could not update file recovery" => "Impossibile aggiornare il ripristino dei file" ); diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index b97d27adc6..93900c7102 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -6,6 +6,9 @@ "Password successfully changed." => "Wachtwoord succesvol gewijzigd.", "Could not change the password. Maybe the old password was not correct." => "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd.", "Saving..." => "Opslaan", +"Your private key is not valid! Maybe the your password was changed from outside." => "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd.", +"You can unlock your private key in your " => "U kunt uw privésleutel deblokkeren in uw", +"personal settings" => "persoonlijke instellingen", "Encryption" => "Versleuteling", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Activeer versleuteling van wachtwoorden herstelsleutel (maak delen met herstel sleutel mogelijk):", "Recovery account password" => "Herstel account wachtwoord", @@ -15,6 +18,12 @@ "Old Recovery account password" => "Oude herstel account wachtwoord", "New Recovery account password" => "Nieuwe herstel account wachtwoord", "Change Password" => "Wijzigen wachtwoord", +" If you don't remember your old password you can ask your administrator to recover your files." => "Als u uw oude wachtwoord niet meer weet, kunt u uw beheerder vragen uw bestanden terug te halen.", +"Old log-in password" => "Oude wachtwoord", +"Current log-in password" => "Huidige wachtwoord", +"Update Private Key Password" => "Bijwerken wachtwoord Privésleutel", +"Enable password recovery:" => "Activeren wachtwoord herstel:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Het activeren van deze optie maakt het mogelijk om uw versleutelde bestanden te benaderen als uw wachtwoord kwijt is", "File recovery settings updated" => "Bestandsherstel instellingen bijgewerkt", "Could not update file recovery" => "Kon bestandsherstel niet bijwerken" ); diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index dea245d6d2..7d17a0adc6 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -5,7 +5,11 @@ "Could not disable recovery key. Please check your recovery key password!" => "Kunde inte inaktivera återställningsnyckeln. Vänligen kontrollera ditt lösenord för återställningsnyckeln!", "Password successfully changed." => "Ändringen av lösenordet lyckades.", "Could not change the password. Maybe the old password was not correct." => "Kunde inte ändra lösenordet. Kanske det gamla lösenordet inte var rätt.", +"Private key password successfully updated." => "Den privata lösenordsnyckeln uppdaterades utan problem.", +"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan. Du kan uppdatera din privata lösenordsnyckel under dina personliga inställningar för att återfå tillgång till dina filer", "Saving..." => "Sparar...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", "You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", "personal settings" => "personliga inställningar", "Encryption" => "Kryptering", @@ -17,8 +21,12 @@ "Old Recovery account password" => "Gamla lösenordet för återställningskontot", "New Recovery account password" => "Nytt återställningslösenord för kontot", "Change Password" => "Byt lösenord", +"Your private key password no longer match your log-in password:" => "Din privata lösenordsnyckel stämmer inte längre överrens med ditt inloggningslösenord:", +"Set your old private key password to your current log-in password." => "Ställ in din gamla privata lösenordsnyckel till ditt aktuella inloggningslösenord.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Om du inte kommer ihåg ditt gamla lösenord kan du be din administratör att återställa dina filer.", "Old log-in password" => "Gammalt inloggningslösenord", "Current log-in password" => "Nuvarande inloggningslösenord", +"Update Private Key Password" => "Uppdatera den privata lösenordsnyckeln", "Enable password recovery:" => "Aktivera lösenordsåterställning", "File recovery settings updated" => "Inställningarna för filåterställning har uppdaterats", "Could not update file recovery" => "Kunde inte uppdatera filåterställning" diff --git a/apps/user_webdavauth/l10n/ca.php b/apps/user_webdavauth/l10n/ca.php index a660e41592..339e4dbe68 100644 --- a/apps/user_webdavauth/l10n/ca.php +++ b/apps/user_webdavauth/l10n/ca.php @@ -1,4 +1,5 @@ "Autenticació WebDAV", +"URL: " => "URL:", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud enviarà les credencials d'usuari a aquesta URL. Aquest endollable en comprova la resposta i interpretarà els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides." ); diff --git a/apps/user_webdavauth/l10n/gl.php b/apps/user_webdavauth/l10n/gl.php index 81048a6314..35ed8a1969 100644 --- a/apps/user_webdavauth/l10n/gl.php +++ b/apps/user_webdavauth/l10n/gl.php @@ -1,4 +1,5 @@ "Autenticación WebDAV", +"URL: " => "URL: ", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud enviará as credenciais do usuario a este URL. Este engadido comproba a resposta e interpretará os códigos de estado HTTP 401 e 403 como credenciais incorrectas, e todas as outras respostas como credenciais correctas." ); diff --git a/apps/user_webdavauth/l10n/it.php b/apps/user_webdavauth/l10n/it.php index 4391c6d3f8..1c1e0899b1 100644 --- a/apps/user_webdavauth/l10n/it.php +++ b/apps/user_webdavauth/l10n/it.php @@ -1,4 +1,5 @@ "Autenticazione WebDAV", +"URL: " => "URL:", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud invierà le credenziali dell'utente a questo URL. Questa estensione controlla la risposta e interpreta i codici di stato 401 e 403 come credenziali non valide, e tutte le altre risposte come credenziali valide." ); diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php index 0cbbe813c4..703cc71489 100644 --- a/apps/user_webdavauth/l10n/ja_JP.php +++ b/apps/user_webdavauth/l10n/ja_JP.php @@ -1,4 +1,5 @@ "WebDAV 認証", +"URL: " => "URL: ", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloudはこのURLにユーザ資格情報を送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" ); diff --git a/apps/user_webdavauth/l10n/nl.php b/apps/user_webdavauth/l10n/nl.php index 342d46edf8..086f8ad2ea 100644 --- a/apps/user_webdavauth/l10n/nl.php +++ b/apps/user_webdavauth/l10n/nl.php @@ -1,4 +1,5 @@ "WebDAV authenticatie", +"URL: " => "URL: ", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud stuurt de inloggegevens naar deze URL. Deze plugin controleert het antwoord en interpreteert de HTTP statuscodes 401 als 403 als ongeldige inloggegevens, maar alle andere antwoorden als geldige inloggegevens." ); diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php index a87d4653d4..481b771094 100644 --- a/apps/user_webdavauth/l10n/sv.php +++ b/apps/user_webdavauth/l10n/sv.php @@ -1,4 +1,5 @@ "WebDAV Autentisering", +"URL: " => "URL:", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud kommer skicka användaruppgifterna till denna URL. Denna plugin kontrollerar svaret och tolkar HTTP-statuskoderna 401 och 403 som felaktiga uppgifter, och alla andra svar som giltiga uppgifter." ); diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 608f26bc86..490bea9b17 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -50,6 +50,7 @@ "Help" => "Помощ", "Access forbidden" => "Достъпът е забранен", "Cloud not found" => "облакът не намерен", +"web services under your control" => "уеб услуги под Ваш контрол", "Edit categories" => "Редактиране на категориите", "Add" => "Добавяне", "Create an admin account" => "Създаване на админ профил", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index ec7d688b7e..67cf0aca9d 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -1,4 +1,5 @@ "%s ha compartit »%s« amb tu", "Category type not provided." => "No s'ha especificat el tipus de categoria.", "No category to add?" => "No voleu afegir cap categoria?", "This category already exists: %s" => "Aquesta categoria ja existeix: %s", @@ -89,6 +90,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "La petició ha fallat!
    Esteu segur que el correu/nom d'usuari és correcte?", "You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.", "Username" => "Nom d'usuari", +"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Els vostres fitxers sembla que estan encriptats. Si no tenieu habilitada la clau de recuperació no hi haurà manera de recuperar les dades quan reestabliu la contrasenya. Si no sabeu què fer, contacteu amb l'administrador abans de continuar. Voleu continuar?", +"Yes, I really want to reset my password now" => "Sí, vull restablir ara la contrasenya", "Request reset" => "Sol·licita reinicialització", "Your password was reset" => "La vostra contrasenya s'ha reinicialitzat", "To login page" => "A la pàgina d'inici de sessió", @@ -101,6 +104,8 @@ "Help" => "Ajuda", "Access forbidden" => "Accés prohibit", "Cloud not found" => "No s'ha trobat el núvol", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!", +"web services under your control" => "controleu els vostres serveis web", "Edit categories" => "Edita les categories", "Add" => "Afegeix", "Security Warning" => "Avís de seguretat", @@ -130,6 +135,7 @@ "remember" => "recorda'm", "Log in" => "Inici de sessió", "Alternative Logins" => "Acreditacions alternatives", +"Hey there,

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

    Cheers!" => "Ei,

    només fer-te saber que %s ha compartit %s amb tu.
    Mira-ho:

    Salut!", "prev" => "anterior", "next" => "següent", "Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona." diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index aa50c3cb63..fbb778aacd 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -103,6 +103,7 @@ "Help" => "Nápověda", "Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", +"web services under your control" => "služby webu pod Vaší kontrolou", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Security Warning" => "Bezpečnostní upozornění", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index aeb2995e6b..6158a356dc 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -100,6 +100,7 @@ "Help" => "Cymorth", "Access forbidden" => "Mynediad wedi'i wahardd", "Cloud not found" => "Methwyd canfod cwmwl", +"web services under your control" => "gwasanaethau gwe a reolir gennych", "Edit categories" => "Golygu categorïau", "Add" => "Ychwanegu", "Security Warning" => "Rhybudd Diogelwch", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index 482632f3fd..0c590d0b75 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,3 +1,4 @@ "Passcode" +"Password" => "Passcode", +"web services under your control" => "web services under your control" ); diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 3585fedfb4..24e5a41fd0 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -101,6 +101,7 @@ "Help" => "Ayuda", "Access forbidden" => "Acceso denegado", "Cloud not found" => "No se encontró ownCloud", +"web services under your control" => "servicios web controlados por vos", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index cb4c089533..583fb73e57 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,4 +1,5 @@ "%s compartiu «%s» con vostede", "Category type not provided." => "Non se indicou o tipo de categoría", "No category to add?" => "Sen categoría que engadir?", "This category already exists: %s" => "Esta categoría xa existe: %s", @@ -103,6 +104,8 @@ "Help" => "Axuda", "Access forbidden" => "Acceso denegado", "Cloud not found" => "Nube non atopada", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!", +"web services under your control" => "servizos web baixo o seu control", "Edit categories" => "Editar as categorías", "Add" => "Engadir", "Security Warning" => "Aviso de seguranza", @@ -132,6 +135,7 @@ "remember" => "lembrar", "Log in" => "Conectar", "Alternative Logins" => "Accesos alternativos", +"Hey there,

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

    Cheers!" => "Ola,

    só facerlle saber que %s compartiu «%s» con vostede.
    Véxao!

    Saúdos!", "prev" => "anterior", "next" => "seguinte", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a versión %s, esto pode levar un anaco." diff --git a/core/l10n/he.php b/core/l10n/he.php index ab002ab64e..1095507673 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -101,6 +101,7 @@ "Help" => "עזרה", "Access forbidden" => "הגישה נחסמה", "Cloud not found" => "ענן לא נמצא", +"web services under your control" => "שירותי רשת תחת השליטה שלך", "Edit categories" => "ערוך קטגוריות", "Add" => "הוספה", "Security Warning" => "אזהרת אבטחה", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 3eb556e9f6..80a34094b2 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -73,6 +73,7 @@ "Help" => "Pomoć", "Access forbidden" => "Pristup zabranjen", "Cloud not found" => "Cloud nije pronađen", +"web services under your control" => "web usluge pod vašom kontrolom", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Create an admin account" => "Stvori administratorski račun", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 62dbe7f599..1e74fa7e06 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -101,6 +101,7 @@ "Help" => "Súgó", "Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", +"web services under your control" => "webszolgáltatások saját kézben", "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", "Security Warning" => "Biztonsági figyelmeztetés", diff --git a/core/l10n/it.php b/core/l10n/it.php index e6683d7aa7..a06283cf41 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,4 +1,5 @@ "%s condiviso »%s« con te", "Category type not provided." => "Tipo di categoria non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", "This category already exists: %s" => "Questa categoria esiste già: %s", @@ -89,6 +90,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "Richiesta non riuscita!
    Sei sicuro che l'indirizzo di posta/nome utente fosse corretto?", "You will receive a link to reset your password via Email." => "Riceverai un collegamento per ripristinare la tua password via email", "Username" => "Nome utente", +"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "I file non sembrano essere cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà resettata. Se non sei sicuro, per favore contatta l'amministratore prima di proseguire. Vuoi veramente continuare?", +"Yes, I really want to reset my password now" => "Sì, voglio davvero resettare la mia password adesso", "Request reset" => "Richiesta di ripristino", "Your password was reset" => "La password è stata ripristinata", "To login page" => "Alla pagina di accesso", @@ -101,6 +104,7 @@ "Help" => "Aiuto", "Access forbidden" => "Accesso negato", "Cloud not found" => "Nuvola non trovata", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nGrazie!", "web services under your control" => "servizi web nelle tue mani", "Edit categories" => "Modifica categorie", "Add" => "Aggiungi", @@ -131,6 +135,7 @@ "remember" => "ricorda", "Log in" => "Accedi", "Alternative Logins" => "Accessi alternativi", +"Hey there,

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

    Cheers!" => "Ehilà,

    volevo solamente farti sapere che %s ha condiviso »%s« con te.
    Guarda!

    Grazie!", "prev" => "precedente", "next" => "successivo", "Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo." diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 514ec67db0..5119330264 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -1,4 +1,5 @@ "%sが あなたと »%s«を共有しました", "Category type not provided." => "カテゴリタイプは提供されていません。", "No category to add?" => "追加するカテゴリはありませんか?", "This category already exists: %s" => "このカテゴリはすでに存在します: %s", @@ -103,6 +104,8 @@ "Help" => "ヘルプ", "Access forbidden" => "アクセスが禁止されています", "Cloud not found" => "見つかりません", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。", +"web services under your control" => "管理下のウェブサービス", "Edit categories" => "カテゴリを編集", "Add" => "追加", "Security Warning" => "セキュリティ警告", @@ -132,6 +135,7 @@ "remember" => "パスワードを記憶する", "Log in" => "ログイン", "Alternative Logins" => "代替ログイン", +"Hey there,

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

    Cheers!" => "こんにちは、

    %sがあなたと »%s« を共有したことをお知らせします。
    それを表示

    それでは。", "prev" => "前", "next" => "次", "Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 877d66a0db..6674106f1d 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -98,6 +98,7 @@ "Help" => "დახმარება", "Access forbidden" => "წვდომა აკრძალულია", "Cloud not found" => "ღრუბელი არ არსებობს", +"web services under your control" => "web services under your control", "Edit categories" => "კატეგორიების რედაქტირება", "Add" => "დამატება", "Security Warning" => "უსაფრთხოების გაფრთხილება", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index 1902e45061..ab46b13a50 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -10,6 +10,7 @@ "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", "Help" => "یارمەتی", "Cloud not found" => "هیچ نه‌دۆزرایه‌وه‌", +"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه", "Add" => "زیادکردن", "Advanced" => "هه‌ڵبژاردنی پیشكه‌وتوو", "Data folder" => "زانیاری فۆڵده‌ر", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index dc07acb110..dbe7a34de3 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -56,6 +56,7 @@ "Help" => "Hëllef", "Access forbidden" => "Access net erlaabt", "Cloud not found" => "Cloud net fonnt", +"web services under your control" => "Web Servicer ënnert denger Kontroll", "Edit categories" => "Kategorien editéieren", "Add" => "Dobäisetzen", "Security Warning" => "Sécherheets Warnung", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 4faf7388b2..673ee83dca 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -101,6 +101,7 @@ "Help" => "Pagalba", "Access forbidden" => "Priėjimas draudžiamas", "Cloud not found" => "Negalima rasti", +"web services under your control" => "jūsų valdomos web paslaugos", "Edit categories" => "Redaguoti kategorijas", "Add" => "Pridėti", "Security Warning" => "Saugumo pranešimas", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 9552891d7d..b8bfe74c37 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -98,6 +98,7 @@ "Help" => "Palīdzība", "Access forbidden" => "Pieeja ir liegta", "Cloud not found" => "Mākonis netika atrasts", +"web services under your control" => "tīmekļa servisi tavā varā", "Edit categories" => "Rediģēt kategoriju", "Add" => "Pievienot", "Security Warning" => "Brīdinājums par drošību", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index df417ea981..c28dead76d 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,4 +1,5 @@ "%s deelde »%s« met u", "Category type not provided." => "Categorie type niet opgegeven.", "No category to add?" => "Geen categorie toevoegen?", "This category already exists: %s" => "Deze categorie bestaat al: %s", @@ -89,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Aanvraag mislukt!
    Weet u zeker dat uw gebruikersnaam en/of wachtwoord goed waren?", "You will receive a link to reset your password via Email." => "U ontvangt een link om uw wachtwoord opnieuw in te stellen via e-mail.", "Username" => "Gebruikersnaam", +"Yes, I really want to reset my password now" => "Ja, ik wil mijn wachtwoord nu echt resetten", "Request reset" => "Resetaanvraag", "Your password was reset" => "Je wachtwoord is gewijzigd", "To login page" => "Naar de login-pagina", @@ -101,6 +103,7 @@ "Help" => "Help", "Access forbidden" => "Toegang verboden", "Cloud not found" => "Cloud niet gevonden", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo daar,\n\n%s deelde %s met u.\nBekijk: %s\n\nVeel plezier!", "web services under your control" => "Webdiensten in eigen beheer", "Edit categories" => "Wijzig categorieën", "Add" => "Toevoegen", @@ -131,6 +134,7 @@ "remember" => "onthoud gegevens", "Log in" => "Meld je aan", "Alternative Logins" => "Alternatieve inlogs", +"Hey there,

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

    Cheers!" => "Hallo daar,

    %s deelde »%s« met u.
    Bekijk!

    Veel plezier!", "prev" => "vorige", "next" => "volgende", "Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren." diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 2a6e88b12a..9e1f76e4c0 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -101,6 +101,7 @@ "Help" => "Pomoc", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", +"web services under your control" => "Kontrolowane serwisy", "Edit categories" => "Edytuj kategorie", "Add" => "Dodaj", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 57e16456ec..028f5f3e56 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -101,6 +101,7 @@ "Help" => "Ajuda", "Access forbidden" => "Acesso proibido", "Cloud not found" => "Cloud não encontrado", +"web services under your control" => "serviços web sob seu controle", "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index b0afff1ad2..77c27b641d 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -101,6 +101,7 @@ "Help" => "Ajuda", "Access forbidden" => "Acesso interdito", "Cloud not found" => "Cloud nao encontrada", +"web services under your control" => "serviços web sob o seu controlo", "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 0cf44ee582..29febc283b 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -100,6 +100,7 @@ "Help" => "Pomoc", "Access forbidden" => "Prístup odmietnutý", "Cloud not found" => "Nenájdené", +"web services under your control" => "webové služby pod Vašou kontrolou", "Edit categories" => "Upraviť kategórie", "Add" => "Pridať", "Security Warning" => "Bezpečnostné varovanie", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 96e79db700..68abe9bd15 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -1,4 +1,5 @@ "%s delade »%s« med dig", "Category type not provided." => "Kategorityp inte angiven.", "No category to add?" => "Ingen kategori att lägga till?", "This category already exists: %s" => "Denna kategori finns redan: %s", @@ -103,6 +104,7 @@ "Help" => "Hjälp", "Access forbidden" => "Åtkomst förbjuden", "Cloud not found" => "Hittade inget moln", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!", "web services under your control" => "webbtjänster under din kontroll", "Edit categories" => "Editera kategorier", "Add" => "Lägg till", @@ -133,6 +135,7 @@ "remember" => "kom ihåg", "Log in" => "Logga in", "Alternative Logins" => "Alternativa inloggningar", +"Hey there,

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

    Cheers!" => "Hej där,

    ville bara informera dig om att %s delade »%s« med dig.
    Titta på den!

    Hörs!", "prev" => "föregående", "next" => "nästa", "Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund." diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index e593018aaa..0770805ddf 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -90,6 +90,7 @@ "Help" => "உதவி", "Access forbidden" => "அணுக தடை", "Cloud not found" => "Cloud காணப்படவில்லை", +"web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது", "Edit categories" => "வகைகளை தொகுக்க", "Add" => "சேர்க்க", "Security Warning" => "பாதுகாப்பு எச்சரிக்கை", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 392da561bf..83642ed89c 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -97,6 +97,7 @@ "Help" => "ช่วยเหลือ", "Access forbidden" => "การเข้าถึงถูกหวงห้าม", "Cloud not found" => "ไม่พบ Cloud", +"web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้", "Edit categories" => "แก้ไขหมวดหมู่", "Add" => "เพิ่ม", "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 0a56af9418..f6112040c5 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -101,6 +101,7 @@ "Help" => "Yardım", "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", +"web services under your control" => "Bilgileriniz güvenli ve şifreli", "Edit categories" => "Kategorileri düzenle", "Add" => "Ekle", "Security Warning" => "Güvenlik Uyarisi", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 237f0bb14b..b4cc129964 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -97,6 +97,7 @@ "Help" => "帮助", "Access forbidden" => "禁止访问", "Cloud not found" => "云 没有被找到", +"web services under your control" => "您控制的网络服务", "Edit categories" => "编辑分类", "Add" => "添加", "Security Warning" => "安全警告", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index a738e13714..29fef5ff22 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -101,6 +101,7 @@ "Help" => "帮助", "Access forbidden" => "访问禁止", "Cloud not found" => "未找到云", +"web services under your control" => "您控制的web服务", "Edit categories" => "编辑分类", "Add" => "增加", "Security Warning" => "安全警告", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 3795d2ea6a..0270e921e3 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -101,6 +101,7 @@ "Help" => "說明", "Access forbidden" => "存取被拒", "Cloud not found" => "未發現雲端", +"web services under your control" => "由您控制的網路服務", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 86d627e400..73416e65a4 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:14+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 1e50b1ae72..e24556c3a6 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:14+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 8e1b7a6cf2..0cf200f5bf 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 921fa165ee..196a1274fa 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 e22cfb098b..f64e78c031 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 7cbebf8fda..8f8d99e6a4 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 0a888693fd..60c4f65095 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 a80e431a19..dfedde4314 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 aa9b625bab..beceaa0af9 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 9a3aca8127..9b4499dfa6 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 2fc08d8360..d306ae36a8 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -474,7 +474,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "уеб услуги под Ваш контрол" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 13edfdc024..a30f638485 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 7aaf66ca7b..ee0314159a 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9c643375db..388d262eaa 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 dbc5bcf556..52d0895e4f 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 3cc605493f..41e23ac79a 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 92deef9275..267ff6cfb6 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 4a7f01d942..a15be96af1 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3d38bde97c..fae0c1c397 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 e279cde478..a69e64f8f0 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 dd4ebb6b3b..598a72580a 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 42b714102f..608f23918a 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 8b698752be..5c4fe402ba 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 ddc8095653..ffde1bf195 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 9e485eed15..98d92b7546 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index dd02b9d276..0734dc0f63 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 0d0f21131b..db6676e560 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index bad4a3f4a8..b22e1f9ad5 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index cbdfc2891e..92a183fe21 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 0b2fb73dc3..857802d29a 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s ha compartit »%s« amb tu" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -409,11 +409,11 @@ msgid "" "key there will be no way to get your data back once the password was " "resetted. If you are not sure what to do, please contact your administrator " "first before continue. Do you really want to continue?" -msgstr "" +msgstr "Els vostres fitxers sembla que estan encriptats. Si no tenieu habilitada la clau de recuperació no hi haurà manera de recuperar les dades quan reestabliu la contrasenya. Si no sabeu què fer, contacteu amb l'administrador abans de continuar. Voleu continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sí, vull restablir ara la contrasenya" #: lostpassword/templates/lostpassword.php:29 msgid "Request reset" @@ -472,11 +472,11 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "controleu els vostres serveis web" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -614,7 +614,7 @@ msgstr "Acreditacions alternatives" msgid "" "Hey there,

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

    Cheers!" -msgstr "" +msgstr "Ei,

    només fer-te saber que %s ha compartit %s amb tu.
    Mira-ho:

    Salut!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index aac3455559..bde57a7a9a 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 9fa8290105..6634d4057e 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/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-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 21:10+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,20 +47,20 @@ msgstr "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "La contrasenya de la clau privada s'ha actualitzat." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta." #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "La clau privada no és vàlida! Potser la contrasenya ha canviat des de fora. Podeu actualitzar la contrasenya de la clau privada a l'arranjament personal per obtenir de nou accés als vostres fitxers" #: js/settings-admin.js:11 msgid "Saving..." @@ -70,15 +70,15 @@ msgstr "Desant..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Podeu desbloquejar la clau privada en el vostre" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "arranjament personal" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -119,39 +119,39 @@ msgstr "Canvia la contrasenya" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "La clau privada ja no es correspon amb la contrasenya d'accés:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Establiu la vostra contrasenya clau en funció de la contrasenya actual d'accés." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Si no recordeu la contrasenya anterior podeu demanar a l'administrador que recuperi els vostres fitxers." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Contrasenya anterior d'accés" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Contrasenya d'accés actual" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Actualitza la contrasenya de clau privada" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Habilita la recuperació de contrasenya:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index ab38719c5f..723084bfb6 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 89b32ab719..fd5439dce2 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 8e9b59c8d8..6dbc5db348 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 0a034d361c..3cd7660931 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 8f0c16a184..d3ae93dbd4 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 9c5766926e..e5529ecd92 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index 419fe4b669..ca202c2dd7 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 21:00+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "Autenticació WebDAV" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 45686d4a14..8d47b1391c 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -476,7 +476,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "služby webu pod Vaší kontrolou" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 50d7f22e68..fba844fb09 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 4227fdd775..b9148c20cd 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 ae62015fe4..8da6fa0b0e 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 b4e984640c..e9db011f22 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 86c6b7539a..27c2cdc59b 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 7388ae85b5..8580a5f086 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 66af31d702..6079b06f9e 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index b061c4dbca..533021befc 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "gwasanaethau gwe a reolir gennych" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index e197fcbd0f..e55b8a449f 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index ea87e65398..9509af8d42 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 91212135d1..37465bc756 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index a0e4f49251..242235a926 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 769ead91b7..2694a881fc 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 6fe2d2d907..2c267c8a21 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 846e20673a..97d2f101af 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 86d1e6dc5b..21914ea6fd 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 5e2cac3f70..d1b2159b12 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Ole Holm Frandsen \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 c5b73d5363..bfbb739a34 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e61dc2a39f..40a1935403 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 af028f0a94..adcb817ff7 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e5ef20904f..dcd8a5c8e0 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Ole Holm Frandsen \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 adcd6174e3..48ac705fae 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 995c8ac4e1..09efad7472 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3636b2b812..009f5a4356 100644 --- a/l10n/de/core.po +++ b/l10n/de/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 5a172d269c..89a10dbea3 100644 --- a/l10n/de/files.po +++ b/l10n/de/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: ninov \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 bc0716ec0d..f38837c589 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 0f29452ce3..370b589ae7 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9d50fbf725..9142337f37 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index fd94af809c..b5f8d58a76 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 461e5e1cf0..fa4d9f8feb 100644 --- a/l10n/de/settings.po +++ b/l10n/de/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 17eb29eaab..800dd5c880 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 0a95dd4316..a0d41ca5d3 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 990d9f00a2..972ada8159 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: a.tangemann \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 a417e3dd26..9a82e2510f 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 72d4c2c142..19b18cd92c 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 692a966f28..3a83067515 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index cc676a31db..5e7ea9ace3 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index f4926dad38..34cacb9103 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index f0a767b5d6..b77d80d49b 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index a0dc1318c1..f7fa53bace 100644 --- a/l10n/el/core.po +++ b/l10n/el/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 0f2f21822a..54a8fa6f7e 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Efstathios Iosifidis \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 004720598f..1d8b6addbb 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index b3e82b2aa4..94a8874dcc 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 0eb87e5d6c..7f3d43db52 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 5ef924bc8a..5f130caa47 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3c9cd3b650..bb7f49e3ee 100644 --- a/l10n/el/settings.po +++ b/l10n/el/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index a72ca9c73e..4f5f778e6d 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index ad13bf3185..9ac9450968 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "web services under your control" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index bb2d631f28..928ebc78fb 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 68dd194f52..dd710a4e8c 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 9fd8d7e651..17c9adc3f3 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 83fd2741e7..f1d26fc684 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 407d841c9b..6e88aa17a3 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 5c688f14ac..86f8e5b7a8 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 f8e726e0ca..12705a0eb6 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 20673de28f..a3989d47df 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9256e1b3d3..ac9edad247 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 746a2452dd..020acdd9be 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 23a16692f7..1c587f8af5 100644 --- a/l10n/es/core.po +++ b/l10n/es/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 9b94d91b4f..08306f77d6 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Art O. Pal \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 a3be10d226..77c7ba2fc8 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 a4b2fba48c..bb9db8bd0e 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 b732b5dfdf..76c3565dca 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 d9a2c684f6..340cba90f4 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 073c110b1d..77690a9f4d 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: saskarip\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index dd5d2c5861..f325091643 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 8cf6fbf766..b8740f3f2e 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "servicios web controlados por vos" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 6df041c248..a75b9383e2 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Agustin Ferrario \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 f32e685599..20949cf287 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 3f8df062da..0576a29a51 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 fe1e83f89a..48e7375515 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 41834bca1e..644592c62d 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 9c73b8728c..a2bf733c78 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 87a4029140..bed6b97338 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 2d69361d43..686a92cfaa 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 a3098219dd..79e2a63360 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 2dcf31ea79..483f59c8b5 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index f8e917fc36..eb1af6f163 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 441dd5cd08..cf63483257 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 4a2b64ac13..57a487e219 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index f4ac45e73f..b4c08926a6 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 4edfe0470e..1479091173 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index c6875db389..26d9890644 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 3f75e5eb8a..9b97745e17 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 c23fcb85cf..9351a63a57 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 133f8e466c..56ba4409d2 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e2207d2677..a0606ddfe3 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 50c3dffa86..2092aa29bc 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 6cb2360246..b0f2ca85af 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 2025951a77..ed657aef38 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 dcf6fa936c..931bb33485 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 c4a93b7b4c..6a9b4282ef 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 698af32ac7..db895d9211 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 7bd4d424c6..0764b5c956 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 21e8e67a7a..f95fe325f9 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 b4ce54d987..0e0632f3c9 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e580420023..66691911c6 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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_ldap.po b/l10n/fa/user_ldap.po index c7259232b5..fed06627be 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index dea7f6555a..15cbae4cca 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 7bd30bd96e..e6d9704a05 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 68f881f293..074972fd56 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 c0ede15d1c..5bbe728ed8 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 a9c42c9343..dbc448f472 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 bcef387026..ae1d41b126 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index e24b48f8ac..1578bccd5d 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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_ldap.po b/l10n/fi_FI/user_ldap.po index 5eee779302..2704b7c364 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 f86db70919..7c89205a0f 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 afcf1be439..31e25e5b1d 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index a3440d2341..9cb45f9e49 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# froozeify , 2013 # lyly95, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 12:00+0000\n" +"Last-Translator: froozeify \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" @@ -46,13 +47,13 @@ msgstr "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-êtr #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Mot de passe de la clé privé mis à jour avec succès." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte." #: files/error.php:7 msgid "" @@ -77,7 +78,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "paramètres personnel" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 961aaae34d..91fc0353ed 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3c42afe9a3..ea6d2e2269 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 da615896f2..929158a6ff 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 d45b25eeea..5cc2d8804e 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Cyril Glapa \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 d47cb80cb8..d67de6a9a5 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: lyly95\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 2e7b16134e..01335faaf2 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index f44bae0875..4014209b16 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s compartiu «%s» con vostede" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -471,11 +471,11 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "servizos web baixo o seu control" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -613,7 +613,7 @@ msgstr "Accesos alternativos" msgid "" "Hey there,

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

    Cheers!" -msgstr "" +msgstr "Ola,

    só facerlle saber que %s compartiu «%s» con vostede.
    Véxao!

    Saúdos!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 80f7c70739..32a71a685e 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 354e522831..5ec3e9fec8 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 2ce72a18f0..4597925f91 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 fcc6a59103..794428f927 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 ca792781dd..3b2f40480c 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index b5a755560e..7fda502a37 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 5647189034..00ee54a0b8 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index 68b908ae6e..d92c173664 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 09:10+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "Autenticación WebDAV" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: templates/settings.php:7 msgid "" diff --git a/l10n/he/core.po b/l10n/he/core.po index 43b18f04cb..cd2e422728 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "שירותי רשת תחת השליטה שלך" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/he/files.po b/l10n/he/files.po index fa0ec869a2..775b8607fd 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 3695472456..8f408e0c8c 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 a826e5579d..b3ca74cc28 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 74e3329cd6..0a2f089086 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 72b700c307..f95f5bd4d1 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 74cec0f5cb..5d95c144fe 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 0e0727ed1c..2e0c7da2ed 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e2bac1aa92..cc4cb82e0e 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 06e8e953aa..73df48a956 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 d8eae0f090..f18ebbbfab 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 90b3e540ff..cff5748714 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -474,7 +474,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "web usluge pod vašom kontrolom" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index a7f98662b9..044c3ffd8d 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 0a08bb3d8d..2eaaccd770 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 4fa117375a..d98e70ae04 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 311a4b1a6c..f8cc9e3e8c 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 efe5e6372f..d25aa1446e 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 5ab496870d..78f830eaff 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 417f61520e..e72455ab6d 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 c28736d5c3..1e1c346145 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "webszolgáltatások saját kézben" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index c1113bb3c4..fd2eb039c8 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 3b8388222b..67c15616aa 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index ff5825b57a..a360d5e25f 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 fa82f2a6ff..b12ac94677 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 24a0e17d83..15fff2ed2c 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index c4ab1ce07d..cdf00c6e4b 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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_ldap.po b/l10n/hu_HU/user_ldap.po index 2b92e4a714..0cee2e17aa 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 2ff4367fe1..7d196d4f2a 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index c5e9446650..e68a595a3f 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 78012b96d6..6fbc99cb70 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index a15430d342..c12ace6d2c 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 6da1cce0ca..89e69768ca 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 9d520a20a7..85839d91e2 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 d6c5b5155f..daf64e748f 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 61d1805892..2998354b7a 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 33db5fbd1c..c40b91f1ff 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 a22069503e..7e069ffa02 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 ec7370ad3f..fbdf7c4998 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e074e0346d..1db5ecfbf5 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 82ef2f4c94..5c6ded8f13 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e8ecf4d015..ac236e4825 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 5f16576376..efd189b93b 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 bd60cfe56f..e4011aa7b2 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 8cbea78191..3a5fbba256 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3effbf5c86..0882e13f42 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3bf39199ea..09525b5ea1 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 5be3b76708..dd6d8fbb62 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 8b0c6a361c..a4ddd59865 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 f4fe7935a4..8329f2a43b 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 5ef4e65c5e..c50a720a77 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 def028c17b..ff84e6c25f 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 1279350159..59c23a8539 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 f19e3ed988..a11ab01f66 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 dff7adbb44..976231036a 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 59cce3185e..e7389d6b8e 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 37ca9993e2..bb05549726 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 3205b81c69..630aa96af4 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# idetao , 2013 # Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"Last-Translator: idetao \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s condiviso »%s« con te" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -408,11 +409,11 @@ msgid "" "key there will be no way to get your data back once the password was " "resetted. If you are not sure what to do, please contact your administrator " "first before continue. Do you really want to continue?" -msgstr "" +msgstr "I file non sembrano essere cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà resettata. Se non sei sicuro, per favore contatta l'amministratore prima di proseguire. Vuoi veramente continuare?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sì, voglio davvero resettare la mia password adesso" #: lostpassword/templates/lostpassword.php:29 msgid "Request reset" @@ -471,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nGrazie!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +614,7 @@ msgstr "Accessi alternativi" msgid "" "Hey there,

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

    Cheers!" -msgstr "" +msgstr "Ehilà,

    volevo solamente farti sapere che %s ha condiviso »%s« con te.
    Guarda!

    Grazie!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/it/files.po b/l10n/it/files.po index 59e6d9b348..ed9af108b7 100644 --- a/l10n/it/files.po +++ b/l10n/it/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index f71f06e059..e92fab7b94 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# idetao , 2013 # Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 11:00+0000\n" +"Last-Translator: idetao \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,20 +47,20 @@ msgstr "Impossibile cambiare la password. Forse la vecchia password non era corr #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Password della chiave privata aggiornata correttamente." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta." #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "La chiave privata non è valida! Forse la password è stata cambiata dall'esterno. Puoi aggiornare la password della chiave privata nelle impostazioni personali per riottenere l'accesso ai file." #: js/settings-admin.js:11 msgid "Saving..." @@ -69,15 +70,15 @@ msgstr "Salvataggio in corso..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "La tua chiave privata non è valida! Forse è stata modifica dall'esterno." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Puoi sbloccare la chiave privata nel tuo" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "Impostazioni personali" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -118,39 +119,39 @@ msgstr "Modifica password" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "La password della chiave privata non corrisponde più alla password di login:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Imposta la vecchia password della chiave privata sull'attuale password di login" #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Password di login vecchia" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Password di login corrente" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Aggiorna la Password della Chiave Privata" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Abilita il recupero della password:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Abilitando questa opzione potrai riaccedere ai file cifrati nel caso in cui la password venga perduta" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 67f9646d14..7a10ae3b5f 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 0c32200764..1ec88aebe8 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 faa388150a..e1acbb3a88 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index b3cf5e2064..6b9006f3af 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 9efdab04a1..16f0a72cae 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index cfa6184057..99ec3b6f31 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index d8a8cf5216..1454f5effb 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# idetao , 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 08:20+0000\n" +"Last-Translator: idetao \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "Autenticazione WebDAV" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 19ada0a05c..27d19d237e 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"Last-Translator: plazmism \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" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%sが あなたと »%s«を共有しました" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -472,11 +472,11 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "管理下のウェブサービス" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -614,7 +614,7 @@ msgstr "代替ログイン" msgid "" "Hey there,

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

    Cheers!" -msgstr "" +msgstr "こんにちは、

    %sがあなたと »%s« を共有したことをお知らせします。
    それを表示

    それでは。" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 6a1fcd9d75..2eb1d3deac 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index f022a39edd..39185f26ca 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 d5555baf6e..3b74d2dceb 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e89d88e92b..7fa26aaa71 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 39d89b1958..25576b17e2 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 87fa22bdc9..64a3276c59 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 91de95a1b5..80ea960cec 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 0db6319342..a72b738124 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -5,13 +5,14 @@ # Translators: # Daisuke Deguchi , 2012 # Daisuke Deguchi , 2012-2013 +# plazmism , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 05:30+0000\n" +"Last-Translator: plazmism \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" @@ -25,7 +26,7 @@ msgstr "WebDAV 認証" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: templates/settings.php:7 msgid "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 44be893a8a..5be6e2d4d8 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 70bd2c21e1..2550c7febb 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 29272b0268..3e36d9314d 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -474,7 +474,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "web services under your control" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 2030de7fef..52d6359d45 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 0b65726778..7a8adaef47 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 26f4931343..985a9aa21d 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 de54f9267c..ad4ec649b7 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 819c017a22..21cc679eb6 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 85b98c49fa..e7e3657ed9 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index bfb0263274..72bcd83c9d 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index e6f0bf56c0..7058c736d8 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 f276c5c238..ca638cf931 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 9635e119c7..f956ff2d5d 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 60dbbf682f..951d125cc9 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3b7a8e8a12..407c0cf9c2 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 1ba39cf7c4..28cf81f5b3 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 0b6af45fec..70e5121c2b 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 af42c12374..41d97d0477 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 2f4972fb27..4942237c5a 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -474,7 +474,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 66cb431e9c..7846887ab0 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 f4231bfc22..b3362745b2 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 284b774976..a9960367e8 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 55c8936b8f..1a2dd0ff02 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index bea61782a2..99177f7f97 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 3e489d59a3..b42f9c2a8a 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 668d648449..9d2326a0ab 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -474,7 +474,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "Web Servicer ënnert denger Kontroll" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index b8d01362b0..b0499ff9f4 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 6f1540d4bf..1410b0069b 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9d901c290e..b9a0db8189 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 4180748506..a9fa6ff810 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 c1fc826be4..534ae1898c 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 980a0b09c9..750ddbd263 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 3535881acb..64b70edc20 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 01382950b7..56f947d806 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -476,7 +476,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "jūsų valdomos web paslaugos" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index a082db3c7c..21de951970 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index fc634a4457..fdb7c9dba0 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index ff3e427ee3..5640140a27 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 b41d20f620..a974312856 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 3b854844d4..183c7b657f 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index bb24553620..504fadcbba 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 9f54d77d2c..17a14dd19a 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 b00a7621a6..f0b55605bd 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -474,7 +474,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "tīmekļa servisi tavā varā" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 2e1810e652..c86cfd8925 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 967167caf5..7bd1a0c2af 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 2c04bc953c..51b337c47b 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 cce2df3dd9..ef02982ae0 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 68a4d780a9..5bfd15ca86 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9ad090e060..d499d8d949 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 8f0fb1cc98..bf2c11af45 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 f1c5ef23f8..07871e2ca0 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 757b342b85..73d0469bdb 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 8daed12b60..59ed1f8f8f 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 004608cfb5..99a985e16a 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 0bbfd45849..6b647a2e41 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e2e0a84ebf..73256d364a 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 9ae06683bd..774f963ceb 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index f5597b108c..a9ea2428a4 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 bf8ecd2277..424c93c1ab 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 a68988556a..d044cd7dc5 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 8a26d21360..fb89a67603 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9412971f4a..e813dd7535 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9e792096a5..c2507795f3 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 bc34cc5250..c86c39650f 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 50218ee5c8..8b8715ff91 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 87d1374cf6..a73c6efa3d 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3214ef545f..bcfc209d2a 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 f350b606b7..74bb651285 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 b377716c12..0417afa925 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 6bdf49d04c..e386aec260 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3f821b96d2..527d6b52d0 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 db5dc4229a..16d6e752ea 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index ffaaf976df..fabf152762 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 49724c7499..7890efa637 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 340a421ab1..a8c075e09f 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 338fbef3db..2d4f80e063 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3c79b866ee..ab3e7ffafd 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index d0062cef4f..5dab4289bd 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 1db98faf6a..6c40923c99 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s deelde »%s« met u" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -412,7 +412,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ja, ik wil mijn wachtwoord nu echt resetten" #: lostpassword/templates/lostpassword.php:29 msgid "Request reset" @@ -471,7 +471,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hallo daar,\n\n%s deelde %s met u.\nBekijk: %s\n\nVeel plezier!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +613,7 @@ msgstr "Alternatieve inlogs" msgid "" "Hey there,

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

    Cheers!" -msgstr "" +msgstr "Hallo daar,

    %s deelde »%s« met u.
    Bekijk!

    Veel plezier!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 8f138a098a..674e2a8d7b 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index b37a3a6376..a2c16d0120 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/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-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 21:40+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,15 +69,15 @@ msgstr "Opslaan" msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "U kunt uw privésleutel deblokkeren in uw" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "persoonlijke instellingen" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -128,29 +128,29 @@ msgstr "" msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Als u uw oude wachtwoord niet meer weet, kunt u uw beheerder vragen uw bestanden terug te halen." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Oude wachtwoord" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Huidige wachtwoord" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Bijwerken wachtwoord Privésleutel" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Activeren wachtwoord herstel:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Het activeren van deze optie maakt het mogelijk om uw versleutelde bestanden te benaderen als uw wachtwoord kwijt is" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index f3c693b27b..46102e0e70 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index ab79220ef4..5ca36b55d6 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 7d8667d67b..61996dac98 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 01553f9117..b10b94f2be 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index d51d2a3a34..ea01c56ee8 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -473,7 +473,7 @@ msgstr "Beheer herstel wachtwoord" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen bij wachtwoordwijziging" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 2133d848fb..f894315217 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index 20a40d4db7..16a063e349 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 21:40+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +25,7 @@ msgstr "WebDAV authenticatie" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: templates/settings.php:7 msgid "" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 8319381da8..cbde299521 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 a5cd9acfec..9672e6f7e3 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 90767bd6a9..a81ba3774a 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 037b999576..0e5fb7ce7b 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 14230546f5..58a84858fb 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index c0bda9dd75..66b86a8172 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index b8c13985ed..fffaad9f56 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 3352574d3d..0c26e10837 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 ef3eed64e3..75b0b16d2f 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 d3d7966158..685f53f706 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 c44fec31d5..fcaae7d1a0 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 554d55b4fc..917722fb48 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 0245618772..02ebc74512 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9b3fd029a9..e5117d3f15 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 318f9ad179..74a5426f4c 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 2c06da0d13..5d5c54d811 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 a43292c151..d9741def08 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -476,7 +476,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "Kontrolowane serwisy" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index f735c536b2..251aac6aba 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: adbrand \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 937887c739..4ce57898a8 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 2497aaaf2d..67304dbfc8 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 885692430d..28c5125fae 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 963b234b1b..a9bbca8b1b 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index e05160538e..0c07fdc795 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 008f309727..309f935377 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index b98165b3ea..94fa011c84 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "serviços web sob seu controle" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index cf6d54133b..5878c98c6a 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index d33fbc41fa..d332b1bd20 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index ccde5ad3f6..8f45597b3a 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 223348ceb8..6efe4da14c 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 831450d742..88bb3babbe 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index f5976d91bb..9bf886fd50 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index a63c5d293e..8b78fbdba3 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index a18f1d1030..5988aae2bc 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -476,7 +476,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "serviços web sob o seu controlo" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index c62a270490..d0abaf4cc5 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: bmgmatias \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 8b6e77f5e1..d1b910c8f8 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 1d43a26736..936236919c 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 22c5fdc702..f6f6cff5bc 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 493323027c..3acb3ca1f5 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 17f654b386..9a23a3c7e4 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Nelson Rosado \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 241d17ea7b..3de4e6c04d 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 01d8cb23c8..c0feb35a2d 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 d9e0e54aac..df6d192dba 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 3bde8e5a39..de7972a076 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 867e787303..399d35fd01 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 04387f57c6..4367d93361 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 0e610d10f4..1ace9239af 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 6212e1df37..f372c25ae9 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 2f396060ca..b0ed1189e5 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 4227630bf9..d8bc6df767 100644 --- a/l10n/ru/core.po +++ b/l10n/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 7892b6361e..6f88f34002 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Friktor \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 2cab74c9da..0ca91d201d 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 fccec3e5eb..c73f104fb0 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 e64c1ed9c0..c93789b54c 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 ee7c104847..1c3861a36f 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Friktor \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 2b72d3b7c7..3e370665ce 100644 --- a/l10n/ru/settings.po +++ b/l10n/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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_ldap.po b/l10n/ru/user_ldap.po index 6a881240f7..0a4f8db8fb 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Fenuks \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 9bb1fa397b..b134012933 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 9cab9f9da8..2517d43a2a 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 ee4f10fa46..2b19f8c1e3 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 506e595c50..3eba05e8ae 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 85042e4e65..3d056e4338 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 264f8a1978..53678e3855 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 6e6f47d41c..ae906f9a48 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 422a754510..76d14f2437 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 21946359e3..5265ff6542 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "webové služby pod Vašou kontrolou" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index e3bd2d258c..bb9920f0e8 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index d9396b678e..d22be0619f 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 922dddb822..7830894964 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 600a7853b0..9853b07334 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 de33cbb359..d1e0123096 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 4d125c48f4..8e4097b014 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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_ldap.po b/l10n/sk_SK/user_ldap.po index 364d219f89..14a021b36e 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 095b3ee65b..4c2f47b70d 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 7bb679f934..b2fe503eee 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 c22fd3c521..a4ed4aae6a 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 8a69883b89..aa1c40367a 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 35b1696bcf..9fa91096ce 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 884c58f889..23f91d5b1d 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 df08eb40fa..caff6c3d0b 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 50becb56bc..3b8d5345fd 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 49fc5f074e..1c8255c649 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 a6b80deaaa..cbf99f0a95 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 bc3650b7c4..7c8144b37e 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 4a7653f8f5..0ac145021e 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 218015d5b2..5df22d1ccd 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 d7e29e83e5..7ad4f6ecf1 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 7378e4e660..aa3279ee08 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 590bd739d5..a4b802b8bc 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 4b34968f4c..a50656665f 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 3a69685cfd..b33c7aa315 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 4a55e5abd5..6576f0c107 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 fefeb0e610..45cf9b3c13 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 096c6b148f..0d0b002e3f 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 1c0236fef4..68f2ca7c1a 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 c9821ef534..762059683c 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 991dc67423..216ad8242d 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9fb4684fc6..68d60ad2bd 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 79afcef0b5..7fbd9444dc 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 ffcb0cad58..d8ae4a9564 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 4e68cf57a6..073ad050b6 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3b5252f02a..eee1a0f967 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 d8e0139095..fcc50017be 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 76471e7d37..d2cdbaee34 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 164fe5f225..87a94986ce 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +23,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s delade »%s« med dig" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -473,7 +473,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -615,7 +615,7 @@ msgstr "Alternativa inloggningar" msgid "" "Hey there,

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

    Cheers!" -msgstr "" +msgstr "Hej där,

    ville bara informera dig om att %s delade »%s« med dig.
    Titta på den!

    Hörs!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 898d3a676c..23d25d7edc 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Gunnar Norin \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 4e938730a8..65010140e9 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 16:00+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -47,20 +47,20 @@ msgstr "Kunde inte ändra lösenordet. Kanske det gamla lösenordet inte var rä #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Den privata lösenordsnyckeln uppdaterades utan problem." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel." #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan. Du kan uppdatera din privata lösenordsnyckel under dina personliga inställningar för att återfå tillgång till dina filer" #: js/settings-admin.js:11 msgid "Saving..." @@ -70,7 +70,7 @@ msgstr "Sparar..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " @@ -119,17 +119,17 @@ msgstr "Byt lösenord" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Din privata lösenordsnyckel stämmer inte längre överrens med ditt inloggningslösenord:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Ställ in din gamla privata lösenordsnyckel till ditt aktuella inloggningslösenord." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Om du inte kommer ihåg ditt gamla lösenord kan du be din administratör att återställa dina filer." #: templates/settings-personal.php:24 msgid "Old log-in password" @@ -141,7 +141,7 @@ msgstr "Nuvarande inloggningslösenord" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Uppdatera den privata lösenordsnyckeln" #: templates/settings-personal.php:45 msgid "Enable password recovery:" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 6d4ca48e41..b8446c7d75 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index e5b29c5e8c..c735c8dc38 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 fc6b11eaf4..0c012d38c4 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 cb419af40f..fd232283db 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index c4dd85195a..77d0875c46 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: Gunnar Norin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 591f1b6ca4..52c9e61b9b 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index 0f430e9dfc..e8848e9ada 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# medialabs, 2013 # Magnus Höglund , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 10:50+0000\n" +"Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "WebDAV Autentisering" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index ad003c96d0..af3fbc3b5e 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -474,7 +474,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index cc9666388f..87fc598cf4 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 f8a32b56b0..9a0940e14e 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 02c0c0beb9..84ea6e5f5c 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 ba3ed74847..b5e5d04816 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 5612ea1c41..492ced41da 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 6f64b7c364..c1c94fa86b 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 53aa28a928..2a1eee3915 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 b029d43739..31c7ad8642 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 344844bd2f..a1f83666ae 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 fcd7c41368..c49ba9b54a 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 23be9fa1bf..a7851eaaa9 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 026dcb4ff6..c034ef6447 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index b69ee26731..0152112dbc 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index c4abd3a9aa..a02eea036e 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 4cc5d8a156..07f903727f 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-06-15 01:59+0200\n" +"POT-Creation-Date: 2013-06-16 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 7ada154ee8..9b7c997381 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-06-15 01:58+0200\n" +"POT-Creation-Date: 2013-06-16 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 f1280c6fdd..f53a68116c 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-06-15 01:58+0200\n" +"POT-Creation-Date: 2013-06-16 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 6d2cb00c21..6faf82b0c3 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-06-15 01:58+0200\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 44ae0f186f..51602e6b27 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-06-15 01:58+0200\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index d4a0658c13..4c42ebd346 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-06-15 01:58+0200\n" +"POT-Creation-Date: 2013-06-16 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 06c4f5636b..c9c8107752 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-06-15 01:59+0200\n" +"POT-Creation-Date: 2013-06-16 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 8485ec1d57..e8d2f50ad4 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-06-15 01:59+0200\n" +"POT-Creation-Date: 2013-06-16 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 32ead9a73c..887bf4775f 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-06-15 01:59+0200\n" +"POT-Creation-Date: 2013-06-16 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 7f00ea271c..b984f9962d 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-06-15 01:59+0200\n" +"POT-Creation-Date: 2013-06-16 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 524b73e61b..38c983d62b 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-06-15 01:59+0200\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 34854022ce..3d45513567 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -474,7 +474,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 5ca5df46d4..ab252c8357 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 e1a6396788..713406d8a1 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 38bba9ced0..0a5fb732b0 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 caa9199aa3..4d7adac4b5 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 8dda0d2ba8..dc6792225b 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 32b92fe70d..39f6353b47 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 7b83afd6a1..ebf479c2fa 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 596655810f..b676faa858 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "Bilgileriniz güvenli ve şifreli" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index b84c841db8..31ce56a45c 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index ab193f844b..a4767b70d7 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 c8a201560e..689814dbe9 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3f4e14f1dc..af57b339d3 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 238451832b..39556e36ce 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 94c2bab266..430ffc84bb 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 2ac30de725..9d2aa6c652 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index af6adeafd5..8f1320989d 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 56c6570575..5e3f8d7667 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index d54fe25a20..cb27f99472 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 3248b43e31..4bcd67b5e2 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 3cd295ab1e..ef2a058ac5 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 30b50f374a..cb177a4009 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 8b1076d95e..7b823bfa10 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index e4207bf14b..c36236f821 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 1098c8bc12..884a67eb26 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 452d9e91fd..c6d041adf0 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 6511bb2402..6628a6d585 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 98b070502b..b54d81afa2 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 f9ee15de2c..f5768a10cd 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 1a8b9aa5f6..a4b2dc6a23 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 588609336d..1e5a9d769f 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 3eb7f4caec..ce1d30114b 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 93bc08a5f6..a0ef6c7c8e 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 2cec61850e..a42735e3d5 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 e191ed8fef..eb4adffd41 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 0642055556..354666fd3b 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 981a081e20..9cadab05a9 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index b582766bf9..f5b83efd5d 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 37f161588a..eb633bfa0d 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 084d0a29e4..0ffc9381ba 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 7a780165dd..7e10a558ca 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index c45c26f058..60955175cd 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 4e6874e85f..fafd5b4db3 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 f5e2fb3d29..98e450ed86 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 69739ec5db..a130cbf03e 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 9a2f660aeb..014a2ef8d9 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 465edf71a2..7cc1685f3e 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -476,7 +476,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "您控制的网络服务" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 502dec464b..274a79d4ac 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 b367afa6b7..2cd794bddb 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index f98b130348..36aed00e4e 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 f63c1f5b14..224108e6e6 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 2279dd688e..6830c078d9 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 479c5dd89f..19570f393e 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index be5f8a0d64..44b63e04dd 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9d956c7234..61eb7839db 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "您控制的web服务" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 691ac2ec58..2ad7c3b8c5 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: zhangmin \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 e4f0b06ab4..f697f93274 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 f142cbef30..75565fcca2 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 9415e97b93..8c4c7c1e7d 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 068a0ccc2b..7b05c66d1c 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index df20400c47..9a5522594d 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 970d6c2f1c..2ee0effbe1 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 935fc11c5b..65c94189b6 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 0c1a73def6..7b70e6402c 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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 77431ba10b..2a3fe10cd6 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 aedd063f76..1f5c487164 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 36b8bc1235..24866b8c4d 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-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3342b2b1e4..b51d846c4b 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 3870242f20..96ac4d1362 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 8593f39069..3d27b56d9e 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 39005a00b7..b5ade0c6f7 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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" @@ -475,7 +475,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "" +msgstr "由您控制的網路服務" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 4cdfd762d4..156fe3e85c 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:58+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 6e931e331f..8a5ed49049 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 853aa583af..b286770673 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 2c430dfe8d..9de34c125a 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:58+0200\n" -"PO-Revision-Date: 2013-06-14 23:23+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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 eab5f5d122..a2aa55aed4 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 5cfcb1d889..3d99d62da3 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:22+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:18+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_ldap.po b/l10n/zh_TW/user_ldap.po index e66fa061e3..c7eb0f4c43 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:24+0000\n" +"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"PO-Revision-Date: 2013-06-15 23:19+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/settings/l10n/nl.php b/settings/l10n/nl.php index 735274368a..a2df948d13 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -102,6 +102,7 @@ "Login Name" => "Inlognaam", "Create" => "Creëer", "Admin Recovery Password" => "Beheer herstel wachtwoord", +"Enter the recovery password in order to recover the users files during password change" => "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen bij wachtwoordwijziging", "Default Storage" => "Standaard Opslaglimiet", "Unlimited" => "Ongelimiteerd", "Other" => "Anders", From d42f7b85f3d6ec524d1144a599edf3b67e88b1a1 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 16 Jun 2013 20:19:37 +0200 Subject: [PATCH 144/145] Basic tests for getFileNameMimeType --- tests/lib/helper.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/lib/helper.php b/tests/lib/helper.php index 336e8f8b3c..6acb0dfaa6 100644 --- a/tests/lib/helper.php +++ b/tests/lib/helper.php @@ -67,6 +67,15 @@ class Test_Helper extends PHPUnit_Framework_TestCase { $this->assertEquals($result, $expected); } + function testGetFileNameMimeType() { + $this->assertEquals('text/plain', OC_Helper::getFileNameMimeType('foo.txt')); + $this->assertEquals('image/png', OC_Helper::getFileNameMimeType('foo.png')); + $this->assertEquals('image/png', OC_Helper::getFileNameMimeType('foo.bar.png')); + $this->assertEquals('application/octet-stream', OC_Helper::getFileNameMimeType('.png')); + $this->assertEquals('application/octet-stream', OC_Helper::getFileNameMimeType('foo')); + $this->assertEquals('application/octet-stream', OC_Helper::getFileNameMimeType('')); + } + function testGetStringMimeType() { $result = OC_Helper::getStringMimeType("/data/data.tar.gz"); $expected = 'text/plain; charset=us-ascii'; From 6156d71832ee031d8d1f50d8dbff7d0bcfb45541 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 17 Jun 2013 02:08:11 +0200 Subject: [PATCH 145/145] [tx-robot] updated from transifex --- apps/files_encryption/l10n/es.php | 1 + apps/files_encryption/l10n/fr.php | 5 ++++ apps/user_webdavauth/l10n/es.php | 1 + apps/user_webdavauth/l10n/fr.php | 1 + core/l10n/cs_CZ.php | 3 ++ core/l10n/es.php | 33 ++++++++++++--------- core/l10n/fr.php | 5 ++++ l10n/af_ZA/core.po | 4 +-- l10n/af_ZA/lib.po | 4 +-- l10n/ar/core.po | 4 +-- l10n/ar/files.po | 4 +-- l10n/ar/files_external.po | 4 +-- l10n/ar/files_sharing.po | 4 +-- l10n/ar/files_trashbin.po | 4 +-- l10n/ar/lib.po | 4 +-- l10n/ar/settings.po | 4 +-- l10n/ar/user_ldap.po | 4 +-- l10n/bg_BG/core.po | 4 +-- l10n/bg_BG/files.po | 4 +-- l10n/bg_BG/files_external.po | 4 +-- l10n/bg_BG/files_sharing.po | 4 +-- l10n/bg_BG/files_trashbin.po | 4 +-- l10n/bg_BG/lib.po | 4 +-- l10n/bg_BG/settings.po | 4 +-- l10n/bg_BG/user_ldap.po | 4 +-- l10n/bn_BD/core.po | 4 +-- l10n/bn_BD/files.po | 4 +-- l10n/bn_BD/files_external.po | 4 +-- l10n/bn_BD/files_sharing.po | 4 +-- l10n/bn_BD/files_trashbin.po | 4 +-- l10n/bn_BD/lib.po | 4 +-- l10n/bn_BD/settings.po | 4 +-- l10n/bn_BD/user_ldap.po | 4 +-- l10n/bs/core.po | 4 +-- l10n/bs/files.po | 4 +-- l10n/bs/files_trashbin.po | 4 +-- l10n/ca/core.po | 4 +-- l10n/ca/files.po | 4 +-- l10n/ca/files_external.po | 4 +-- l10n/ca/files_sharing.po | 4 +-- l10n/ca/files_trashbin.po | 4 +-- l10n/ca/lib.po | 4 +-- l10n/ca/settings.po | 4 +-- l10n/ca/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 12 ++++---- l10n/cs_CZ/files.po | 4 +-- l10n/cs_CZ/files_external.po | 4 +-- l10n/cs_CZ/files_sharing.po | 4 +-- l10n/cs_CZ/files_trashbin.po | 4 +-- l10n/cs_CZ/lib.po | 4 +-- l10n/cs_CZ/settings.po | 4 +-- l10n/cs_CZ/user_ldap.po | 4 +-- l10n/cy_GB/core.po | 4 +-- l10n/cy_GB/files.po | 4 +-- l10n/cy_GB/files_external.po | 4 +-- l10n/cy_GB/files_sharing.po | 4 +-- l10n/cy_GB/files_trashbin.po | 4 +-- l10n/cy_GB/lib.po | 4 +-- l10n/cy_GB/settings.po | 4 +-- l10n/cy_GB/user_ldap.po | 4 +-- l10n/da/core.po | 4 +-- l10n/da/files.po | 4 +-- l10n/da/files_external.po | 4 +-- l10n/da/files_sharing.po | 4 +-- l10n/da/files_trashbin.po | 4 +-- l10n/da/lib.po | 4 +-- l10n/da/settings.po | 4 +-- l10n/da/user_ldap.po | 4 +-- l10n/de/core.po | 4 +-- l10n/de/files.po | 4 +-- l10n/de/files_external.po | 4 +-- l10n/de/files_sharing.po | 4 +-- l10n/de/files_trashbin.po | 4 +-- l10n/de/lib.po | 4 +-- l10n/de/settings.po | 4 +-- l10n/de/user_ldap.po | 4 +-- l10n/de_DE/core.po | 4 +-- l10n/de_DE/files.po | 4 +-- l10n/de_DE/files_external.po | 4 +-- l10n/de_DE/files_sharing.po | 4 +-- l10n/de_DE/files_trashbin.po | 4 +-- l10n/de_DE/lib.po | 4 +-- l10n/de_DE/settings.po | 4 +-- l10n/de_DE/user_ldap.po | 4 +-- l10n/el/core.po | 4 +-- l10n/el/files.po | 4 +-- l10n/el/files_external.po | 4 +-- l10n/el/files_sharing.po | 4 +-- l10n/el/files_trashbin.po | 4 +-- l10n/el/lib.po | 4 +-- l10n/el/settings.po | 4 +-- l10n/el/user_ldap.po | 4 +-- l10n/en@pirate/files.po | 4 +-- l10n/en@pirate/files_sharing.po | 4 +-- l10n/eo/core.po | 4 +-- l10n/eo/files.po | 4 +-- l10n/eo/files_external.po | 4 +-- l10n/eo/files_sharing.po | 4 +-- l10n/eo/files_trashbin.po | 4 +-- l10n/eo/lib.po | 4 +-- l10n/eo/settings.po | 4 +-- l10n/eo/user_ldap.po | 4 +-- l10n/es/core.po | 45 +++++++++++++++-------------- l10n/es/files.po | 4 +-- l10n/es/files_encryption.po | 9 +++--- l10n/es/files_external.po | 4 +-- l10n/es/files_sharing.po | 4 +-- l10n/es/files_trashbin.po | 4 +-- l10n/es/lib.po | 4 +-- l10n/es/settings.po | 4 +-- l10n/es/user_ldap.po | 4 +-- l10n/es/user_webdavauth.po | 9 +++--- l10n/es_AR/core.po | 4 +-- l10n/es_AR/files.po | 4 +-- l10n/es_AR/files_external.po | 4 +-- l10n/es_AR/files_sharing.po | 4 +-- l10n/es_AR/files_trashbin.po | 4 +-- l10n/es_AR/lib.po | 4 +-- l10n/es_AR/settings.po | 4 +-- l10n/es_AR/user_ldap.po | 4 +-- l10n/et_EE/core.po | 4 +-- l10n/et_EE/files.po | 4 +-- l10n/et_EE/files_external.po | 4 +-- l10n/et_EE/files_sharing.po | 4 +-- l10n/et_EE/files_trashbin.po | 4 +-- l10n/et_EE/lib.po | 4 +-- l10n/et_EE/settings.po | 4 +-- l10n/et_EE/user_ldap.po | 4 +-- l10n/eu/core.po | 4 +-- l10n/eu/files.po | 4 +-- l10n/eu/files_external.po | 4 +-- l10n/eu/files_sharing.po | 4 +-- l10n/eu/files_trashbin.po | 4 +-- l10n/eu/lib.po | 4 +-- l10n/eu/settings.po | 4 +-- l10n/eu/user_ldap.po | 4 +-- l10n/fa/core.po | 4 +-- l10n/fa/files.po | 4 +-- l10n/fa/files_external.po | 4 +-- l10n/fa/files_sharing.po | 4 +-- l10n/fa/files_trashbin.po | 4 +-- l10n/fa/lib.po | 4 +-- l10n/fa/settings.po | 4 +-- l10n/fa/user_ldap.po | 4 +-- l10n/fi_FI/core.po | 4 +-- l10n/fi_FI/files.po | 4 +-- l10n/fi_FI/files_external.po | 4 +-- l10n/fi_FI/files_sharing.po | 4 +-- l10n/fi_FI/files_trashbin.po | 4 +-- l10n/fi_FI/lib.po | 4 +-- l10n/fi_FI/settings.po | 4 +-- l10n/fi_FI/user_ldap.po | 4 +-- l10n/fr/core.po | 17 ++++++----- l10n/fr/files.po | 4 +-- l10n/fr/files_encryption.po | 17 ++++++----- l10n/fr/files_external.po | 4 +-- l10n/fr/files_sharing.po | 4 +-- l10n/fr/files_trashbin.po | 4 +-- l10n/fr/lib.po | 4 +-- l10n/fr/settings.po | 4 +-- l10n/fr/user_ldap.po | 4 +-- l10n/fr/user_webdavauth.po | 9 +++--- l10n/gl/core.po | 4 +-- l10n/gl/files.po | 4 +-- l10n/gl/files_external.po | 4 +-- l10n/gl/files_sharing.po | 4 +-- l10n/gl/files_trashbin.po | 4 +-- l10n/gl/lib.po | 4 +-- l10n/gl/settings.po | 4 +-- l10n/gl/user_ldap.po | 4 +-- l10n/he/core.po | 4 +-- l10n/he/files.po | 4 +-- l10n/he/files_external.po | 4 +-- l10n/he/files_sharing.po | 4 +-- l10n/he/files_trashbin.po | 4 +-- l10n/he/lib.po | 4 +-- l10n/he/settings.po | 4 +-- l10n/he/user_ldap.po | 4 +-- l10n/hi/core.po | 4 +-- l10n/hi/files.po | 4 +-- l10n/hi/lib.po | 4 +-- l10n/hr/core.po | 4 +-- l10n/hr/files.po | 4 +-- l10n/hr/files_external.po | 4 +-- l10n/hr/files_sharing.po | 4 +-- l10n/hr/files_trashbin.po | 4 +-- l10n/hr/lib.po | 4 +-- l10n/hr/settings.po | 4 +-- l10n/hr/user_ldap.po | 4 +-- l10n/hu_HU/core.po | 4 +-- l10n/hu_HU/files.po | 4 +-- l10n/hu_HU/files_external.po | 4 +-- l10n/hu_HU/files_sharing.po | 4 +-- l10n/hu_HU/files_trashbin.po | 4 +-- l10n/hu_HU/lib.po | 4 +-- l10n/hu_HU/settings.po | 4 +-- l10n/hu_HU/user_ldap.po | 4 +-- l10n/hy/files.po | 4 +-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +-- l10n/ia/core.po | 4 +-- l10n/ia/files.po | 4 +-- l10n/ia/files_external.po | 4 +-- l10n/ia/files_sharing.po | 4 +-- l10n/ia/files_trashbin.po | 4 +-- l10n/ia/lib.po | 4 +-- l10n/ia/settings.po | 4 +-- l10n/ia/user_ldap.po | 4 +-- l10n/id/core.po | 4 +-- l10n/id/files.po | 4 +-- l10n/id/files_external.po | 4 +-- l10n/id/files_sharing.po | 4 +-- l10n/id/files_trashbin.po | 4 +-- l10n/id/lib.po | 4 +-- l10n/id/settings.po | 4 +-- l10n/id/user_ldap.po | 4 +-- l10n/is/core.po | 4 +-- l10n/is/files.po | 4 +-- l10n/is/files_external.po | 4 +-- l10n/is/files_sharing.po | 4 +-- l10n/is/files_trashbin.po | 4 +-- l10n/is/lib.po | 4 +-- l10n/is/settings.po | 4 +-- l10n/is/user_ldap.po | 4 +-- l10n/it/core.po | 4 +-- l10n/it/files.po | 4 +-- l10n/it/files_external.po | 4 +-- l10n/it/files_sharing.po | 4 +-- l10n/it/files_trashbin.po | 4 +-- l10n/it/lib.po | 4 +-- l10n/it/settings.po | 4 +-- l10n/it/user_ldap.po | 4 +-- l10n/ja_JP/core.po | 4 +-- l10n/ja_JP/files.po | 4 +-- l10n/ja_JP/files_external.po | 4 +-- l10n/ja_JP/files_sharing.po | 4 +-- l10n/ja_JP/files_trashbin.po | 4 +-- l10n/ja_JP/lib.po | 4 +-- l10n/ja_JP/settings.po | 4 +-- l10n/ja_JP/user_ldap.po | 4 +-- l10n/ka/files.po | 4 +-- l10n/ka/files_sharing.po | 4 +-- l10n/ka_GE/core.po | 4 +-- l10n/ka_GE/files.po | 4 +-- l10n/ka_GE/files_external.po | 4 +-- l10n/ka_GE/files_sharing.po | 4 +-- l10n/ka_GE/files_trashbin.po | 4 +-- l10n/ka_GE/lib.po | 4 +-- l10n/ka_GE/settings.po | 4 +-- l10n/ka_GE/user_ldap.po | 4 +-- l10n/ko/core.po | 4 +-- l10n/ko/files.po | 4 +-- l10n/ko/files_external.po | 4 +-- l10n/ko/files_sharing.po | 4 +-- l10n/ko/files_trashbin.po | 4 +-- l10n/ko/lib.po | 4 +-- l10n/ko/settings.po | 4 +-- l10n/ko/user_ldap.po | 4 +-- l10n/ku_IQ/core.po | 4 +-- l10n/ku_IQ/files.po | 4 +-- l10n/ku_IQ/files_sharing.po | 4 +-- l10n/ku_IQ/files_trashbin.po | 4 +-- l10n/ku_IQ/lib.po | 4 +-- l10n/ku_IQ/settings.po | 4 +-- l10n/ku_IQ/user_ldap.po | 4 +-- l10n/lb/core.po | 4 +-- l10n/lb/files.po | 4 +-- l10n/lb/files_external.po | 4 +-- l10n/lb/files_sharing.po | 4 +-- l10n/lb/files_trashbin.po | 4 +-- l10n/lb/lib.po | 4 +-- l10n/lb/settings.po | 4 +-- l10n/lb/user_ldap.po | 4 +-- l10n/lt_LT/core.po | 4 +-- l10n/lt_LT/files.po | 4 +-- l10n/lt_LT/files_external.po | 4 +-- l10n/lt_LT/files_sharing.po | 4 +-- l10n/lt_LT/files_trashbin.po | 4 +-- l10n/lt_LT/lib.po | 4 +-- l10n/lt_LT/settings.po | 4 +-- l10n/lt_LT/user_ldap.po | 4 +-- l10n/lv/core.po | 4 +-- l10n/lv/files.po | 4 +-- l10n/lv/files_external.po | 4 +-- l10n/lv/files_sharing.po | 4 +-- l10n/lv/files_trashbin.po | 4 +-- l10n/lv/lib.po | 4 +-- l10n/lv/settings.po | 4 +-- l10n/lv/user_ldap.po | 4 +-- l10n/mk/core.po | 4 +-- l10n/mk/files.po | 4 +-- l10n/mk/files_external.po | 4 +-- l10n/mk/files_sharing.po | 4 +-- l10n/mk/files_trashbin.po | 4 +-- l10n/mk/lib.po | 4 +-- l10n/mk/settings.po | 4 +-- l10n/mk/user_ldap.po | 4 +-- l10n/ms_MY/core.po | 4 +-- l10n/ms_MY/files.po | 4 +-- l10n/ms_MY/files_external.po | 4 +-- l10n/ms_MY/files_sharing.po | 4 +-- l10n/ms_MY/files_trashbin.po | 4 +-- l10n/ms_MY/lib.po | 4 +-- l10n/ms_MY/settings.po | 4 +-- l10n/ms_MY/user_ldap.po | 4 +-- l10n/my_MM/core.po | 4 +-- l10n/my_MM/files.po | 4 +-- l10n/my_MM/files_sharing.po | 4 +-- l10n/my_MM/lib.po | 4 +-- l10n/nb_NO/core.po | 4 +-- l10n/nb_NO/files.po | 4 +-- l10n/nb_NO/files_external.po | 4 +-- l10n/nb_NO/files_sharing.po | 4 +-- l10n/nb_NO/files_trashbin.po | 4 +-- l10n/nb_NO/lib.po | 4 +-- l10n/nb_NO/settings.po | 4 +-- l10n/nb_NO/user_ldap.po | 4 +-- l10n/nl/core.po | 4 +-- l10n/nl/files.po | 4 +-- l10n/nl/files_external.po | 4 +-- l10n/nl/files_sharing.po | 4 +-- l10n/nl/files_trashbin.po | 4 +-- l10n/nl/lib.po | 4 +-- l10n/nl/settings.po | 4 +-- l10n/nl/user_ldap.po | 4 +-- l10n/nn_NO/core.po | 4 +-- l10n/nn_NO/files.po | 4 +-- l10n/nn_NO/files_external.po | 4 +-- l10n/nn_NO/files_sharing.po | 4 +-- l10n/nn_NO/files_trashbin.po | 4 +-- l10n/nn_NO/lib.po | 4 +-- l10n/nn_NO/settings.po | 4 +-- l10n/nn_NO/user_ldap.po | 4 +-- l10n/oc/core.po | 4 +-- l10n/oc/files.po | 4 +-- l10n/oc/files_external.po | 4 +-- l10n/oc/files_sharing.po | 4 +-- l10n/oc/files_trashbin.po | 4 +-- l10n/oc/lib.po | 4 +-- l10n/oc/settings.po | 4 +-- l10n/oc/user_ldap.po | 4 +-- l10n/pl/core.po | 4 +-- l10n/pl/files.po | 4 +-- l10n/pl/files_external.po | 4 +-- l10n/pl/files_sharing.po | 4 +-- l10n/pl/files_trashbin.po | 4 +-- l10n/pl/lib.po | 4 +-- l10n/pl/settings.po | 4 +-- l10n/pl/user_ldap.po | 4 +-- l10n/pt_BR/core.po | 4 +-- l10n/pt_BR/files.po | 4 +-- l10n/pt_BR/files_external.po | 4 +-- l10n/pt_BR/files_sharing.po | 4 +-- l10n/pt_BR/files_trashbin.po | 4 +-- l10n/pt_BR/lib.po | 4 +-- l10n/pt_BR/settings.po | 4 +-- l10n/pt_BR/user_ldap.po | 4 +-- l10n/pt_PT/core.po | 4 +-- l10n/pt_PT/files.po | 4 +-- l10n/pt_PT/files_external.po | 4 +-- l10n/pt_PT/files_sharing.po | 4 +-- l10n/pt_PT/files_trashbin.po | 4 +-- l10n/pt_PT/lib.po | 4 +-- l10n/pt_PT/settings.po | 4 +-- l10n/pt_PT/user_ldap.po | 4 +-- l10n/ro/core.po | 4 +-- l10n/ro/files.po | 4 +-- l10n/ro/files_external.po | 4 +-- l10n/ro/files_sharing.po | 4 +-- l10n/ro/files_trashbin.po | 4 +-- l10n/ro/lib.po | 4 +-- l10n/ro/settings.po | 4 +-- l10n/ro/user_ldap.po | 4 +-- l10n/ru/core.po | 4 +-- l10n/ru/files.po | 4 +-- l10n/ru/files_external.po | 4 +-- l10n/ru/files_sharing.po | 4 +-- l10n/ru/files_trashbin.po | 4 +-- l10n/ru/lib.po | 4 +-- l10n/ru/settings.po | 4 +-- l10n/ru/user_ldap.po | 4 +-- l10n/si_LK/core.po | 4 +-- l10n/si_LK/files.po | 4 +-- l10n/si_LK/files_external.po | 4 +-- l10n/si_LK/files_sharing.po | 4 +-- l10n/si_LK/files_trashbin.po | 4 +-- l10n/si_LK/lib.po | 4 +-- l10n/si_LK/settings.po | 4 +-- l10n/si_LK/user_ldap.po | 4 +-- l10n/sk_SK/core.po | 4 +-- l10n/sk_SK/files.po | 4 +-- l10n/sk_SK/files_external.po | 4 +-- l10n/sk_SK/files_sharing.po | 4 +-- l10n/sk_SK/files_trashbin.po | 4 +-- l10n/sk_SK/lib.po | 4 +-- l10n/sk_SK/settings.po | 4 +-- l10n/sk_SK/user_ldap.po | 4 +-- l10n/sl/core.po | 4 +-- l10n/sl/files.po | 4 +-- l10n/sl/files_external.po | 4 +-- l10n/sl/files_sharing.po | 4 +-- l10n/sl/files_trashbin.po | 4 +-- l10n/sl/lib.po | 4 +-- l10n/sl/settings.po | 4 +-- l10n/sl/user_ldap.po | 4 +-- l10n/sq/core.po | 4 +-- l10n/sq/files.po | 4 +-- l10n/sq/files_external.po | 4 +-- l10n/sq/files_sharing.po | 4 +-- l10n/sq/files_trashbin.po | 4 +-- l10n/sq/lib.po | 4 +-- l10n/sq/settings.po | 4 +-- l10n/sq/user_ldap.po | 4 +-- l10n/sr/core.po | 4 +-- l10n/sr/files.po | 4 +-- l10n/sr/files_external.po | 4 +-- l10n/sr/files_sharing.po | 4 +-- l10n/sr/files_trashbin.po | 4 +-- l10n/sr/lib.po | 4 +-- l10n/sr/settings.po | 4 +-- l10n/sr/user_ldap.po | 4 +-- l10n/sr@latin/core.po | 4 +-- l10n/sr@latin/files.po | 4 +-- l10n/sr@latin/files_external.po | 4 +-- l10n/sr@latin/files_sharing.po | 4 +-- l10n/sr@latin/files_trashbin.po | 4 +-- l10n/sr@latin/lib.po | 4 +-- l10n/sr@latin/settings.po | 4 +-- l10n/sv/core.po | 4 +-- l10n/sv/files.po | 4 +-- l10n/sv/files_external.po | 4 +-- l10n/sv/files_sharing.po | 4 +-- l10n/sv/files_trashbin.po | 4 +-- l10n/sv/lib.po | 4 +-- l10n/sv/settings.po | 4 +-- l10n/sv/user_ldap.po | 4 +-- l10n/ta_LK/core.po | 4 +-- l10n/ta_LK/files.po | 4 +-- l10n/ta_LK/files_external.po | 4 +-- l10n/ta_LK/files_sharing.po | 4 +-- l10n/ta_LK/files_trashbin.po | 4 +-- l10n/ta_LK/lib.po | 4 +-- l10n/ta_LK/settings.po | 4 +-- l10n/ta_LK/user_ldap.po | 4 +-- l10n/te/core.po | 4 +-- l10n/te/files.po | 4 +-- l10n/te/files_external.po | 4 +-- l10n/te/files_trashbin.po | 4 +-- l10n/te/lib.po | 4 +-- l10n/te/settings.po | 4 +-- l10n/te/user_ldap.po | 4 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +-- l10n/th_TH/files.po | 4 +-- l10n/th_TH/files_external.po | 4 +-- l10n/th_TH/files_sharing.po | 4 +-- l10n/th_TH/files_trashbin.po | 4 +-- l10n/th_TH/lib.po | 4 +-- l10n/th_TH/settings.po | 4 +-- l10n/th_TH/user_ldap.po | 4 +-- l10n/tr/core.po | 4 +-- l10n/tr/files.po | 4 +-- l10n/tr/files_external.po | 4 +-- l10n/tr/files_sharing.po | 4 +-- l10n/tr/files_trashbin.po | 4 +-- l10n/tr/lib.po | 4 +-- l10n/tr/settings.po | 4 +-- l10n/tr/user_ldap.po | 4 +-- l10n/ug/core.po | 4 +-- l10n/ug/files.po | 4 +-- l10n/ug/files_external.po | 4 +-- l10n/ug/files_sharing.po | 4 +-- l10n/ug/files_trashbin.po | 4 +-- l10n/ug/lib.po | 4 +-- l10n/ug/settings.po | 4 +-- l10n/ug/user_ldap.po | 4 +-- l10n/uk/core.po | 4 +-- l10n/uk/files.po | 4 +-- l10n/uk/files_external.po | 4 +-- l10n/uk/files_sharing.po | 4 +-- l10n/uk/files_trashbin.po | 4 +-- l10n/uk/lib.po | 4 +-- l10n/uk/settings.po | 4 +-- l10n/uk/user_ldap.po | 4 +-- l10n/ur_PK/core.po | 4 +-- l10n/ur_PK/files.po | 4 +-- l10n/ur_PK/files_trashbin.po | 4 +-- l10n/ur_PK/lib.po | 4 +-- l10n/ur_PK/settings.po | 4 +-- l10n/ur_PK/user_ldap.po | 4 +-- l10n/vi/core.po | 4 +-- l10n/vi/files.po | 4 +-- l10n/vi/files_external.po | 4 +-- l10n/vi/files_sharing.po | 4 +-- l10n/vi/files_trashbin.po | 4 +-- l10n/vi/lib.po | 4 +-- l10n/vi/settings.po | 4 +-- l10n/vi/user_ldap.po | 4 +-- l10n/zh_CN.GB2312/core.po | 4 +-- l10n/zh_CN.GB2312/files.po | 4 +-- l10n/zh_CN.GB2312/files_external.po | 4 +-- l10n/zh_CN.GB2312/files_sharing.po | 4 +-- l10n/zh_CN.GB2312/files_trashbin.po | 4 +-- l10n/zh_CN.GB2312/lib.po | 4 +-- l10n/zh_CN.GB2312/settings.po | 4 +-- l10n/zh_CN.GB2312/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 4 +-- l10n/zh_CN/files.po | 4 +-- l10n/zh_CN/files_external.po | 4 +-- l10n/zh_CN/files_sharing.po | 4 +-- l10n/zh_CN/files_trashbin.po | 4 +-- l10n/zh_CN/lib.po | 4 +-- l10n/zh_CN/settings.po | 4 +-- l10n/zh_CN/user_ldap.po | 4 +-- l10n/zh_HK/core.po | 4 +-- l10n/zh_HK/files.po | 4 +-- l10n/zh_HK/files_external.po | 4 +-- l10n/zh_HK/files_sharing.po | 4 +-- l10n/zh_HK/files_trashbin.po | 4 +-- l10n/zh_HK/lib.po | 4 +-- l10n/zh_HK/settings.po | 4 +-- l10n/zh_HK/user_ldap.po | 4 +-- l10n/zh_TW/core.po | 4 +-- l10n/zh_TW/files.po | 4 +-- l10n/zh_TW/files_external.po | 4 +-- l10n/zh_TW/files_sharing.po | 4 +-- l10n/zh_TW/files_trashbin.po | 4 +-- l10n/zh_TW/lib.po | 4 +-- l10n/zh_TW/settings.po | 4 +-- l10n/zh_TW/user_ldap.po | 4 +-- 542 files changed, 1140 insertions(+), 1113 deletions(-) diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 0875872e9d..5ba3e36b1a 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -5,6 +5,7 @@ "Could not disable recovery key. Please check your recovery key password!" => "No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!", "Password successfully changed." => "Su contraseña ha sido cambiada", "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", +"Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Saving..." => "Guardando...", "Encryption" => "Cifrado", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Habilitar clave de recuperación de contraseñas ():", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 50218b341e..24bb81e8cf 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -8,6 +8,7 @@ "Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", "Saving..." => "Enregistrement...", +"You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Activer la clé de récupération par mots de passe de cryptage (autoriser le partage de la clé de récupération) ", @@ -18,6 +19,10 @@ "Old Recovery account password" => "Ancien compte de récupération de mots de passe", "New Recovery account password" => "Nouveau compte de récupération de mots de passe", "Change Password" => "Changer de mot de passe", +"Old log-in password" => "Ancien mot de passe de connexion", +"Current log-in password" => "Actuel mot de passe de connexion", +"Update Private Key Password" => "Mettre à jour le mot de passe de votre clé privée", +"Enable password recovery:" => "Activer la récupération du mot de passe:", "File recovery settings updated" => "Mise à jour des paramètres de récupération de fichiers ", "Could not update file recovery" => "Ne peut pas remettre à jour les fichiers de récupération" ); diff --git a/apps/user_webdavauth/l10n/es.php b/apps/user_webdavauth/l10n/es.php index efb8228828..18c87794d6 100644 --- a/apps/user_webdavauth/l10n/es.php +++ b/apps/user_webdavauth/l10n/es.php @@ -1,4 +1,5 @@ "Autenticación de WevDAV", +"URL: " => "URL:", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "onwCloud enviará las credenciales de usuario a esta URL. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." ); diff --git a/apps/user_webdavauth/l10n/fr.php b/apps/user_webdavauth/l10n/fr.php index 29476e1f8c..e7fad26287 100644 --- a/apps/user_webdavauth/l10n/fr.php +++ b/apps/user_webdavauth/l10n/fr.php @@ -1,4 +1,5 @@ "Authentification WebDAV", +"URL: " => "URL: ", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud enverra les informations de connexion à cette adresse. Ce module complémentaire analyse le code réponse HTTP et considère tout code différent des codes 401 et 403 comme associé à une authentification correcte." ); diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index fbb778aacd..f3b4cd49bf 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,4 +1,5 @@ "%s s vámi sdílí »%s«", "Category type not provided." => "Nezadán typ kategorie.", "No category to add?" => "Žádná kategorie k přidání?", "This category already exists: %s" => "Kategorie již existuje: %s", @@ -103,6 +104,7 @@ "Help" => "Nápověda", "Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky", "web services under your control" => "služby webu pod Vaší kontrolou", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", @@ -133,6 +135,7 @@ "remember" => "zapamatovat", "Log in" => "Přihlásit", "Alternative Logins" => "Alternativní přihlášení", +"Hey there,

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

    Cheers!" => "Ahoj,

    jenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete
    zde.

    Díky", "prev" => "předchozí", "next" => "následující", "Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." diff --git a/core/l10n/es.php b/core/l10n/es.php index 008f48b205..93d644c01e 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,10 +1,11 @@ "%s compatido »%s« contigo", "Category type not provided." => "Tipo de categoría no proporcionado.", "No category to add?" => "¿Ninguna categoría para añadir?", -"This category already exists: %s" => "Ya existe esta categoría: %s", +"This category already exists: %s" => "Esta categoría ya existe: %s", "Object type not provided." => "Tipo de objeto no proporcionado.", "%s ID not provided." => "ID de %s no proporcionado.", -"Error adding %s to favorites." => "Error añadiendo %s a los favoritos.", +"Error adding %s to favorites." => "Error añadiendo %s a favoritos.", "No categories selected for deletion." => "No hay categorías seleccionadas para borrar.", "Error removing %s from favorites." => "Error eliminando %s de los favoritos.", "Sunday" => "Domingo", @@ -46,9 +47,9 @@ "Yes" => "Sí", "No" => "No", "Ok" => "Aceptar", -"The object type is not specified." => "No se ha especificado el tipo de objeto", +"The object type is not specified." => "El tipo de objeto no está especificado.", "Error" => "Error", -"The app name is not specified." => "No se ha especificado el nombre de la aplicación.", +"The app name is not specified." => "El nombre de la aplicación no está especificado.", "The required file {file} is not installed!" => "¡El fichero requerido {file} no está instalado!", "Shared" => "Compartido", "Share" => "Compartir", @@ -82,13 +83,15 @@ "Sending ..." => "Enviando...", "Email sent" => "Correo electrónico enviado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", -"The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado correctamente. Redireccionando a ownCloud ahora.", -"ownCloud password reset" => "Restablecer contraseña de ownCloud", -"Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}", +"The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", +"ownCloud password reset" => "Reseteo contraseña de ownCloud", +"Use the following link to reset your password: {link}" => "Utilice el siguiente enlace para restablecer tu contraseña: {link}", "The link to reset your password has been sent to your email.
    If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
    Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado.
    Si no está allí, pregunte a su administrador local.", "Request failed!
    Did you make sure your email/username was right?" => "La petición ha fallado!
    ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?", "You will receive a link to reset your password via Email." => "Recibirá un enlace por correo electrónico para restablecer su contraseña", "Username" => "Nombre de usuario", +"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Sus archivos parecen estar encriptados. Si no ha habilitado la clave de recurperación, no habrá ninguna manera de recuperar sus datos hasta que la contraseña sea reseteada. Si no está seguro de qué hacer, por favor contacte con su administrador antes de continuar. ¿Desea realmente continuar?", +"Yes, I really want to reset my password now" => "Sí. Realmente deseo resetear mi contraseña ahora", "Request reset" => "Solicitar restablecimiento", "Your password was reset" => "Su contraseña ha sido establecida", "To login page" => "A la página de inicio de sesión", @@ -99,21 +102,22 @@ "Apps" => "Aplicaciones", "Admin" => "Administración", "Help" => "Ayuda", -"Access forbidden" => "Acceso denegado", -"Cloud not found" => "No se ha encontrado la nube", +"Access forbidden" => "Acceso prohibido", +"Cloud not found" => "No se ha encuentra la nube", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Oye,⏎ sólo te hago saber que %s compartido %s contigo.⏎ Míralo: %s ⏎Disfrutalo!", "web services under your control" => "Servicios web bajo su control", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", -"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)", "Please update your PHP installation to use ownCloud securely." => "Por favor, actualice su instalación de PHP para utilizar ownCloud de manera segura.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro, un atacante podría predecir los tokens de restablecimiento de contraseñas y tomar el control de su cuenta.", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Probablemente su directorio de datos y sus archivos sean accesibles a través de internet ya que el archivo .htaccess no funciona.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona.", "For information how to properly configure your server, please see the
    documentation." => "Para información sobre cómo configurar adecuadamente su servidor, por favor vea la documentación.", "Create an admin account" => "Crear una cuenta de administrador", "Advanced" => "Avanzado", -"Data folder" => "Directorio de almacenamiento", +"Data folder" => "Directorio de datos", "Configure the database" => "Configurar la base de datos", "will be used" => "se utilizarán", "Database user" => "Usuario de la base de datos", @@ -128,9 +132,10 @@ "If you did not change your password recently, your account may be compromised!" => "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", "Please change your password to secure your account again." => "Por favor cambie su contraseña para asegurar su cuenta nuevamente.", "Lost your password?" => "¿Ha perdido su contraseña?", -"remember" => "recordarme", +"remember" => "recordar", "Log in" => "Entrar", -"Alternative Logins" => "Nombre de usuarios alternativos", +"Alternative Logins" => "Inicios de sesión alternativos", +"Hey there,

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

    Cheers!" => "Oye,

    sólo te hago saber que %s compartido %s contigo,
    \nMíralo!

    Disfrutalo!", "prev" => "anterior", "next" => "siguiente", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." diff --git a/core/l10n/fr.php b/core/l10n/fr.php index f10b71542d..bc5d9e8cdd 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,4 +1,5 @@ "%s partagé »%s« avec vous", "Category type not provided." => "Type de catégorie non spécifié.", "No category to add?" => "Pas de catégorie à ajouter ?", "This category already exists: %s" => "Cette catégorie existe déjà : %s", @@ -89,6 +90,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "Requête en échec!
    Avez-vous vérifié vos courriel/nom d'utilisateur?", "You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.", "Username" => "Nom d'utilisateur", +"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Vos fichiers semblent être cryptés. Si vous n'aviez pas activé la clé de récupération il n'y aura aucun moyen de récupérer vos données une fois que le mot de passe aura été réinitialisé. Si vous n'êtes pas certain de ce que vous faites, veuillez d'abord contacter votre administrateur avant de continuer. Êtes-vous sûr de vouloir continuer?", +"Yes, I really want to reset my password now" => "Oui, je veux vraiment réinitialiser mon mot de passe maintenant", "Request reset" => "Demander la réinitialisation", "Your password was reset" => "Votre mot de passe a été réinitialisé", "To login page" => "Retour à la page d'authentification", @@ -101,6 +104,7 @@ "Help" => "Aide", "Access forbidden" => "Accès interdit", "Cloud not found" => "Introuvable", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!", "web services under your control" => "services web sous votre contrôle", "Edit categories" => "Editer les catégories", "Add" => "Ajouter", @@ -131,6 +135,7 @@ "remember" => "se souvenir de moi", "Log in" => "Connexion", "Alternative Logins" => "Logins alternatifs", +"Hey there,

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

    Cheers!" => "Salut,

    je veux juste vous signaler %s partagé »%s« avec vous.
    Voyez-le!

    Bonne continuation!", "prev" => "précédent", "next" => "suivant", "Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 73416e65a4..103e03a9ca 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:14+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 00:04+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 e24556c3a6..216f769e9f 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:14+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 00:04+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 0cf200f5bf..b7556553c2 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 196a1274fa..b434ce6ef6 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ar/files_external.po b/l10n/ar/files_external.po index f64e78c031..0ad52f5d75 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 8f8d99e6a4..c11f2cdbda 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 60c4f65095..beefc4ec29 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index dfedde4314..c1d27d48e2 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ar/settings.po b/l10n/ar/settings.po index beceaa0af9..2cdbc4493a 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ar/user_ldap.po b/l10n/ar/user_ldap.po index 9b4499dfa6..3ae7b1ec2f 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index d306ae36a8..e8157d68d0 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index a30f638485..77588b9856 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/bg_BG/files_external.po index ee0314159a..c2f7261ee6 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 388d262eaa..bc8c52dbef 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 52d0895e4f..5e0d5e9430 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 41e23ac79a..d2410451f8 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 267ff6cfb6..ea1915953a 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/bg_BG/user_ldap.po index a15be96af1..d75efc118f 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index fae0c1c397..3e32d3a390 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index a69e64f8f0..7e855372cc 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/bn_BD/files_external.po index 598a72580a..0f351b2fe5 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 608f23918a..942936ca66 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 5c4fe402ba..80abfc9e66 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index ffde1bf195..bed4b8da61 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/bn_BD/settings.po index 98d92b7546..1734f313ff 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/bn_BD/user_ldap.po index 0734dc0f63..0ddbb18539 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index db6676e560..22c808424a 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index b22e1f9ad5..e13d674a9c 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 92a183fe21..1136da2049 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 857802d29a..596fa81c73 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index bde57a7a9a..2627e21034 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 723084bfb6..8e2160226e 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index fd5439dce2..6f80f22c20 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 6dbc5db348..4b4a991896 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 3cd7660931..177bf87157 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index d3ae93dbd4..638442adba 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index e5529ecd92..a9bf9278b7 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 8d47b1391c..6d77cbcb0a 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s s vámi sdílí »%s«" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -472,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -614,7 +614,7 @@ msgstr "Alternativní přihlášení" msgid "" "Hey there,

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

    Cheers!" -msgstr "" +msgstr "Ahoj,

    jenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete
    zde.

    Díky" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index fba844fb09..7d4c0a8d62 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index b9148c20cd..de30f1170d 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 8da6fa0b0e..0df7ac3b90 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index e9db011f22..dbb756daba 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 27c2cdc59b..8d4ae5ea7c 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 8580a5f086..8108e7abb8 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 6079b06f9e..a040da8991 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 533021befc..f325280db0 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index e55b8a449f..2b4ed6bc2e 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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 9509af8d42..bbd6b29c6b 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 37465bc756..cf65ee9c3a 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 242235a926..9ab1d6dd21 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 2694a881fc..0b3e1bda1c 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 2c267c8a21..696ba1f5a8 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 97d2f101af..31a18c2cc7 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 21914ea6fd..89b1611e62 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/da/files.po b/l10n/da/files.po index d1b2159b12..6e6d862f45 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Ole Holm Frandsen \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 bfbb739a34..8b03cf6826 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 40a1935403..56efb33146 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index adcb817ff7..0f0890fcc9 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index dcd8a5c8e0..780b49f9ad 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Ole Holm Frandsen \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 48ac705fae..78247c20d0 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 09efad7472..6cbcfa142e 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 009f5a4356..2dce233127 100644 --- a/l10n/de/core.po +++ b/l10n/de/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+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 89a10dbea3..2f836f144a 100644 --- a/l10n/de/files.po +++ b/l10n/de/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: ninov \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 f38837c589..f7357b958b 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 370b589ae7..edc1560704 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 9142337f37..140e3ebea4 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index b5f8d58a76..71e452b074 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index fa4d9f8feb..05048e2a0a 100644 --- a/l10n/de/settings.po +++ b/l10n/de/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 800dd5c880..92ec6d522e 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 a0d41ca5d3..3e248ad6de 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 972ada8159..683daa1864 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: a.tangemann \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 9a82e2510f..664bd0ff88 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 19b18cd92c..0d635d2140 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 3a83067515..85ef60ecf8 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 5e7ea9ace3..14c39095d0 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 34cacb9103..68bc158d31 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/de_DE/user_ldap.po index b77d80d49b..df74745ea3 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index f7fa53bace..2c9a72956e 100644 --- a/l10n/el/core.po +++ b/l10n/el/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/el/files.po b/l10n/el/files.po index 54a8fa6f7e..2efedb6c23 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Efstathios Iosifidis \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 1d8b6addbb..644c52dd9d 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 94a8874dcc..1338d825a5 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 7f3d43db52..df58dd7e68 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 5f130caa47..de110b1122 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index bb7f49e3ee..b6ec1e3f17 100644 --- a/l10n/el/settings.po +++ b/l10n/el/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/el/user_ldap.po b/l10n/el/user_ldap.po index 4f5f778e6d..4fb01982b7 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 928ebc78fb..0862aa87c4 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index dd710a4e8c..b908463f98 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 17c9adc3f3..fd6a695a68 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index f1d26fc684..4690f2a4c4 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/eo/files_external.po b/l10n/eo/files_external.po index 6e88aa17a3..464418613c 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 86f8e5b7a8..f3b0f2cc43 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 12705a0eb6..1290cd4fea 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index a3989d47df..baa3b35bec 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/eo/settings.po b/l10n/eo/settings.po index ac9edad247..7573c48327 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/eo/user_ldap.po b/l10n/eo/user_ldap.po index 020acdd9be..a6a3bea93f 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 1c587f8af5..d00c3ea8ff 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -5,15 +5,16 @@ # Translators: # ggam , 2013 # msoko , 2013 +# saskarip, 2013 # iGerli , 2013 # xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" +"Last-Translator: saskarip\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" @@ -24,7 +25,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s compatido »%s« contigo" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -37,7 +38,7 @@ msgstr "¿Ninguna categoría para añadir?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Ya existe esta categoría: %s" +msgstr "Esta categoría ya existe: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -54,7 +55,7 @@ msgstr "ID de %s no proporcionado." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Error añadiendo %s a los favoritos." +msgstr "Error añadiendo %s a favoritos." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -224,7 +225,7 @@ msgstr "Aceptar" #: 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 "No se ha especificado el tipo de objeto" +msgstr "El tipo de objeto no está especificado." #: 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 @@ -236,7 +237,7 @@ msgstr "Error" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "No se ha especificado el nombre de la aplicación." +msgstr "El nombre de la aplicación no está especificado." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" @@ -375,15 +376,15 @@ msgstr "La actualización ha fracasado. Por favor, informe de este problema a la #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "La actualización se ha realizado correctamente. Redireccionando a ownCloud ahora." +msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." #: lostpassword/controller.php:58 msgid "ownCloud password reset" -msgstr "Restablecer contraseña de ownCloud" +msgstr "Reseteo contraseña de ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Utiliza el siguiente enlace para restablecer tu contraseña: {link}" +msgstr "Utilice el siguiente enlace para restablecer tu contraseña: {link}" #: lostpassword/templates/lostpassword.php:4 msgid "" @@ -411,11 +412,11 @@ msgid "" "key there will be no way to get your data back once the password was " "resetted. If you are not sure what to do, please contact your administrator " "first before continue. Do you really want to continue?" -msgstr "" +msgstr "Sus archivos parecen estar encriptados. Si no ha habilitado la clave de recurperación, no habrá ninguna manera de recuperar sus datos hasta que la contraseña sea reseteada. Si no está seguro de qué hacer, por favor contacte con su administrador antes de continuar. ¿Desea realmente continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sí. Realmente deseo resetear mi contraseña ahora" #: lostpassword/templates/lostpassword.php:29 msgid "Request reset" @@ -459,11 +460,11 @@ msgstr "Ayuda" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acceso denegado" +msgstr "Acceso prohibido" #: templates/404.php:12 msgid "Cloud not found" -msgstr "No se ha encontrado la nube" +msgstr "No se ha encuentra la nube" #: templates/altmail.php:2 #, php-format @@ -474,7 +475,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Oye,⏎ sólo te hago saber que %s compartido %s contigo.⏎ Míralo: %s ⏎Disfrutalo!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -495,7 +496,7 @@ msgstr "Advertencia de seguridad" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "La versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)" +msgstr "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." @@ -517,7 +518,7 @@ msgstr "Sin un generador de números aleatorios seguro, un atacante podría pred msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Probablemente su directorio de datos y sus archivos sean accesibles a través de internet ya que el archivo .htaccess no funciona." +msgstr "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona." #: templates/installation.php:40 msgid "" @@ -536,7 +537,7 @@ msgstr "Avanzado" #: templates/installation.php:64 msgid "Data folder" -msgstr "Directorio de almacenamiento" +msgstr "Directorio de datos" #: templates/installation.php:74 msgid "Configure the database" @@ -601,7 +602,7 @@ msgstr "¿Ha perdido su contraseña?" #: templates/login.php:39 msgid "remember" -msgstr "recordarme" +msgstr "recordar" #: templates/login.php:41 msgid "Log in" @@ -609,14 +610,14 @@ msgstr "Entrar" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Nombre de usuarios alternativos" +msgstr "Inicios de sesión alternativos" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "" +msgstr "Oye,

    sólo te hago saber que %s compartido %s contigo,
    \nMíralo!

    Disfrutalo!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/es/files.po b/l10n/es/files.po index 08306f77d6..6c27b6b67f 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Art O. Pal \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 69ebdc1064..22d85a2f2c 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # gmoriello , 2013 +# saskarip, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 08:20+0000\n" +"Last-Translator: saskarip\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,7 +47,7 @@ msgstr "No se pudo cambiar la contraseña. Compruebe que la contraseña actual s #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Contraseña de clave privada actualizada con éxito." #: ajax/updatePrivateKeyPassword.php:53 msgid "" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 77c7ba2fc8..5f962c9b75 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index bb9db8bd0e..59524a67af 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 76c3565dca..33587c79ae 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 340cba90f4..28174f0132 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 77690a9f4d..e2db2aa83f 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: saskarip\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index f325091643..b8c4a7c4a0 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index f6ab60876c..5d60f41af1 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -6,13 +6,14 @@ # Agustin Ferrario , 2013 # Art O. Pal , 2012 # pggx999 , 2012 +# saskarip, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 07:50+0000\n" +"Last-Translator: saskarip\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" @@ -26,7 +27,7 @@ msgstr "Autenticación de WevDAV" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index b8740f3f2e..f280c8cad8 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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.po b/l10n/es_AR/files.po index a75b9383e2..5fcac0ee39 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Agustin Ferrario \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 20949cf287..22d72d0ce5 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 0576a29a51..795ee41eee 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 48e7375515..77ce2e0f6a 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 644592c62d..d564d6a908 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index a2bf733c78..c83eac5a4d 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index bed6b97338..9d3126e455 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 686a92cfaa..2883d8d051 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/et_EE/files.po b/l10n/et_EE/files.po index 79e2a63360..8fcd0d4072 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 483f59c8b5..45901994a0 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index eb1af6f163..f62aa3e162 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index cf63483257..d1f969bba0 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 57a487e219..e8fa7e426f 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index b4c08926a6..a45a8eec0d 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 1479091173..26fc9649f5 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 26d9890644..0f198f82cd 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files.po b/l10n/eu/files.po index 9b97745e17..de510d55f4 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/eu/files_external.po index 9351a63a57..f9f3072e7d 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 56ba4409d2..f18c28fcab 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 a0606ddfe3..4326abaa03 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 2092aa29bc..d235762943 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/eu/settings.po index b0f2ca85af..cda52d1777 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/eu/user_ldap.po index ed657aef38..d309a16d24 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 931bb33485..e8d5bb2927 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files.po b/l10n/fa/files.po index 6a9b4282ef..4088d74bfa 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/fa/files_external.po index db895d9211..103a387cfc 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 0764b5c956..8c0f3a52af 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 f95fe325f9..76a3c90d7b 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 0e0632f3c9..ebfaf2736b 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 66691911c6..e171ee0b25 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/fa/user_ldap.po index fed06627be..c40115d3cc 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 15cbae4cca..bdfd8813cf 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index e6d9704a05..3ceebe5803 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/fi_FI/files_external.po index 074972fd56..1c0f407e5b 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 5bbe728ed8..4c2f4e74a9 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index dbc448f472..0895be2d32 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index ae1d41b126..296b0e0ed6 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 1578bccd5d..8f1623db40 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/fi_FI/user_ldap.po index 2704b7c364..fb3c413aec 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 7c89205a0f..60057522f6 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Adalberto Rodrigues , 2013 # msoko , 2013 # plachance , 2013 # red0ne , 2013 @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" +"Last-Translator: Adalberto Rodrigues \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +24,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s partagé »%s« avec vous" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -410,11 +411,11 @@ msgid "" "key there will be no way to get your data back once the password was " "resetted. If you are not sure what to do, please contact your administrator " "first before continue. Do you really want to continue?" -msgstr "" +msgstr "Vos fichiers semblent être cryptés. Si vous n'aviez pas activé la clé de récupération il n'y aura aucun moyen de récupérer vos données une fois que le mot de passe aura été réinitialisé. Si vous n'êtes pas certain de ce que vous faites, veuillez d'abord contacter votre administrateur avant de continuer. Êtes-vous sûr de vouloir continuer?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Oui, je veux vraiment réinitialiser mon mot de passe maintenant" #: lostpassword/templates/lostpassword.php:29 msgid "Request reset" @@ -473,7 +474,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -615,7 +616,7 @@ msgstr "Logins alternatifs" msgid "" "Hey there,

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

    Cheers!" -msgstr "" +msgstr "Salut,

    je veux juste vous signaler %s partagé »%s« avec vous.
    Voyez-le!

    Bonne continuation!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 31e25e5b1d..a11e42440f 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 9cb45f9e49..cd41efece6 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Adalberto Rodrigues , 2013 # froozeify , 2013 # lyly95, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 12:00+0000\n" -"Last-Translator: froozeify \n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 18:50+0000\n" +"Last-Translator: Adalberto Rodrigues \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,7 +75,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Vous pouvez déverrouiller votre clé privée dans votre" #: templates/invalid_private_key.php:7 msgid "personal settings" @@ -133,19 +134,19 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Ancien mot de passe de connexion" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Actuel mot de passe de connexion" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Mettre à jour le mot de passe de votre clé privée" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Activer la récupération du mot de passe:" #: templates/settings-personal.php:47 msgid "" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 91fc0353ed..425e8caf53 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index ea6d2e2269..c70b8f4a91 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 929158a6ff..1a32bdc4aa 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 5cc2d8804e..2f14f999e7 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Cyril Glapa \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 d67de6a9a5..5b49e6f5e0 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: lyly95\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 01335faaf2..832c098cf5 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index eb424f5417..592ae748bc 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 # mishka , 2013 # ouafnico , 2012 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 18:40+0000\n" +"Last-Translator: Adalberto Rodrigues \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "Authentification WebDAV" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: templates/settings.php:7 msgid "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 4014209b16..6a3b815a9c 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 32a71a685e..b4adf0248a 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 5ec3e9fec8..bee61bded0 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 4597925f91..b685bae61d 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 794428f927..a4d9a8e87e 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 3b2f40480c..243d499047 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 7fda502a37..76b1d05278 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 00ee54a0b8..9cb0067315 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index cd2e422728..4da2e8d241 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 775b8607fd..18cd618e1c 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 8f408e0c8c..8e5767e3f6 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index b3ca74cc28..9b6989e0af 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 0a2f089086..21283f3422 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index f95f5bd4d1..e01197a81e 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/he/settings.po index 5d95c144fe..0c4f82a99b 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/he/user_ldap.po index 2e0c7da2ed..97bcdfc102 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index cc4cb82e0e..73d0d4abf4 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 73df48a956..c350a08e02 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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/lib.po b/l10n/hi/lib.po index f18ebbbfab..2da36dc45e 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:14+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 00:04+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 cff5748714..c32f80d8ba 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files.po b/l10n/hr/files.po index 044c3ffd8d..ab952641e7 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/hr/files_external.po index 2eaaccd770..4ac6471dfd 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index d98e70ae04..b2832d057e 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index f8cc9e3e8c..c30f04d69e 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index d25aa1446e..a0edfdf584 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/hr/settings.po index 78f830eaff..70665b01e9 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/hr/user_ldap.po index e72455ab6d..bc2bca5fcd 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 1e1c346145..d4cffe14ed 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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.po b/l10n/hu_HU/files.po index fd2eb039c8..16ea4a1c62 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 67c15616aa..f0b2399ce5 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index a360d5e25f..3bac735976 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 b12ac94677..863e29b675 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 15fff2ed2c..a8326b1bb3 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index cdf00c6e4b..e3392c2e67 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 0cee2e17aa..b9fa5bf281 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 7d196d4f2a..7322202bfa 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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index e68a595a3f..6d57f2329e 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 6fbc99cb70..d4db75d1a7 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index c12ace6d2c..da63a28859 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 89e69768ca..477a941c98 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 85839d91e2..6d4136c358 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ia/files.po b/l10n/ia/files.po index daf64e748f..a2e22c8365 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ia/files_external.po b/l10n/ia/files_external.po index 2998354b7a..05b36d8a3d 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index c40b91f1ff..d2b7155a17 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 7e069ffa02..db9d5df424 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index fbdf7c4998..9b4d5b1419 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ia/settings.po b/l10n/ia/settings.po index 1db5ecfbf5..ea14e70598 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ia/user_ldap.po b/l10n/ia/user_ldap.po index 5c6ded8f13..7efd0a6b9d 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index ac236e4825..52c936308b 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index efd189b93b..9c620f02a4 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/id/files_external.po b/l10n/id/files_external.po index e4011aa7b2..ecc410594e 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 3a5fbba256..4e6c4eb7e1 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 0882e13f42..961618e64d 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 09525b5ea1..2d94c914d4 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index dd6d8fbb62..47e09a2f55 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/id/user_ldap.po b/l10n/id/user_ldap.po index a4ddd59865..d7e3f6b7a7 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 8329f2a43b..43976981af 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index c50a720a77..3c549dc287 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/is/files_external.po index ff84e6c25f..c2b17a237e 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 59c23a8539..39f16a12a2 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index a11ab01f66..c262f30644 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 976231036a..7e563e2f98 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/is/settings.po index e7389d6b8e..67e96ee203 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/is/user_ldap.po index bb05549726..ada7146a75 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 630aa96af4..7ca5c176e2 100644 --- a/l10n/it/core.po +++ b/l10n/it/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: idetao \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 ed9af108b7..9b2572674e 100644 --- a/l10n/it/files.po +++ b/l10n/it/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 7a10ae3b5f..80be594509 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 1ec88aebe8..8ba16e3fc6 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 e1acbb3a88..313cc6a7e5 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 6b9006f3af..1f8936fb68 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 16f0a72cae..f517775f9a 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 99ec3b6f31..419b7a6371 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 27d19d237e..7f4ecc3728 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: plazmism \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 2eb1d3deac..f1638aacc8 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 39185f26ca..08607c3444 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 3b74d2dceb..35025b1209 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 7fa26aaa71..6016942dd4 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 25576b17e2..0f0586f87c 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 64a3276c59..8765ce5b5b 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 80ea960cec..dcc68d9c63 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 5be6e2d4d8..bc3ec2a2a2 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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_sharing.po b/l10n/ka/files_sharing.po index 2550c7febb..1016eaeda8 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 3e36d9314d..eb6dbd1c21 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files.po b/l10n/ka_GE/files.po index 52d6359d45..a9cfcb93b6 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/ka_GE/files_external.po index 7a8adaef47..f06d1f0e89 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 985a9aa21d..5598b06b22 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index ad4ec649b7..09661d5d66 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 21cc679eb6..2df50c389e 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index e7e3657ed9..b6f77832c5 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/ka_GE/user_ldap.po index 72bcd83c9d..aa2444a6c9 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 7058c736d8..728a9b984f 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index ca638cf931..d8fdcd466d 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/ko/files_external.po index f956ff2d5d..2aacc5c075 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 951d125cc9..4a063859e1 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 407c0cf9c2..4faf9aa841 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 28cf81f5b3..1f90b67d28 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/ko/settings.po index 70e5121c2b..17b777832b 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/ko/user_ldap.po index 41d97d0477..cb6b586633 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 4942237c5a..a239114136 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 7846887ab0..d97e457f4c 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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_sharing.po b/l10n/ku_IQ/files_sharing.po index b3362745b2..99d1f23f03 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index a9960367e8..ceb41f40b9 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 1a2dd0ff02..085812d610 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:14+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 00:04+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 99177f7f97..8e606d6765 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/ku_IQ/user_ldap.po index b42f9c2a8a..ac98cb7219 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 9d2326a0ab..59e4d32618 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index b0499ff9f4..a2cff0aab0 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/lb/files_external.po b/l10n/lb/files_external.po index 1410b0069b..9bdd1dba46 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index b9a0db8189..48dd139954 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index a9fa6ff810..565b230a45 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 534ae1898c..9a7f5d205a 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/lb/settings.po b/l10n/lb/settings.po index 750ddbd263..5daa7db884 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/lb/user_ldap.po b/l10n/lb/user_ldap.po index 64b70edc20..1cf5b951b0 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 56f947d806..f2ee33bb5a 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 21de951970..b9e6931e89 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index fdb7c9dba0..7ba9d3aa5e 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 5640140a27..750e1c3a20 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index a974312856..3c889214ff 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 183c7b657f..09b052eaa5 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 504fadcbba..f1673c058b 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 17a14dd19a..3378a86e42 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index f0b55605bd..c183386292 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/lv/files.po b/l10n/lv/files.po index c86cfd8925..f825401fbf 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/lv/files_external.po b/l10n/lv/files_external.po index 7bd1a0c2af..7c43d6fb6f 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 51b337c47b..c7ac8d9041 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index ef02982ae0..b14559f1d7 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 5bfd15ca86..ddf45cfa26 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/lv/settings.po b/l10n/lv/settings.po index d499d8d949..63d7c64c80 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/lv/user_ldap.po b/l10n/lv/user_ldap.po index bf2c11af45..3a056a1cae 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 07871e2ca0..f9e9d476cd 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 73d0469bdb..5b599c474f 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/mk/files_external.po index 59ed1f8f8f..03eb11a89a 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 99a985e16a..0ff2f6e80b 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 6b647a2e41..bb79cbd00f 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 73256d364a..c9f4a52540 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/mk/settings.po index 774f963ceb..104532e440 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/mk/user_ldap.po index a9ea2428a4..ff3d3ab4a1 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 424c93c1ab..39edfdbaec 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index d044cd7dc5..32344a2313 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/ms_MY/files_external.po index fb89a67603..e37c2127ab 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index e813dd7535..6f1ae5bbf1 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index c2507795f3..afcfdaf491 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index c86c39650f..2a565960a3 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/ms_MY/settings.po index 8b8715ff91..a3a5b1f3b5 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/ms_MY/user_ldap.po index a73c6efa3d..4cf1253323 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index bcfc209d2a..5519e10dbc 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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.po b/l10n/my_MM/files.po index 74bb651285..7ef2423ca5 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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_sharing.po b/l10n/my_MM/files_sharing.po index 0417afa925..b32b0ce216 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index e386aec260..9af080dfd0 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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 527d6b52d0..5152e81c5c 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 16d6e752ea..89e882aea2 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index fabf152762..2cf8ef1fd6 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 7890efa637..a330640cd9 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index a8c075e09f..3da5b41391 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 2d4f80e063..d567f14075 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/nb_NO/settings.po index ab3e7ffafd..eca14e3c61 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/nb_NO/user_ldap.po index 5dab4289bd..a10ed0a2d7 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 6c40923c99..eec21a297b 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 674e2a8d7b..eb4bb5e484 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 46102e0e70..b74e83850b 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 5ca36b55d6..7e3c9962d9 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 61996dac98..306a7055f2 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index b10b94f2be..6d033c861d 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index ea01c56ee8..8ecf552fa0 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index f894315217..0b26e03796 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index cbde299521..04991fdf88 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 9672e6f7e3..5b8d9321ef 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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index a81ba3774a..5f10dfcb13 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 0e5fb7ce7b..99ad81bf4a 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 58a84858fb..e371c5937a 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 66b86a8172..61ea95d973 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index fffaad9f56..b5fe6d1eda 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 0c26e10837..ec4f9c4dea 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 75b0b16d2f..545c1fb0f0 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 685f53f706..8d56be5f7e 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/oc/files_external.po index fcaae7d1a0..e4990692a7 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 917722fb48..c0b967f8ca 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 02ebc74512..697c5388cc 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index e5117d3f15..217bb5e3a7 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:14+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 00:04+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 74a5426f4c..e356f5fd50 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/oc/user_ldap.po index 5d5c54d811..09a9eeb526 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index d9741def08..0cf3d1eca7 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 251aac6aba..dd22773812 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: adbrand \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 4ce57898a8..f6288b915c 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 67304dbfc8..afe0c1c620 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 28c5125fae..e7dd38d8e9 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index a9bbca8b1b..ae1066f6e1 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 0c07fdc795..127dac3d6c 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/pl/user_ldap.po index 309f935377..336f9eec0e 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 94fa011c84..e98aaa1d1a 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 5878c98c6a..f635bf45d7 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index d332b1bd20..1745a7157c 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 8f45597b3a..45b58395a9 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 6efe4da14c..60e965a251 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 88bb3babbe..85b52f94aa 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 9bf886fd50..5caa4961bd 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 8b78fbdba3..f4a891cfce 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 5988aae2bc..3fa25d8d11 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index d0abaf4cc5..3dea965f39 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: bmgmatias \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 d1b910c8f8..b867812cd0 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 936236919c..81473e8304 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 f6f6cff5bc..f98670bd66 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 3acb3ca1f5..2cca0274ec 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 9a23a3c7e4..a54d1599e7 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Nelson Rosado \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 3de4e6c04d..3a79c47da0 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index c0feb35a2d..703aa55f95 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ro/files.po b/l10n/ro/files.po index df6d192dba..874153b9a7 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ro/files_external.po b/l10n/ro/files_external.po index de7972a076..8a939852e6 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 399d35fd01..2662cb7322 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 4367d93361..0ac40c7570 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 1ace9239af..bcd25eb14e 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ro/settings.po b/l10n/ro/settings.po index f372c25ae9..5fa551bd67 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/ro/user_ldap.po b/l10n/ro/user_ldap.po index b0ed1189e5..0d344ebca9 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index d8bc6df767..340dce6738 100644 --- a/l10n/ru/core.po +++ b/l10n/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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.po b/l10n/ru/files.po index 6f88f34002..fc3bc0a80e 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Friktor \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 0ca91d201d..45a5938fa7 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index c73f104fb0..f8c6a6e1fb 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index c93789b54c..12908e3c54 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 1c3861a36f..5009f6f991 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Friktor \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 3e370665ce..8eb83bf030 100644 --- a/l10n/ru/settings.po +++ b/l10n/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/user_ldap.po b/l10n/ru/user_ldap.po index 0a4f8db8fb..e50bef440d 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Fenuks \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index b134012933..7b0b5b5596 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 2517d43a2a..ff3caa0613 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/si_LK/files_external.po index 2b19f8c1e3..22557191d0 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 3eba05e8ae..03c481103a 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 3d056e4338..e8c75ae0ed 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 53678e3855..c61ce1e732 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/si_LK/settings.po index ae906f9a48..36accd9320 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/si_LK/user_ldap.po index 76d14f2437..659e656d17 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 5265ff6542..b96fd9fb09 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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.po b/l10n/sk_SK/files.po index bb9920f0e8..71388424f0 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index d22be0619f..1509c8bbcb 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 7830894964..30017153f1 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 9853b07334..ee3167b8eb 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index d1e0123096..3464d349a2 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 8e4097b014..396ba0b268 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 14a021b36e..18b09d0576 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 4c2f47b70d..2dea4f598a 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index b2fe503eee..c144a5d902 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/sl/files_external.po index a4ed4aae6a..9a87074d07 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index aa1c40367a..c7c8a5d536 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 9fa91096ce..83f2cc4310 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 23f91d5b1d..0ff29962d0 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/sl/settings.po index caff6c3d0b..bfc077acf4 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/sl/user_ldap.po index 3b8d5345fd..d3b0448c83 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 1c8255c649..a6d044a550 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index cbf99f0a95..ea510307d8 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/sq/files_external.po index 7c8144b37e..a07082b458 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 0ac145021e..4cbb12e813 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 5df22d1ccd..2a95b6477c 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 7ad4f6ecf1..023030d001 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/sq/settings.po index aa3279ee08..89fec145fa 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/sq/user_ldap.po index a4b802b8bc..d3c5f48824 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a50656665f..1ba8aa1cb7 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index b33c7aa315..ad4483860e 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/sr/files_external.po index 6576f0c107..d63ec04d58 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 45cf9b3c13..aa01738713 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 0d0b002e3f..0479b2c1c5 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 68f2ca7c1a..466bf88f49 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/sr/settings.po index 762059683c..5a79894c07 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/sr/user_ldap.po index 216ad8242d..0801cb7969 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 68d60ad2bd..2e2b46c4b7 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 7fbd9444dc..c63cff5c4f 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index d8ae4a9564..fcdd970a75 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 073ad050b6..778fd91565 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index eee1a0f967..08b49fb32b 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index fcc50017be..2cdd6e3eb7 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/sr@latin/settings.po b/l10n/sr@latin/settings.po index d2cdbaee34..98ae0def7e 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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 87a94986ce..3db0482048 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 23d25d7edc..a4f40138b4 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Gunnar Norin \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 b8446c7d75..487a36a976 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index c735c8dc38..59b337cad3 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 0c012d38c4..d5d549eeaf 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index fd232283db..983cb0aa32 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 77d0875c46..ac67cf6ce0 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Gunnar Norin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 52c9e61b9b..86898105bf 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index af3fbc3b5e..b6c7984a6f 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files.po b/l10n/ta_LK/files.po index 87fc598cf4..eeb4f94e82 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/ta_LK/files_external.po index 9a0940e14e..8b71c9f5ea 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 84ea6e5f5c..9adeae93e1 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index b5e5d04816..6fbfb622d6 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 492ced41da..66f05a3914 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/ta_LK/settings.po index c1c94fa86b..1b64ce2d0f 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/ta_LK/user_ldap.po index 2a1eee3915..c71e429591 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 31c7ad8642..3621c0e7bf 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index a1f83666ae..2d8be8431e 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/te/files_external.po index c49ba9b54a..d2653046ed 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index a7851eaaa9..b4c9da7af4 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index c034ef6447..f6a30e2acd 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:14+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 00:04+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 0152112dbc..d8075f6d8d 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/te/user_ldap.po index a02eea036e..457e1ebe6b 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 07f903727f..e1d617e4b9 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-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9b7c997381..bb1623fc74 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-06-16 01:58+0200\n" +"POT-Creation-Date: 2013-06-17 02:01+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 f53a68116c..876013105c 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-06-16 01:58+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 6faf82b0c3..d45e8a76d0 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-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 51602e6b27..0e39f821ef 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-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 4c42ebd346..cdef6df66d 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-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index c9c8107752..baa9aa99c2 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-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index e8d2f50ad4..630449d254 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-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 887bf4775f..e01592e506 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-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index b984f9962d..b09d97e687 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-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 38c983d62b..965793af7a 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-06-16 01:59+0200\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 3d45513567..247f3f4906 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index ab252c8357..caf6ea0b39 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/th_TH/files_external.po b/l10n/th_TH/files_external.po index 713406d8a1..64c93b4223 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 0a5fb732b0..bdabc112bf 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 4d7adac4b5..d0d5f74b5e 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index dc6792225b..b2ff943d40 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/th_TH/settings.po b/l10n/th_TH/settings.po index 39f6353b47..45adad4431 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index ebf479c2fa..c0b46a90d0 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index b676faa858..00b3a6fdd0 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 31ce56a45c..e861719cc2 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index a4767b70d7..701dcb2efc 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 689814dbe9..959c5e0430 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index af57b339d3..c13957b998 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 39556e36ce..0588ebd182 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 430ffc84bb..f723b52d59 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/tr/user_ldap.po index 9d2aa6c652..ba83a78f52 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 8f1320989d..5804dbcf26 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 5e3f8d7667..6c8add22bd 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index cb27f99472..ca1b6f1831 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 4bcd67b5e2..5ade987b23 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index ef2a058ac5..608253e15e 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index cb177a4009..86118a06f2 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 7b823bfa10..e758df121e 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index c36236f821..c3caa24cb2 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 884a67eb26..775080772d 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files.po b/l10n/uk/files.po index c6d041adf0..9765c74af5 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/uk/files_external.po index 6628a6d585..09deb2b9db 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index b54d81afa2..43228521ca 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index f5768a10cd..3e9eb69e8b 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index a4b2dc6a23..a9a396413b 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/uk/settings.po index 1e5a9d769f..e4db481755 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/uk/user_ldap.po index ce1d30114b..354c745f3b 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index a0ef6c7c8e..e546158a01 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index a42735e3d5..c945d218ce 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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index eb4adffd41..6fe896a1c3 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 354666fd3b..fe1ddaf99c 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:14+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 00:04+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 9cadab05a9..7120aba682 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/ur_PK/user_ldap.po index f5b83efd5d..8507331d91 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index eb633bfa0d..ae6f675611 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 0ffc9381ba..d080cffa12 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/vi/files_external.po index 7e10a558ca..7211ba53a3 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 60955175cd..ab0ba85246 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index fafd5b4db3..b5e445cf4b 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 98e450ed86..7b4b17070a 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/vi/settings.po index a130cbf03e..1855f1e470 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/vi/user_ldap.po index 014a2ef8d9..10c3ef2f86 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 7cc1685f3e..26ca2db0ba 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 274a79d4ac..458b331248 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 2cd794bddb..912858329f 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 36aed00e4e..9721a80694 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 224108e6e6..8c66f848dd 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 6830c078d9..b46b81ded6 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/zh_CN.GB2312/settings.po index 19570f393e..987ae7830d 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 44b63e04dd..552bc73fd7 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 61eb7839db..072c4f0c39 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 2ad7c3b8c5..b61fe3b7c4 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: zhangmin \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 f697f93274..3b6586ea12 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 75565fcca2..5445e589df 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 8c4c7c1e7d..11b73a1638 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 7b05c66d1c..b61a5e154a 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 9a5522594d..524169d86d 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/zh_CN/user_ldap.po index 2ee0effbe1..06c3ec2144 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 65c94189b6..0f4b924ac8 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 7b70e6402c..ff12dc36a2 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/files_external.po b/l10n/zh_HK/files_external.po index 2a3fe10cd6..d793ce84ac 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 1f5c487164..22a2697c1c 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 24866b8c4d..816a70f3a4 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index b51d846c4b..638d43a558 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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/settings.po b/l10n/zh_HK/settings.po index 96ac4d1362..d631d63b55 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/zh_HK/user_ldap.po index 3d27b56d9e..a1f1dc6b18 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index b5ade0c6f7..67c10c0e85 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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.po b/l10n/zh_TW/files.po index 156fe3e85c..2c79b51dd3 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:01+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 8a5ed49049..08202bfdd9 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index b286770673..6b0936e5fc 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 9de34c125a..9f259beac2 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:24+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 a2aa55aed4..7f50bfecd6 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:23+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 3d99d62da3..663a8cbb80 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:18+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23: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_ldap.po b/l10n/zh_TW/user_ldap.po index c7eb0f4c43..4b878bf470 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 23:19+0000\n" +"POT-Creation-Date: 2013-06-17 02:02+0200\n" +"PO-Revision-Date: 2013-06-16 23:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n"