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 6015a901eb7..9d0c6f89f1b 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 8633ae9b637..1e4bbff49cf 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 9d0c6f89f1b..af469237a18 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 329fa4443ad..2eda269afc2 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 88c71a75ab0..210f72da631 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 210f72da631..69adf08dd40 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 15f5f0628b5..97a2bff915a 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 97a2bff915a..d9e116bf25b 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 1e4bbff49cf..e4f2d98e5e4 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 af469237a18..db00da02239 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 6417e45434d..8f4c11d0f0a 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 8f4c11d0f0a..146034a5d43 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 ec6524ee4f7..e3a84a21193 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 e3a84a21193..e199c32675c 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 9b87d4ce4e5..3cbb89fb981 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 f30cdf6a534..a7ed0379294 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 d9bb4d5e74e..d2bac218a9f 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 955425595ba..4e0e5c4b958 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 ddeb3590f60..d84a4d4e3c1 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 0d663549bf6..b27b26ccaa1 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 0dc452a41c8..b36d7e41172 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 11308612daf..e5f7f2e6954 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 eb9a2600d70..639d5769154 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 072c5286644..56322c100ba 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 d9bb4d5e74e..c9e3de56916 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 639d5769154..c52d739eaa8 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 56322c100ba..a5ebe8ef915 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 a5ebe8ef915..dee5a7cccc0 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 d84a4d4e3c1..ced9ab7c676 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 32156eea272..e153a49a2c7 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 b0594f967ba..366f634a51c 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 c52d739eaa8..47e240769bc 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 ddeb3590f60..8c96e536415 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 e078ab35541..42871a4a955 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 bff1737554b..9b0ca224c84 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 04bd4dc8aca..6923b81b926 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 6d92881ceb0..28f0de4941b 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 47e240769bc..5271b51202c 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 00000000000..e0b3d55d8b3 --- /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 312b672ad46..46105176c29 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 3e96565949b..d23a4cfdde3 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 04d6e79179e..bacdc133375 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 32156eea272..74f91e9b037 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 74f91e9b037..bb84ff26907 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 e0b3d55d8b3..49f97dd3231 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 5271b51202c..cfe9e9d2a32 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 8c96e536415..ecbec2e8b2b 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 42871a4a955..3e581a6ee39 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 9b0ca224c84..1911386cd12 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 6923b81b926..6446e83222e 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 d23a4cfdde3..3aa8b399355 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 18fea1845f4..c420b006c45 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 bb84ff26907..d856e5d59b5 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 28f0de4941b..9a0d542c6d5 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 cb66c57c743..90d213f1792 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 49f97dd3231..6fd63dae9cd 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 00000000000..3118299b519 --- /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 3e581a6ee39..daa95f3f897 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 dee5a7cccc0..3c1eb2c5f5e 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 00000000000..b0ff1db5993 --- /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 3118299b519..37e94e5658f 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 daa95f3f897..923cc2ce9dc 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 fd87513ec2a..803b9464989 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 b0ff1db5993..5c086d6514c 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 8dab48828a7..38512453207 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 803b9464989..f5733e73105 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 a6df85983dd..b0637814f5d 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 f9466b71499..55d7848a979 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 d1b08a0b978..c4b247da1ed 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 e078ab35541..184e1782494 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 cb66c57c743..30877810550 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 225e9fd2a9a..c3dc8740ee8 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 c3dc8740ee8..84ebcf1d558 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 84ebcf1d558..a315c640d1a 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 90d213f1792..e8adb8c959f 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 d9e116bf25b..748b65dc4f1 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 e3859bc0f23..48ae95b7e72 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 32156eea272..341904b1189 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 40ae1659a55..19ba9a8117f 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 816bc709f26..15dd5058ebb 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 29f8fb5a396..591113e736d 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 0dc452a41c8..6d6c8bca3dd 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 e20a04ef7fd..a2ef1572fd5 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 e43c86ed438..d9301a903cb 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 01f9a9cca11..830913a91ad 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 e9ee7d8d70d..d74451cbe6c 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 04bd4dc8aca..a6711880c20 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 8933101577d..8e68f41cf44 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 cae2e63e4dc..6c2ef71098b 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 81f5515bb4b..6a26101a1ce 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 440f3fb6bfd..eff01bd9065 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 b8e2548639b..ab8ae6dfadd 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 3d978767542..50ac41e4536 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 440f3fb6bfd..924236604c6 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 d9301a903cb..749b1ab75a3 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 82e61608687..2c3611c092e 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 c6f6e92e60e..3e6cadfe2c9 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 e58e584fb41..745523c7a5b 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 af2e5ce3439..8f6dc5e2ecd 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 c1bbb550483..fc6fe0bba7d 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 440f3fb6bfd..d6626bc2561 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 e20a04ef7fd..dbc1283964f 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 61836551833..ccbfcf3ab53 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 9467dedb62a..01f0fc28b60 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 95cedf8bf4c..fbea7f26aed 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 bf0b287a64b..a064aa5c76f 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 49d79fda709..674176d078b 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 a63cc664dbc..71a2d13937e 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 3d7fd378af4..0154b59cce3 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 7738de04f60..ec0f2ecef72 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 9d6ac87c671..bac01c11b28 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 ccbfcf3ab53..080e895e352 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 591113e736d..ade968fbece 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 6c2ef71098b..5b2fcfaadf9 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 7b2a5e309f0..df390929978 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 7067799cd2e..c73fbf56462 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 e1bb17ecaa7..eede4804cf6 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 ed1e0f376db..308fd34760a 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 11295105e31..e11e2263e12 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 935097dcaed..8a90de1a4f1 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 4c03f98e896..c6e90c22e0c 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 868778c6d74..abaa4467902 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 2dd51b6e687..fe15956376f 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 c5e4dfaf5be..13fdac78bb2 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 89f61d6a703..00f96d84fd0 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 4efbb284b1f..2fec6330cd5 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 530ac047011..e3aead3f438 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 f4ef9800782..90816a1c40d 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 184a1e448bc..eb971f8e404 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 77d13b3886c..3efffd109da 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 7ad91889b11..eb125ea64ee 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 0633f9ea966..c644037ea64 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 6c1a66f1849..ff016dec288 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 295bdf91f9a..07beb96f64b 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 9ee0cfa2851..164bf587c12 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 a9564774535..4fb44322c42 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 2f6d617ab5b..9b6ce08d562 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 53062d9c8c4..20c44d83d6b 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 046c1216b0a..d47a538564a 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 2123c0223f3..2bae81308bf 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 c9b40333ecc..ee46468ac79 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 4cd1399201b..063ad92c945 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 7efba216d34..62c465271a2 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 6c71a9e389e..815333c3ef4 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 cee6a266319..b6252a0f8f1 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 dc1e99d35a7..2565c7aa646 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 7718d1fbc6b..42bb79a298e 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 8e319607453..5ee2aa50670 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 890613baf05..7c723b69462 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 44af7f1e713..ddc6cf6bb65 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 b550849f94e..e665ff53aa1 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 1a92bdbc9dd..0010c7a0861 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 8e8ba6de891..67e18fc7d09 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 ba2c7d9a2ae..dfb1f059098 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 ba63540c302..54a2982d2fb 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 689603626ff..d1025ae695a 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 1d9b492d24c..70ad6a2b37a 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 2f57966e956..39eeb6d46ab 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 26ab19a9dee..ceb1a862886 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 d77b6f9fdf4..a8446b558af 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 68c8e1e7aff..be08eb3a9ed 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 2220311fc29..0f3f306b05d 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 ec920838746..065d8718450 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 3dcb482644e..262b2cec28c 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 89548ee5f91..60d3faea4fd 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 15f6d4ee2a2..e10335ef7b4 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 16149fb3e5f..386f92d1002 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 584081f7c5d..9f161a69446 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 d26988e8fb0..7ffdef7c869 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 e41352ec868..96a3b038bf0 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 ff5b7a21224..02939ca19cf 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 8ccff72965d..e16624e1769 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 7bc46e34ad9..3fd2b7f196b 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 494218876b7..fa25aa9b14e 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 8e123f9887a..b425c174577 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 490f51b2736..6a40d877923 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 13c7c8fcf89..20a5e8e39cf 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 9d9ae24c675..4b9a7ea7059 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 cf950694d9e..1628e9fad1a 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 003024ac2c0..bb017db8949 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 6bdad062259..05f66c09587 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 aa4e28f2cd7..37abe3caccb 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 684e63fcdf7..fe236b8ee94 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 0198447f48a..a26dae98093 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 6de01c006e6..81819cf6a19 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 d6c7f97f3c0..58782c2d64a 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 d06e7c6d8a6..a80df87fa69 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 e88d0f48c0c..bba770a5453 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 962ad5c70be..6ac126c213f 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 9767fc045b0..00f2533ca89 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 0708fa2b36f..b90698dca67 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 4517606c135..52845a98edf 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 dcc2c0a3eea..3fda98cb9d0 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 a581df81333..48d7917de06 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 c9a284845a0..cfef12ba5f4 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 d5c014762f2..363e9327881 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 e24ab1d1061..88b11e4a3b6 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 6003dd739c4..61e1795f73d 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 8d8ecee7de1..9b1650a44db 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 98fd002bf51..f182d3bc743 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 f54c66cce01..35e9e3ae423 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 639ce39303a..8d0db741fa9 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 c66e0b335d9..ff75bd76cf6 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 ca065c0596e..8204ac2847f 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 2dd26cf0d9d..4459d6d1062 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 1dde4cff846..83adcbfa219 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 b94c9292474..b0e4a29b8ce 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 05e9e56a5c2..d62a0342339 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 dc3cfdda691..ec3bdd7d56d 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 88aed749d9b..951c41f84da 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 7776c6761c7..68d2b6e7266 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 5daf7e0f01b..717c1541998 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 8e1d7080dff..658cdb8536d 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 e7ca04f999f..82d7438ad61 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 5cb34b9ac1e..e6712583769 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 85e841e2150..6dee73a77af 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 e7a92574d3c..6232fb9e94b 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 bc847baf946..059e8366a42 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 e1957520400..550de686a57 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 3492a970c93..f2e9405d65c 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 727d03a799b..3baad4a8f14 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 d9e2e53a2e4..8b367fad68a 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 9eede88f247..e91fe22e2e1 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 b238bca305a..2412adc0dbd 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 56dcea4599a..e89f354341d 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 d7ef7401c5e..cd37a7aba1e 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 7a71ab611c4..f0c1bb57d6b 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 239834a369c..1e742c923ea 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 9e9074ef68a..f1e4fcc2380 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 39ebd8be087..34d61a1d85f 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 598c6ab86d0..a15e0a7deb6 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 67fba4649ea..482fbacec86 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 05e9b289416..0cde7fec2e4 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 1178f6d167e..bf5fd8ced24 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 d1364b68713..7b0d4451cf5 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 0543ae5258d..a87f06ffa54 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 fa45cb1a5f2..9458ed3bdbf 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 027b499cf06..5ea564b0214 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 1dca4130ecf..18ef5b27958 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 f4022f637bd..de2799c5056 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 4200e182be2..8d152c3e250 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 bcacb051ea3..ce6e8a04ead 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 e20ca8ffafc..66e67c2b58e 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 982075fe6c8..f1d6dbc1070 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 4f77315e6bd..310bb19832f 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 55637830aa9..65259873a4a 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 d9fdb59a7ad..da02656440d 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 e24ced2bed9..93e02b15071 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 9b91652c1a2..de003e3b961 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 0ceea35285d..418a0b9646c 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 88ea7add2e6..00e95cfd8d0 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 9cbf6d746da..59d4eaf3f8e 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 789d30a471e..f8a6fcca230 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 cc9cb30de39..3b0e7377494 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 4a7a1b6c088..25e7105bd76 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 9e9b36d0241..5acb54ff5ad 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 0dad42f9469..036d7f1cd6d 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 08b94bc57d5..5bb148cbc2c 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 920ce9d22b8..6eb310a2c1b 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 e2fb3a9d1e2..1ad48482022 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 0be18b5c865..5ea2bba3ffd 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 52deb357fe9..7ac10abbcb2 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 89e344d9a51..22c34e68864 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 c25a8e9fb10..05bbab8ad90 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 c3885f65175..ff3af9888a2 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 b2ce6f5669c..af455687492 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 0fd6886fed3..0e24f27e983 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 d3875f024da..9b99ed08546 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 beb77651d29..d8f74dc22f0 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 4b2c33823b5..fdc2b1fa1cf 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 613d780e9be..c35bb32e849 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 e9ebbc805cc..72b88f908b7 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 d684a659d21..120165caeb5 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 de8c6f38111..d6abaa5967f 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 8ad76aba5df..c3cbc5de08e 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 1076935be86..23a87e823d6 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 89731dad0c4..7ad804720b8 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 1986ca3e103..d961de548dd 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 59b59768f6b..974ab5db98d 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 b4798850349..74b5c28823d 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 6933c837980..cadc4be3818 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 4a4693a1b45..d596a65542e 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 8a2b03237aa..b7bf6a769f9 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 272e5848a00..2a03b8604d5 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 ed462ff5edb..8b7cb4730b9 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 0c037bf515c..b98770c3984 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 cc59336602e..3be5f9c622a 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 c81fb256e3b..3f1dc098e5a 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 28fc762e07a..99d1cddf378 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 47be78fbc68..3e55af2b270 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 45e0f77b1be..49fa9fb18ee 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 c7fbdfe0dd4..ef3e4f6b4de 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 ab38bad668b..cf4e8e95b2a 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 bc44c9a00e8..7d37ea2f284 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 601a1c0d456..de34e9457e7 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 0f7f933a577..0bf53544075 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 a4d374448e7..d9264213599 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 36ee16c2ec0..930d0426648 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 0ee75166082..4300707cb8e 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 b534563b701..a4e05bb53fb 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 1f3ef9be7be..cdd940d27a2 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 24a15944185..be2d44f4951 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 a19bd05493f..e03432f6635 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 4712f97e456..d66d6a82868 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 f4a5b7fcb62..e09f5096b6d 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 ea15661c4f1..694b0c24dba 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 b0a9624f7b6..b3a591da46f 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 e66b48b5133..2ff999d46e1 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 b28c250643b..e9505c63589 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 3a1934e37bd..11212ba486a 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 6759aeb2e0b..7f9d3d9f2f5 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 46605ef5fb9..baa6c94a5e3 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 05b31984465..5119be176e0 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 d4974143bf6..e9f27bba669 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 432eb89c63a..f7e1597ed17 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 24f9ef7f55f..1942bca216a 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 f4ece7889e2..8b6c3621ee5 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 8c524f26f6b..01cec4e33c0 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 48028991662..f70053bee64 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 1af81ed21b6..8abdbc9871c 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 998d3891f20..ea107995e8b 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 f7da35bc96f..30b5dc8ff2e 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 b98b4a091d8..5425b7ffc78 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 a64155a0c21..184a04f6253 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 ef5b0a92cab..9fc7ec7fc27 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 61720446f81..cefd8bdee95 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 119517324d2..5ef0f33c038 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 e5952a1e858..1901dcbe8d0 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 2bff349b493..9279dd8767d 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 b233dcf53ef..04fa7060f46 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 3d95c0bb2b2..00e385b26f2 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 f419bf02c32..8e9b39f5dc0 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 954a035ef7c..dbf1b9e4184 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 8dcdde980f6..65473f268bd 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 d2a159166e9..352a3a0f563 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 a7ca8ef56c0..7cb8a66f016 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 473ba531842..0ef0ba270fd 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 b9ae9cd61d5..46edfe81deb 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 11a7b9a943c..15775aa673e 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 237899dbaa9..16e0eacac76 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 c77db6d7478..a80e107429f 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 91fd0f49211..abf3d00d5c1 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 1b206db9f8c..3abff2eaf2d 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 6b9e16a32ad..c6dddf3f393 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 9f82d0ed3b5..6ec8fef0417 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 0ea154250fc..a316a55d721 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 838184406e1..2add76cf5ae 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 a6c787db089..fce67d51bf8 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 e4d32d74122..71cbc64d705 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 9a4106ecda2..09d09a592f8 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 fe9f5ba85c5..6c4f017b65e 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 5c1aac0a3b3..e4763f41574 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 27962809479..9efe4f432e4 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 2e68b29c28c..1e3186d1080 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 83088eb7f50..71fdd4c7daf 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 6990feb95e8..308d32af16c 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 f7aad03ea81..8831bad30bc 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 bf6a3661596..fc0dd6cfae7 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 899150546d3..435aa50322b 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 7e9b18c3c9d..061262d6415 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 b1a27686b36..fbbeaec4eb0 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 689547694ec..5aeac5a6fb7 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 df92a1b7273..0371f7cd72e 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 b1a6d13081f..1d51a99e039 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 f77d977fcd2..c2a37c36303 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 a2ccc231e99..68d651e73f4 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 4e77de5d81f..b4e0bb9ae08 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 e50657299d4..cd20bf0905e 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 7125a2c5752..c3befa9be88 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 42f52717b63..c72b98a6267 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 ee1a6b9a111..6f3e8a2f64d 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 a70601ea517..dba270fbd96 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 ccd0d27583a..ecbb5f57511 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 1d2b758381c..d9bd2a972c5 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 71d0b5c5f66..e27cb70cd75 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 b271b1b1536..203f3ae7686 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 383d33fe445..5a0963ac352 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 04b3b0aee78..aae54e6c91c 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 b35aa00cdaa..0d2727e2f14 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 ee89997b7f1..1f5af195964 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 b4f2857a1e1..7658c6d2726 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 4d099f364dc..e76dd08cb39 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 93d831d4dab..28950147979 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 6be0edc012b..d6c1e0803d6 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 ea4ed5e423c..67915cf893b 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 d3c2715743e..1dfdb118766 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 bba563de039..c19dda11e49 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 ef026ee43c3..2be895a0bcf 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 c10fa0a0a80..3e3267b94ce 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 4ae8f28b9fe..0de3a3d8064 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 cb43c60d534..811a9fa7e17 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 2633445b056..88174c907fa 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 363c509eee3..477ef7237a3 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 18ebc2211d7..f04155c7bdc 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 786ee3a999f..3465513c8d1 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 c03dbefd32b..1a2e1ef447d 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 ffca50ac339..4e71f1daf7a 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 0f4afc9a659..ec361557955 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 e09a4d413cb..21e7d44865c 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 9f5c977fb5d..a969dc67c4d 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 9add39736bb..ecf36754a8c 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 74723ed7f1e..e84fc88279d 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 f8ca0c7c0ef..40da124eac8 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 447a29db0af..3ff847fb0f0 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 0517541d713..c84d1b6c148 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 694c52efd95..2588057d567 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 0d8a27fcadb..6f0e7aad7c9 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 b030d2708db..d162f1c8c16 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 810495c5502..61490b6cf23 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 692260ced50..b6e0cf73bc5 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 e9bf60a848c..79d90bc9249 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 feca0679a94..41ef7653d75 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 5d2e9b78ce1..d36b31d09ca 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 b6d57436146..27d20c928e6 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 3d6c988d93c..1b3fabd0d60 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 9c3ee30fdfb..422aaf85f46 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 cd297e9eec1..57dd1d36093 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 d80dc9bfb15..6053a208e82 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 b86598c21eb..aab57df4cd3 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 2075d40c593..745111851e3 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 a9a1ab26452..22e966f8b54 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 3a983dc2949..c462eb309a7 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 c935187d3cb..f0767aad1b7 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 0d0ba6a7e6d..067ce86ac0c 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 2cd88e05a14..72f3433fa04 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 e1e8ae4a62f..4c04e9f3f2d 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 af31364f85c..2784d11809d 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 498aa1b544a..f1b9bf29eb1 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 20a7e6a7d08..491d7e83b68 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 5c58fa41d71..7f36fbde9ad 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 8baa981e840..c962bdcb214 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 3832da32cb2..21528e37f81 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 d109ba57252..0f2557d3e80 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 88e61ad1bcc..3f3eb8332f4 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 c4c2318dc02..f97ef67ce1d 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 9f63e8714b4..05ae4eb504a 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 dca33ac872e..33fb848b539 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 99282fd9896..06d0f5af153 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 ae0a85d5058..af7df0e2c81 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 d678b612a12..fb378d82d7b 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 e7b5cb93625..26891c08405 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 bf46e93a0d4..280be574d14 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 1a76b8b94f0..fca7e672f34 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 cfa3ca133c4..e92f01aac01 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 704a2037a63..0933766c22d 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 e80ac3f4bde..ff7f1d0ad65 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 0b88c243c33..fab0d090615 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 bdbe124d6ef..9b93510e315 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 eaf8447ec8e..9214bd8016e 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 83f8b98f225..0b9dc1b1c18 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 98f6a3172ee..e7e4f919c49 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 9758b743af6..4aa2980a599 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 89d83300611..9ef342d2508 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 544a98b1b29..cf8aba0bb02 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 d28e3be0372..6d4f620e891 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 a03ad7450d7..73460f9f461 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 3a7e54210ff..6aa4735f5f6 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 45c64bce8da..ef5d497485b 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 969d08eae83..156e5ba5b3e 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 e2cce3fd3c7..dd203c1174d 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 ba65453957b..962449a8897 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 8bdcf5164e1..20185510516 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 6b725ef9110..6d22375b619 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 739d302b673..079b6a30dbc 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 5249521a898..471ef2e90a8 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 100d39e2394..56ea27aa64d 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 0cba5c44e38..77340fd72af 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 ffb85d726fa..da0220832e4 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 13e5fc89026..b11914ce134 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 a08a4f95abc..530ee175fd8 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 16196c2d730..7773182c3b7 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 ba546d0b3a3..99fa3574d2f 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 9498aa4766f..80f41d396c4 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 89d4fee6768..c12ce40179f 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 e4512308c24..879294fc3c1 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 947f0726078..531acc5f4fe 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 61cb1199de0..d2cbca42327 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 36eb61a0a2a..920ea21f42a 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 c8d1ff669f5..7273db1a8c7 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 ac37dff821f..a2cd4b88d36 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 29494dfa914..b04c34ca36f 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 68c336d5e0e..cccac051f19 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 8b9fd67193d..666b8c81152 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 9d816b3a9ce..31029f5a911 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 98906e9ea34..257cfe11e31 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 e74b562225c..c61bd2b9296 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 5bc02d8d6be..b6ae06366fa 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 f9763461239..c3dc0abd01d 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 32d2e292b9d..607a3bbc166 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 17fc6a8ab63..b9d421beddf 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 80c3cb3419e..67c47fbda79 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 8adee4517be..ee68ef40dfc 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 2bd504b6792..f64ec864f0e 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 706baec00fa..b8c79bb8077 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 95eb13dd48d..9de3f6dedd3 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 18fec1042a9..85ede4e608b 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 ff1915aa946..43dfc7d37a8 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 09d08c8666a..145d6154a7e 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 d87d7bd2973..93061558e55 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 a8452cb846c..6b82daf913c 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 6d6450c3ef7..3e65f12b67b 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 db8b9fc0996..cb08d59bdfe 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 e8ac3dfa372..8f3dbdcd6ef 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 d2c36477253..1c45a8b58dc 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 f6ca2a1ef5c..9a3291dad6b 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 664db039c35..ff92b055532 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 080888f2dbc..ea02f844a90 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 5c1c7987df9..9a237da51bc 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 d1c13605c9d..f454c3b0884 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 569edc4a63e..ab5fc6d212b 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 4f3b3ff2037..283b917d7dd 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 fca205d88ba..b663f9300ab 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 068c8cceaea..78c7981e8dd 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 9139b2a0874..36dc29636cc 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 c6170c1d293..9f2dbc42556 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 038722e5bc5..e130f905aa5 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 426cfabe8e6..39c470d29c8 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 377bc262312..0fad985218d 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 eb1dae68635..c3976801bfa 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 bf13e0f7469..9d14e58f416 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 af6b0ca9c92..942f6548550 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 4ec1787219f..4dd9fdfc2af 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 90ca6a49660..8f55774b807 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 ec3de55ea6f..fdf5055fab6 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 4c64e7cf049..1b2739626df 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 d456b02c443..957c84f24be 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 e35bdd2bc75..a182762e2a3 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 9e3774b7504..0ac06c7b6cb 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 829ed1eb86d..b1f8156ffdb 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 f2c3868a938..04e544fed84 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 372cafb28a0..bab96c2f7ec 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 4344f0ca093..1ebc994dafa 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 53bf736d1be..84b2bd1de4b 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 2b986563c30..e2875516685 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 1519240040d..f621ecf2181 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 f1ce782b5ed..a766452d681 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 7f3cf1a0a12..88b9eb87963 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 04d433292d9..b9076946228 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 8587702e547..364ec19f98d 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 beb625bf4df..493b1327375 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 b51ed96ae70..a29e3fd14f5 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 9450f475e13..541fa809da3 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 4afbd588c29..076ecd8c402 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 0a7eecb95ec..065300500eb 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 a8fd5f1a2c2..668dde05ff3 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 0e19295b90a..e2c786bf69e 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 4c6eeba14c9..65130bc8673 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 51a80d720c2..bec006510bb 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 3c0a6db8c36..aa54bac42e2 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 7c44742f5ed..3d0648f5a58 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 63e2d32a9fd..543510719fb 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 973ddf58fa0..94c0df79e3e 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 5a53b4c76be..6aa17c774ee 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 59ea136f6fc..8c51bd1976e 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 5516c4ecc0e..37bde93041a 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 da121991768..1a616119867 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 7d35cbe2cc4..b503d1844f4 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 c744b0e704f..75a66ae433c 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 a1d13612a9e..bd76a11a386 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 28e960f7fa9..8e2258cc47a 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 b659be23a1a..b9a904385eb 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 41a5e9e058c..8807165afbc 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 04085c3a1df..e29125e5de7 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 80fd28d0675..27b3b6b989e 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 ab030823c20..068b5c97874 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 f7d313ecf62..5815404b6a3 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 19f98f50879..02960b167ac 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 a359a70931e..c53a5b8f69d 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 5755355a9a2..4a7aa072d4c 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 003aa61119a..802771dad3f 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 9160ef6f8f0..ec61276c140 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 499ac8d86ba..69bdbb3b349 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 1e76ec514cb..ccaf217e3f7 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 f2d3d62bbaa..f9a4f05bba2 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 04c3dfb2f0e..bcf8bc65482 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 10e0ed55934..7c7cc3d6f86 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 88f5faaa8c4..03f870df355 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 84d0a03ade4..6b3bf07f84d 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 4d902877553..f9e6486c748 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 f4c759bb895..d3ebdfae683 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 30864d070ef..f852edaf64f 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 f33f1214734..a6e534171ef 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 d994fdc9126..38601b9c91e 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 19a72a91870..7bd5909ca44 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 e3c3da11396..415cd779f22 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 84fe2a4a5ac..ab1a51ccbd5 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 300b68ef358..fc744974b2e 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 fb86e4c5222..041a47962cf 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 a0a3d3e2f8e..c8d460a20b7 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 a740a72d4b2..b024d95d799 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 f1f09886a2c..c305885e463 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 77ebdca63c6..8431d09324c 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 85010e1d229..bb6b0767ccf 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 1497b82e854..9dbe65a748c 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 b8ab0535294..ec6e346371a 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 5cfc465cfb1..d89e4461a78 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 0e783376e1f..8aa0bbf240b 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 cdb719b60b3..e0e138eb08e 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 e9bea37a86c..67ddad52da3 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 0307e014a4a..19907b75811 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 6a0edb56e8b..58d6ddb9a92 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 bbff9e10921..3cdcb7381f5 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 6562d96b9e4..525e3c50f31 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 669488a7cae..59f793764f5 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 1db5a25f470..e662bb1a145 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 42b90916ae8..ad310840b8c 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 2e794bb41d2..fa2688fd3e9 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 2b1ded2759b..48334f186b4 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 329fef9c31b..86474234c66 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 0baeb3a4aee..c48e336fc80 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 31b55a8840a..4ca9187a76d 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 753cf42762c..b1191e63d74 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 e649fd5fc7e..b1dff0973d5 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 7961f29a29e..ac384682839 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 19c02048eb1..9e7b0c6149d 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 d9dc91a72cf..98461719c9c 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 e6249054f71..e90a7b93fc3 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 6267d8dc2f0..f9d2017c0be 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 4e2b2c83f21..477137bac38 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 f99b3c76a31..6dd7cc9a0a2 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 d132bb82935..05d3e9d461f 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 5c07ebbb2cf..fc042553910 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 50483361c8b..2ac880c22a3 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 294b4004cbd..ee59a1a2e82 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 b08441ca341..739ab358ded 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 a08c8d711f0..a8e33eda55d 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 640fc85f417..4b003e86602 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 44312ed4d87..459a8decb75 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 46c482093db..01c19992bc2 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 78f653355be..6cea910bd58 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 0a5d52aeb84..af7ca4bd0be 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 64263ffbee5..5eef1bce510 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 f90883b9ccd..866a9269fb9 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 2d607d0d13d..c818e894a7e 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 5c21b80f61b..bd2e25b9ef0 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 8b29c417cc9..31a5969b1b4 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 e38f02f6e97..9a39db9eeaf 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 c8d4bb32a92..f5cc3d2438e 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 97fe8645689..d9aee240ffa 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 103c0c926d6..d4521dd95f7 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 c44ecd22824..cb2eeb82314 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 f7c4fea6592..4ac318f1f4d 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 f3e6e3d588f..125686a62db 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 3a52d7741a5..22d719b2864 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 31a0d0acdb3..a951d989a30 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 87fa30df693..aef3941ec97 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 39686f8b384..1a340dcb7e5 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 9c279c50844..e1138987a66 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 3558ae72988..24f3a099ccf 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 a13af72fbe8..d59b017922d 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 933b09988f0..cefb7fc52c9 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 c4b247da1ed..9f36393d591 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 a6711880c20..82b6ca2f321 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 82b6ca2f321..a5aa121f930 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 503ac3f7493..06ea8e791dd 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 c24d1fd8244..e19a35bbc5b 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 1719d25e660..1e94275dcba 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 f788949b1b6..108dcd741c6 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 313f89195df..319e9559d91 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 319e9559d91..0987dafd617 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 0987dafd617..58e750da4fa 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 fe89c74ab38..68977ad0775 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 d74451cbe6c..9d6750751f3 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 f0002c505c8..b11f1912f51 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 def4e60d74d..3cf43ccd4b0 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 3cf43ccd4b0..bb1c525a3c7 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 bb1c525a3c7..8fab99806f7 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 8fab99806f7..667eba86e7c 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 667eba86e7c..23aec23437f 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 23aec23437f..afdf27681a1 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 463c397d8cd..48d521e1856 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 afdf27681a1..a2d1b20d3a5 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 8a90de1a4f1..3718c8a3485 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 c6e90c22e0c..a031b68eb03 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 f01a53b53f0..3441571d520 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 fe15956376f..88a6f57929d 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 13fdac78bb2..73d8a9c9722 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 00f96d84fd0..67b581a05da 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 2fec6330cd5..17a6649ddb6 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 e3aead3f438..af53a511ca0 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 90816a1c40d..9987d44ff99 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 eb971f8e404..27fc477b48b 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 1152ca2eb1d..7f23971b429 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 eb125ea64ee..46d9c1c6c6c 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 c644037ea64..83b8906cbb3 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 ff016dec288..d3d99043e10 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 07beb96f64b..8d94958f90a 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 164bf587c12..bfedf4b5777 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 4fb44322c42..c88d22ac9da 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 9b6ce08d562..a8a9b0ae76d 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 20c44d83d6b..19e77f12741 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 d47a538564a..a30f0a31709 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 2bae81308bf..32d039ff17b 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 ee46468ac79..f5115942446 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 063ad92c945..211f3350341 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 62c465271a2..ed003580a46 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 815333c3ef4..d41ab646fba 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 b6252a0f8f1..5b1e57a6443 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 2565c7aa646..e8aa633e6b0 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 42bb79a298e..bad7f54ff8e 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 5ee2aa50670..4202bcede87 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 7c723b69462..b2b6ad1bec6 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 ddc6cf6bb65..f36679d87f0 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 e665ff53aa1..8e5de2da714 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 0010c7a0861..4aa5099f541 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 67e18fc7d09..338f63d885e 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 dfb1f059098..ea188f5a367 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 54a2982d2fb..1360e93381d 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 d1025ae695a..d71735e4609 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 70ad6a2b37a..c56c7025577 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 39eeb6d46ab..704051fb678 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 ceb1a862886..01a43939e56 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 a8446b558af..27e39b977a5 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 be08eb3a9ed..164c9e79768 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 0f3f306b05d..dc39105a5e7 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 065d8718450..248a4552ca5 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 262b2cec28c..db2ab484c96 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 60d3faea4fd..d5e8162d9ac 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 e10335ef7b4..5c3f290a67e 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 386f92d1002..c437a9d11ac 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 9f161a69446..f84626907a2 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 7ffdef7c869..0dc7e5dc83c 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 96a3b038bf0..c4cf2f91af6 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 02939ca19cf..eea893fecb0 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 e16624e1769..4406ce7b6cc 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 3fd2b7f196b..14f93b8eff2 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 fa25aa9b14e..537aa7e9cc5 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 b425c174577..de52b9d5a25 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 6a40d877923..c761ed1efd9 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 20a5e8e39cf..f3657f500e8 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 4b9a7ea7059..26d0ee600cb 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 1628e9fad1a..53c74030dbd 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 bb017db8949..2ad51443ea3 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 05f66c09587..b8513cd97b6 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 37abe3caccb..b31d8481e26 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 fe236b8ee94..1a48973ae23 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 a26dae98093..271c738d01f 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 81819cf6a19..69e53882b1b 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 58782c2d64a..89a8db6f5e0 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 a80df87fa69..ab8b5fadfbe 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 bba770a5453..c22e70ce0b5 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 6ac126c213f..9b53044eef7 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 00f2533ca89..8de7dd8684f 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 b90698dca67..105895a101c 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 52845a98edf..e83776b2f4d 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 3fda98cb9d0..b7b54c71e06 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 48d7917de06..00cc52ccd5f 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 cfef12ba5f4..2f569777b31 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 88b11e4a3b6..35aaea8e906 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 61e1795f73d..0bc6c891d0e 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 9b1650a44db..bd810400736 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 f182d3bc743..d20f019be5b 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 35e9e3ae423..2bc54778f85 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 8d0db741fa9..d5a705b7a47 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 ff75bd76cf6..9df18ea3ed0 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 8204ac2847f..16e746e5c6c 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 89af6d4934f..1767f66a0ac 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 83adcbfa219..a0b27181a48 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 b0e4a29b8ce..9be001b0d6d 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 d62a0342339..112d38dc3c5 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 ec3bdd7d56d..62d64f0e226 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 951c41f84da..6eac77f054a 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 68d2b6e7266..33b46e2ddba 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 717c1541998..c97530b8136 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 658cdb8536d..80d73a7abe8 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 82d7438ad61..c464efc0a97 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 e6712583769..13a77bad726 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 6dee73a77af..7e38d35af56 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 6232fb9e94b..489ca41f189 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 059e8366a42..2e92e22e456 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 550de686a57..3b7165c0148 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 f2e9405d65c..c7cd6fd884c 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 3baad4a8f14..3201c21f9b8 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 8b367fad68a..c1cbed4a1ec 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 e91fe22e2e1..705385ce3b8 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 2412adc0dbd..569ddd5f298 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 e89f354341d..1d738ef5581 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 cd37a7aba1e..bf38a537d43 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 f0c1bb57d6b..2f09ef06dcb 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 1e742c923ea..0d97c65d8c8 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 f1e4fcc2380..5f0af28cc17 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 34d61a1d85f..a3b7d28b1ca 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 a15e0a7deb6..520e259b8c8 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 482fbacec86..755097fbfa3 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 0cde7fec2e4..7e2f05b4fe3 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 bf5fd8ced24..c193cbc0b8e 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 7b0d4451cf5..4f81648e520 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 a87f06ffa54..2ce1e0e8ec8 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 9458ed3bdbf..9572dfdd6de 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 5ea564b0214..1e832a1d67c 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 18ef5b27958..e67b8acbf62 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 de2799c5056..a8b80438057 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 8d152c3e250..7dbb6a4beec 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 ce6e8a04ead..7eef442ab9d 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 66e67c2b58e..bc18dde6661 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 f1d6dbc1070..6800daf9f4c 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 310bb19832f..b7eac5e62ff 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 65259873a4a..0c93f45a7a8 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 da02656440d..88c7de3556c 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 93e02b15071..9b8ed74004f 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 de003e3b961..b09c59d6704 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 418a0b9646c..f0a212e732e 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 00e95cfd8d0..13474ba822d 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 59d4eaf3f8e..e3df271ba1d 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 f8a6fcca230..8b269fed49d 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 3b0e7377494..56c8913edef 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 25e7105bd76..3cf2d0347c1 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 5acb54ff5ad..1b6bdb4fd5f 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 036d7f1cd6d..83002ab4f7b 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 5bb148cbc2c..d6ea52899a1 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 6eb310a2c1b..cf013b95c96 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 1ad48482022..4bf4ca1581b 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 5ea2bba3ffd..e40e11e4875 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 7ac10abbcb2..cad730674a0 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 22c34e68864..5ef61c8cfd4 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 05bbab8ad90..5a730447603 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 ff3af9888a2..b35debbeab3 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 af455687492..6f9bc5c1ec6 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 0e24f27e983..cd3c5c40bc0 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 9b99ed08546..0ac88d216ea 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 d8f74dc22f0..a0b30d9fb01 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 fdc2b1fa1cf..3b683190b95 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 c35bb32e849..c68d4701866 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 72b88f908b7..d3b3018a8b9 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 120165caeb5..16513d74efd 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 d6abaa5967f..360418e9190 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 c3cbc5de08e..354115826d5 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 23a87e823d6..e044c6bf20d 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 7ad804720b8..2e0df96b394 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 d961de548dd..fcf545a9c85 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 974ab5db98d..26cfc5ad277 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 74b5c28823d..2653e688816 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 cadc4be3818..54fc52620b8 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 d596a65542e..df6c709339d 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 b7bf6a769f9..1486d9004eb 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 2a03b8604d5..ca9b80b2599 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 8b7cb4730b9..5c00474f032 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 b98770c3984..56541675e00 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 3be5f9c622a..064b11958d1 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 28139163acd..164ccd5f71c 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 99d1cddf378..c3f64b266ae 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 3e55af2b270..e907f86b9f7 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 49fa9fb18ee..0479c526802 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 ef3e4f6b4de..71cc5a3d905 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 cf4e8e95b2a..34d07dd9d1f 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 7d37ea2f284..6d237686abd 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 de34e9457e7..08f168170c1 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 0bf53544075..309565ead38 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 d9264213599..3a39364461e 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 930d0426648..0f9d5ebc39d 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 4300707cb8e..a9dfd06b9b0 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 a4e05bb53fb..fcb618e9399 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 cdd940d27a2..82bfa29c887 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 be2d44f4951..855361da544 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 e03432f6635..440a6356ea0 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 d66d6a82868..63c3c13dde8 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 e09f5096b6d..c56d6181c54 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 694b0c24dba..288785e46c2 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 b3a591da46f..129ab3e29c6 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 2ff999d46e1..a26369ab7a2 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 e9505c63589..6139d6791e5 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 11212ba486a..36c2422f41a 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 7f9d3d9f2f5..e5dfd4cd1ff 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 baa6c94a5e3..da646a06119 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 5119be176e0..f3064aecda2 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 e9f27bba669..ed7a77df506 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 f7e1597ed17..681da984f28 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 1942bca216a..a2140645b78 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 8b6c3621ee5..f144fa1e744 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 01cec4e33c0..617d7e35216 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 f70053bee64..fe7ec6480e7 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 8abdbc9871c..6aa8da6f32f 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 ea107995e8b..63f8a38010e 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 30b5dc8ff2e..67263c2b245 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 5425b7ffc78..e8f3ba6f62a 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 184a04f6253..544aabb1ad4 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 9fc7ec7fc27..40662709dea 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 cefd8bdee95..54bb3187211 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 5ef0f33c038..eb85430062a 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 1901dcbe8d0..8fddc9bf1d9 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 9279dd8767d..c5f9d0c5dd1 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 04fa7060f46..dc430bf4d14 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 00e385b26f2..3e343602167 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 8e9b39f5dc0..94586fbf40c 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 dbf1b9e4184..ff8a395c396 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 65473f268bd..b34d57328a8 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 352a3a0f563..3b1468ba8a1 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 7cb8a66f016..a2f3d796794 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 0ef0ba270fd..1b0c7ae635e 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 46edfe81deb..59f76f3534c 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 15775aa673e..b808f0f199a 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 16e0eacac76..8d3238385f8 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 a80e107429f..05fdf163d13 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 abf3d00d5c1..c1ca254ef43 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 3abff2eaf2d..f3a184be03e 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 c6dddf3f393..ef4bcec77cc 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 6ec8fef0417..881a2de647d 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 a316a55d721..a6f94383539 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 2add76cf5ae..8a0f3d3f53a 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 fce67d51bf8..bee60e7a313 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 71cbc64d705..5412c33fef9 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 09d09a592f8..86d0cdf945a 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 d1181b9db67..58e08bc169e 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 e4763f41574..7066486ebdb 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 9efe4f432e4..d35367d7644 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 1e3186d1080..d6b6a9ba652 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 71fdd4c7daf..f76f4ff3a7e 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 308d32af16c..7f14878aaf7 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 8831bad30bc..ff09ce5da9c 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 fc0dd6cfae7..c05b1c9c6c6 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 4619deaf2ee..09f836f6ab3 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 061262d6415..5738ace607e 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 fbbeaec4eb0..95f832777de 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 5aeac5a6fb7..f843bc845e1 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 0371f7cd72e..120e91f66a5 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 1d51a99e039..cb45991e6d5 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 c2a37c36303..bc9aff12c4b 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 68d651e73f4..e35eb349d18 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 b4e0bb9ae08..b4f916821f8 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 cd20bf0905e..1dc5daca48b 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 c3befa9be88..0960adbca3b 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 c72b98a6267..79f5da1fede 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 6f3e8a2f64d..b82de7fb722 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 dba270fbd96..906b080897d 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 ecbb5f57511..e959634da82 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 d9bd2a972c5..b01e5bac5bc 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 e27cb70cd75..f6b899c8042 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 203f3ae7686..46158823d4e 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 5a0963ac352..79a370ca22f 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 aae54e6c91c..68898ece605 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 0d2727e2f14..da922bc5d7a 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 1f5af195964..18435e1f250 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 7658c6d2726..4543599a143 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 e76dd08cb39..554a6bbe340 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 28950147979..e56e73160a8 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 d6c1e0803d6..a59135036d9 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 67915cf893b..ec78a0ece1c 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 1dfdb118766..c4023b2e82f 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 c19dda11e49..bedaf696ab8 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 2be895a0bcf..ed797bfdea5 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 3e3267b94ce..929d3911fca 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 0de3a3d8064..f70e73f9ecb 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 811a9fa7e17..44c5cd23a88 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 88174c907fa..881d66c22d3 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 477ef7237a3..6d1b4574d1a 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 f04155c7bdc..0de6d7caa2c 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 3465513c8d1..322a046fd97 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 1a2e1ef447d..64ce30109d4 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 4e71f1daf7a..ad596343f7e 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 ec361557955..c9eb09c43ac 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 21e7d44865c..f415c8b7b1f 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 a969dc67c4d..190d3824ddd 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 ecf36754a8c..5909aaac05d 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 e84fc88279d..95f327614e6 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 40da124eac8..c67d3c4a405 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 3ff847fb0f0..14a28b7e5f0 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 c84d1b6c148..982fb57a8d9 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 2588057d567..0fec32b2ccc 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 6f0e7aad7c9..6cceab3bb9d 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 d162f1c8c16..f2d2a4facc6 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 61490b6cf23..8fcc64ab18c 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 b6e0cf73bc5..e0ace588a7f 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 79d90bc9249..af8ce97212e 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 41ef7653d75..ba8164f4f71 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 d36b31d09ca..c9a2b748a3f 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 27d20c928e6..dcf8107e5e7 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 1b3fabd0d60..653225d03ec 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 422aaf85f46..d4a9009b83b 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 57dd1d36093..13d9374b1a8 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 ecd8744d619..cc41aae8516 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 aab57df4cd3..96dd51fb7fb 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 745111851e3..68f58025f84 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 22e966f8b54..9f8a8b3efcf 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 c462eb309a7..11bb62601b0 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 f0767aad1b7..c3746e2a1e8 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 067ce86ac0c..0f28157fe1b 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 72f3433fa04..a403152e4ad 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 82fa74c2b0e..4d06155ccc6 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 2784d11809d..7752d281778 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 f1b9bf29eb1..f98d4c9f907 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 491d7e83b68..1405d4a2e2b 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 7f36fbde9ad..9e2b5075f1f 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 c962bdcb214..4df92ab94ee 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 21528e37f81..b065718202a 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 0f2557d3e80..89846813d92 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 3f3eb8332f4..c449bf96eb7 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 f97ef67ce1d..3b4d27d66b1 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 05ae4eb504a..155e8cde360 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 33fb848b539..cb4181fda48 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 06d0f5af153..a6eb1ef45de 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 af7df0e2c81..c19e82dbda0 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 fb378d82d7b..14970866c72 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 26891c08405..756a0e2c6a8 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 280be574d14..8ee352afe77 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 fca7e672f34..ee46c6f9648 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 e92f01aac01..71eac19f43f 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 0933766c22d..8f758bca71a 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 ff7f1d0ad65..bfba438eff8 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 244e7a321cb..249cc069fe1 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 fab0d090615..2931c0ebeb5 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 9b93510e315..28b9c18dc19 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 9214bd8016e..8cb360953c5 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 0b9dc1b1c18..004841ecdad 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 e7e4f919c49..8aa3c498654 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 4aa2980a599..bddcb6ef968 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 9ef342d2508..5fc525f1227 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 cf8aba0bb02..cead1733f67 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 6d4f620e891..8e1c531a3aa 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 73460f9f461..77d63dc0967 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 6aa4735f5f6..6a87f105bbf 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 ef5d497485b..67ad1e60d5c 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 156e5ba5b3e..61d7b40ea19 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 dd203c1174d..d8cc823d3b2 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 962449a8897..4a5512d874e 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 20185510516..1d24d3c7e2f 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 6d22375b619..a6aa0509e40 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 079b6a30dbc..b72b019791b 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 471ef2e90a8..2f5fdf5f52b 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 56ea27aa64d..cde4bd2fe72 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 da0220832e4..47381cc6316 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 b11914ce134..1215efd25ba 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 530ee175fd8..14e8275dc7a 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 7773182c3b7..ef605341253 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 99fa3574d2f..832ada0f706 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 80f41d396c4..2a3fc932417 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 c12ce40179f..7bf564a49a0 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 879294fc3c1..1aaf124c8cc 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 531acc5f4fe..bf5db908182 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 d2cbca42327..e509d3a92d8 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 920ea21f42a..71b0644ad41 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 7273db1a8c7..b38d5d7a674 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 a2cd4b88d36..83b37d94994 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 b04c34ca36f..344678eadd9 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 cccac051f19..0578f9aa51b 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 666b8c81152..02c07114568 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 31029f5a911..2722a7c0e8b 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 257cfe11e31..16f42e1ac6c 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 c61bd2b9296..6edac7e3130 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 b6ae06366fa..0791f8879b7 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 c3dc0abd01d..d18bb63a005 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 607a3bbc166..c569c67af87 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 b9d421beddf..55d30b24e30 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 67c47fbda79..87e442e0f50 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 ee68ef40dfc..c20b3df3106 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 f64ec864f0e..e6de17b6634 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 b8c79bb8077..cb21c984b78 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 9de3f6dedd3..42af352186f 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 85ede4e608b..0fc8fd785fe 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 43dfc7d37a8..8f0971afc43 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 c36c7fcc667..ccdfba9b5eb 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 93061558e55..1a47c8b6da3 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 6b82daf913c..ca70d39c310 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 3e65f12b67b..9a1cd878c36 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 cb08d59bdfe..3f1c1fb600d 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 8f3dbdcd6ef..90bdadd9f41 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 1c45a8b58dc..713d0a77217 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 9a3291dad6b..8b1e52f7e28 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 ff92b055532..1c886017c42 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 ea02f844a90..83b7d7a0e2c 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 9a237da51bc..c7ba402ab0e 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 f454c3b0884..69313d6c6ee 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 ab5fc6d212b..65f295ebaca 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 283b917d7dd..f949c6a62c6 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 b663f9300ab..1302cb8f88c 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 78c7981e8dd..0ca6dd20a28 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 36dc29636cc..bca3dff1aaa 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 9f2dbc42556..df6a46e49cb 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 e130f905aa5..5dc4d6a8a9e 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 39c470d29c8..f41b4d31d04 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 0fad985218d..b0c2693ecdb 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 c3976801bfa..9d4c5a02c10 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 9d14e58f416..c8a77a47943 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 942f6548550..fd69f404693 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 4dd9fdfc2af..17309d159ec 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 8f55774b807..26fecf53e0b 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 fdf5055fab6..12878f651f8 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 1b2739626df..821d5a57be4 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 957c84f24be..a283f2b88f8 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 a182762e2a3..2a3d65d1e5b 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 0ac06c7b6cb..f6527a7d749 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 b1f8156ffdb..c0f94ff8940 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 04e544fed84..17eb6f05b6f 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 bab96c2f7ec..1ded1154bbf 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 1ebc994dafa..35b50f4b21b 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 84b2bd1de4b..01aa998bd17 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 e2875516685..ad664f2c7b1 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 f621ecf2181..1dbcf544fa7 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 a766452d681..20e2f534c2a 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 88b9eb87963..282d88bc80d 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 b9076946228..badf96f4be1 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 364ec19f98d..ae4a79dff1e 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 493b1327375..2345e3a9048 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 a29e3fd14f5..3020acc5ee6 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 541fa809da3..ddc6afce45c 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 076ecd8c402..eccf138e300 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 065300500eb..7b02c641919 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 a65df674cb9..1cd1bb15a70 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 e2c786bf69e..cf350ec05ee 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 65130bc8673..bef22321d58 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 bec006510bb..55f493c1a18 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 aa54bac42e2..517ed2b22ad 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 3d0648f5a58..86485937ca2 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 543510719fb..9c24f88e5cd 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 94c0df79e3e..affd247d767 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 6aa17c774ee..73161c6681b 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 8c51bd1976e..21000fa6e03 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 37bde93041a..d7e1c912c36 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 1a616119867..78a9d4a1545 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 b503d1844f4..531c5e4c0da 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 75a66ae433c..62b68d8d5b2 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 bd76a11a386..6ff8efb842f 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 8e2258cc47a..06c591e9b01 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 b9a904385eb..81c52e7d5bf 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 8807165afbc..427e1957e7f 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 e29125e5de7..5e61eb5c823 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 27b3b6b989e..57d4d7e1044 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 068b5c97874..bab3ba59aa6 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 5815404b6a3..488972d3e63 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 02960b167ac..38d2d73ef30 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 c53a5b8f69d..fc7306b09f0 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 4a7aa072d4c..0eda5984b77 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 802771dad3f..aafdce7cb67 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 ec61276c140..7048ccf0ccb 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 69bdbb3b349..5937981390c 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 ccaf217e3f7..5b27a30d2bd 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 f9a4f05bba2..195b76e3f41 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 bcf8bc65482..1aec59f118a 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 7c7cc3d6f86..6ff4dc1a829 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 03f870df355..88a985f4f50 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 6b3bf07f84d..831be417ef7 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 f9e6486c748..97095af583b 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 d3ebdfae683..70cb40229a2 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 f852edaf64f..c8c26f8f761 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 a6e534171ef..d5dd8bf1c8b 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 38601b9c91e..58833c8c5f4 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 7bd5909ca44..7ed58621977 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 415cd779f22..1f6abeb6b3c 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 ab1a51ccbd5..79e5a778ed8 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 fc744974b2e..3a070d59144 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 041a47962cf..e680cf835ac 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 c8d460a20b7..c54d1aa0ae4 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 b024d95d799..c5506e66edf 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 c305885e463..fe99efadb85 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 8431d09324c..11714520c31 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 bb6b0767ccf..e54e6ab8105 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 9dbe65a748c..1c7191b98b5 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 ec6e346371a..4d3e1fe4d9b 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 d89e4461a78..49ffed959ff 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 8aa0bbf240b..ce602c5527f 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 e0e138eb08e..56b6d689905 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 67ddad52da3..388db08141b 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 19907b75811..fc97ae56925 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 58d6ddb9a92..dfd560c57a4 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 3cdcb7381f5..006344d7856 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 525e3c50f31..6221babd398 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 59f793764f5..0ec378051e1 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 e662bb1a145..8a19d02aab4 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 ad310840b8c..d2bd5d3cbec 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 fa2688fd3e9..2999d0a0ba8 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 48334f186b4..5a810047eab 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 86474234c66..fd5fa1e56a9 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 c48e336fc80..fa1c87f15b8 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 4ca9187a76d..1c798121eec 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 b1191e63d74..3866afcc851 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 b1dff0973d5..5610f4db45d 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 ac384682839..1a02f6e87b4 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 9e7b0c6149d..8bd8099270b 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 98461719c9c..f39bf23575f 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 e90a7b93fc3..f7fd81ee579 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 f9d2017c0be..d36873bb84c 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 477137bac38..cf9a0d80d29 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 6dd7cc9a0a2..54443235bfb 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 05d3e9d461f..8f12c7fb15e 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 fc042553910..7f12b8f11e3 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 2ac880c22a3..08dfa5e4fff 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 ee59a1a2e82..302dad9bdc5 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 739ab358ded..e64324185e3 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 a8e33eda55d..fff3cef778a 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 4b003e86602..63ba4cbe144 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 459a8decb75..f8391a08818 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 01c19992bc2..f25059b251c 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 6cea910bd58..abbe2135ccb 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 af7ca4bd0be..43a903f31cf 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 5eef1bce510..fb342a94f73 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 866a9269fb9..9a48e296c7d 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 c818e894a7e..fbcb711c830 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 bd2e25b9ef0..d80adda59db 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 31a5969b1b4..969b9139a9f 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 9a39db9eeaf..4c69b76dbc2 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 f5cc3d2438e..79cd2c8f7c2 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 d9aee240ffa..e4ae4f4a137 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 d4521dd95f7..09f43f32931 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 cb2eeb82314..9616e4ff8b3 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 4ac318f1f4d..f1e5469c0fc 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 125686a62db..b9c8f7e626f 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 22d719b2864..5668ed5042f 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 a951d989a30..236dc0c1d69 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 aef3941ec97..333354a13b9 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 1a340dcb7e5..ff41fb0869d 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 e1138987a66..2a32a7a3fd4 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 769c25d7bff..268fbc29964 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 fdd38e7bb2a..c0668676ddd 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 8a9e237e120..baf25a274b7 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 05f3dc07c4a..ee60aa82a27 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 38c22ea06de..c2ee1e4997f 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 ad42d3f085b..f9ef8e86829 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 824940da583..e78e907cf86 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 dca9692999b..d0475c0263d 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 bf3a34f1472..8732c6518a8 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 ac408786ff6..3e605c59a93 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 43fd6752c4a..ae349bfcd3a 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 9f36393d591..7e68f476a7f 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 a5aa121f930..f6da417c6f9 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 9d6750751f3..71fe69c6aa8 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 950e8929012..3c406109a1f 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 d3639cbab34..cdb690f9a27 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 4bac3254d93..c1d56c4b1a9 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 060e007d339..ebeefd5c7e8 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 c1d56c4b1a9..37dc8eee942 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 d0f4b4a9a0f..a005141ce0c 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 9405ad063e3..6fc6abccefe 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 5fefff57542..29c2a97cdbd 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 17d174df934..dea245d6d28 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 c17302f7bb1..78b347e51fa 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 a3bd703b258..61503db8392 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 7ac540f2130..a660e415925 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 9bd4c96a2bb..17308ef4226 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 b268d3e15d0..0d1190ba222 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 c86ff44e55c..e2db395b1c6 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 1aecfd29968..4ca749e898d 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 951709c4d64..1943b98a750 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 d945f181e6b..0e1fda7c4c2 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 103c3738e2d..efb82288287 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 103c3738e2d..efb82288287 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 a3b86224ac2..470cb2b0f10 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 d792c1588bb..6395d7fc1e0 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 6c67c78c812..61a848bcfe4 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 9d528a3a9d2..29476e1f8c4 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 f63a7cb0ce8..81048a6314d 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 9ab6b83bc7c..aee7b00f185 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 64352801142..d7de5e57f3b 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 4324ee8ff52..8ddf54e4735 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 bb59ef5e445..10dcfa6e3d3 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 a7cd6e8e4b4..4391c6d3f87 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 1cd14a03c72..0cbbe813c4a 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 f475ea0b737..34c502cc5eb 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 578ff35e721..e0431164a53 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 8d0492ae487..ed81efdf8bf 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 d0043df9f07..7f90f64d215 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 7d1bb33923e..342d46edf8d 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 772e084b631..5c4184b33a8 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 4887e935316..e18b4787d57 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 6ddd00ccc3e..1f96b75462a 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 d7e87b5c8d1..eec1a328e1d 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 9df490e81ec..bccd7d50e22 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 f12982fc406..ad3dfd2e67f 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 c4e6dfddc7b..589a82dc6f5 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 7c592723af6..6bae847dc34 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 518fcbe9be5..44ff078493c 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 c79b35c27cd..a87d4653d40 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 2bd1f685e65..3c84ef7104d 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 c495a39dce5..06bf97c4b03 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 03ced5f4aa2..7231d0c5708 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 66887df54b5..2f4d3c95da3 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 ee2aa089125..53f1e1c4209 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 72d2a0c11df..5a935f17125 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 6f94b77ac57..32166b04751 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 dc78e44c8d7..4878c75edde 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 909cbff8a85..7ac7a564c35 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 300bff94d4a..c775d2fb6af 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 00000000000..6b65cf81f28 --- /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 88f24e1e70d..ec7d688b7e6 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 143e0163fd3..aa50c3cb638 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 271edd5524e..aeb2995e6bd 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 0ff523bd673..b3da17ba798 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 570739ce0b6..bf301b11790 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 7968197a198..fb7835eba26 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 6ca4d281c87..6b1239fe45c 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 a09b8919162..482632f3fda 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 0986ba37019..c647850d0cb 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 d45a715025c..008f48b2052 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 7b7b94d88f5..3585fedfb4c 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 2c37a6117e7..4c0a41c5087 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 40f4fdcbdd2..117c0105756 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 44ff8556dc4..338b3ad4b21 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 e259e389c59..15349fb15ab 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 3f4b72001ac..f10b71542d9 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 142433e895a..cb4c0895335 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 1229393095b..ab002ab64e8 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 cb265e13191..afdd91d5f83 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 fb9625febba..62dbe7f5990 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 8c9b6b88ef3..9df7eda1dad 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 c499744a804..5fe8b542223 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 72f775c6bc2..b8573b3624a 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 54863e82ed5..e6683d7aa7f 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 7a1890a7b8f..514ec67db03 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 f046d247c39..877d66a0db3 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 653a0b1b353..d95daaa3a73 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 2d4e728f567..4faf7388b23 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 c404caa57ce..9552891d7d5 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 c76e01fdca0..de89403ee3c 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 4227a317582..7a18acea7cc 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 bfdff351849..614c353929d 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 dfe0cbaeb81..d6d9675d328 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 5e11b19fb2c..df417ea9811 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 8850d50040a..67dbe32ff61 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 ad400aa650a..4440444885d 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 05e0f5ec288..2a6e88b12a4 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 7aef9510be3..57e16456ec2 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 2fc81b31a46..b0afff1ad24 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 bd1160ab790..4a430fb7d2f 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 f88d96f9f9e..293ac9ec119 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 21038a93e88..b27f1c6c985 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 eec2c131475..0cf44ee5829 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 2d9930095da..3b539f7fe22 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 1ffaa42889f..f5d7d933768 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 34a6fefd38d..a85e1bfb7e1 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 a5399584ae4..96e79db700b 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 da537bd1741..392da561bf8 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 53883df9134..0a56af94182 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 7e7b184d4c6..11ebda3af89 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 b27033b80e8..0e0489bf33d 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 b7345a407ee..ebe6c7006ff 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 b4809db551e..237f0bb14bb 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 28a9f9c7e13..a738e137146 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 836f6d75075..3795d2ea6a9 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 9b3053aa39c..86d627e4008 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 0732b2dee5c..1e50b1ae725 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 62bfbe01b34..cf6125d6053 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 740cb7b4502..8e1b7a6cf20 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 88a6f57929d..921fa165ee1 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 73d8a9c9722..e22cfb098b8 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 b995bc145f6..7cbebf8fda3 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 17a6649ddb6..0a888693fdc 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 9184898d5e8..a80e431a19c 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 9987d44ff99..aa9b625bab1 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 27fc477b48b..9a3aca8127e 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 0b90ad151d9..fccc6ae2c32 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 e90a798ccde..5917b8f8bb7 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 21fb9c8c465..34e6bd83127 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 eee36807137..2fc08d8360d 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 46d9c1c6c6c..13edfdc0249 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 83b8906cbb3..7aaf66ca7b1 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 dd4ba2709bf..9c643375db7 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 8d94958f90a..dbc5bcf5562 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 69a9e525e45..3cc605493fa 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 c88d22ac9da..92deef92758 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 a8a9b0ae76d..4a7f01d9422 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 fb9b137fdff..3b2e883a618 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 9efc9d83c92..3d38bde97ca 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 a30f0a31709..e279cde4785 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 32d039ff17b..dd4ebb6b3b7 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 7471eb1c525..42b714102f5 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 211f3350341..8b698752be5 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 10e1fae5e62..ddc80956530 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 d41ab646fba..9e485eed15b 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 5b1e57a6443..dd02b9d2769 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 1768f6474f0..c4bf197ff78 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 6caa7bdae3b..0d0f21131b7 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 3a9f98bd286..bad4a3f4a8d 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 97638318fd7..a93b63ecb96 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 eef2de962a1..cbdfc2891e3 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 b38b4c812b4..28ed4328d56 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 b082622b17f..93f72af7655 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 30c4ba6b0dc..0b2fb73dc30 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 bad7f54ff8e..aac34555592 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 4202bcede87..ab38719c5fb 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 e2777b8716f..89b32ab7191 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 f36679d87f0..8e9b59c8d8c 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 0413ebe2656..0a034d361c6 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 4aa5099f541..8f0c16a184c 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 338f63d885e..9c5766926e0 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 66136ea54af..419fe4b6696 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 e0b689f6ce4..45686d4a146 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 1360e93381d..50d7f22e685 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 40011c68e69..47c4307b1b7 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 d71735e4609..4227fdd775f 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 6edc033c0f3..ae62015fe4d 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 704051fb678..b4e984640cf 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 c5be0d3ff87..86c6b7539a3 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 27e39b977a5..7388ae85b54 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 164c9e79768..66af31d7023 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 420758436b0..8e151213057 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 8afd87394cd..b061c4dbca9 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 248a4552ca5..e197fcbd0f8 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 db2ab484c96..ea87e653985 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 b78faea2bd0..91212135d1a 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 5c3f290a67e..a0e4f492515 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 06daabdd763..769ead91b7f 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 f84626907a2..6fe2d2d9070 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 0dc7e5dc83c..846e20673a1 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 2f567efac8e..d034799f188 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 ba8f83f0f27..86d1e6dc5b9 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 fd930c1c85c..5e2cac3f703 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 4406ce7b6cc..c5b73d5363d 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 65e59d519cd..e61dc2a39fe 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 537aa7e9cc5..af028f0a942 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 32ecd7b0285..e5ef20904f9 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 e271d872b9e..adcd6174e3f 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 f3657f500e8..995c8ac4e18 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 9c0bc594ab8..5a46dae8fe2 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 d489e6a4cd1..3636b2b812d 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 53c74030dbd..5a172d269c7 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 2ad51443ea3..bc0716ec0d8 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 e16b2760f4a..0f29452ce37 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 b31d8481e26..9d50fbf7256 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 122f5804cda..fd94af809ca 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 271c738d01f..461e5e1cf06 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 69e53882b1b..17eb29eaab2 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 ff18551f627..47b68e0fd1f 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 ac56eb09402..0a95dd43163 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 ab8b5fadfbe..990d9f00a26 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 c22e70ce0b5..a417e3dd26e 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 d965b29a4a9..72d4c2c1427 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 8de7dd8684f..692a966f280 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 a1de071d051..cc676a31dbf 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 e83776b2f4d..f4926dad381 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 b7b54c71e06..f0a767b5d6b 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 44670121a4e..31277b46286 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 dc67f52271b..a0dc1318c11 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 2f569777b31..0f2f21822a6 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 35aaea8e906..004720598fd 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 46973c1f603..b3e82b2aa4f 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 bd810400736..0eb87e5d6c4 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 7969c089566..5ef924bc8ac 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 2bc54778f85..3c9cd3b6503 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 d5a705b7a47..a72ca9c73ee 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 3a75e3ceaee..60764100655 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 a5f01d366a1..ad13bf31858 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 9df18ea3ed0..bb2d631f28c 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 54a58af87a3..68dd194f52f 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 055e077694e..22b86eac198 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 69311a25ade..9fd8d7e651c 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 a0b27181a48..83fd2741e72 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 9be001b0d6d..407d841c9bf 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 7db0e1caa98..5c688f14ac0 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 62d64f0e226..f8e726e0cae 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 eaf3a900c66..20673de28fe 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 33b46e2ddba..9256e1b3d3d 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 c97530b8136..746a2452dd4 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 aa3b42b4119..c7675bf3873 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 2cbc07637c2..23a16692f77 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 c464efc0a97..9b94d91b4f7 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 13a77bad726..a3be10d226b 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 eea2fe8af6d..a4b2fba48c4 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 489ca41f189..b732b5dfdfa 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 c534d72bcc8..d9a2c684f60 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 924423ff343..073c110b1de 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 c7cd6fd884c..dd5d2c5861d 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 9b520ddeaae..f6ab60876c5 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 a65823e76a8..8cf6fbf7668 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 c1cbed4a1ec..6df041c248d 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 101e14a78f0..a7dfbddca46 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 154015a0b21..f32e685599b 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 310e8a606bb..3f8df062dab 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 1d738ef5581..fe1e83f89aa 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 e33ad226b1e..41834bca1ee 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 a7e332f6948..9c73b8728c9 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 895a57f888b..87a4029140a 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 752a64616bb..331ef231ba7 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 693dd904791..2d69361d43e 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 a3b7d28b1ca..a3098219dda 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 520e259b8c8..2dcf31ea79d 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 81a1fa5309b..f8e917fc361 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 7e2f05b4fe3..441dd5cd081 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 083478a8b04..4a2b64ac131 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 4f81648e520..f4ac45e73f9 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 2ce1e0e8ec8..4edfe0470e5 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 ee2a1e41f43..21fbf41a04f 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 e303f0dc29b..c6875db3898 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 1e832a1d67c..3f75e5eb8ab 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 e67b8acbf62..c23fcb85cfd 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 478acbb3a41..133f8e466cc 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 7dbb6a4beec..e2207d26778 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 5dc078f41dd..50c3dffa865 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 bc18dde6661..6cb2360246b 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 6800daf9f4c..2025951a777 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 c9297b3ff2e..03f85ec7ec0 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 938be372929..dcf6fa936ca 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 0c93f45a7a8..c4a93b7b4c1 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 88c7de3556c..698af32ac79 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 d16cdbd7142..7bd4d424c63 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 b09c59d6704..21e8e67a7a7 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 64b80e21f23..b4ce54d987e 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 13474ba822d..e5804200239 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 e3df271ba1d..c7259232b56 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 f89e5c1febb..1310a3b5e67 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 4a8e1dd0a5b..dea7f6555af 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 56c8913edef..7bd30bd96e5 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 3cf2d0347c1..68f881f2930 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 01f2e8c1a0f..c0ede15d1c5 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 83002ab4f7b..a9c42c93431 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 979b8f8b6d6..bcef3870266 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 cf013b95c96..e24b48f8aca 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 4bf4ca1581b..5eee7793029 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 03611071936..f38e5770f38 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 f6b49ec2dca..f86db709190 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 cad730674a0..afcf1be4396 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 5ef61c8cfd4..961aaae34d2 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 3f1f4097bc1..3c42afe9a3b 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 b35debbeab3..da615896f21 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 f4843941b81..d45b25eeead 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 a2b28afbaaf..d47cb80cb88 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 0ac88d216ea..2e7b16134e8 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 d1834912d73..eb424f5417e 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 1d019a23ce4..f44bae08756 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 3b683190b95..80f7c70739b 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 dcc1675ec68..3d0bba4e825 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 c68d4701866..354e522831c 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 6e36beaa47d..2ce72a18f00 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 16513d74efd..fcc6a591038 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 491db94ee7a..ca792781dde 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 354115826d5..b5a755560e7 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 e044c6bf20d..56471890341 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 779cbf82bae..68b908ae6eb 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 04152144fd4..43b18f04cbe 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 fcf545a9c85..fa0ec869a2b 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 26cfc5ad277..36954724561 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 d839349d69b..a826e5579df 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 54fc52620b8..74e3329cd6f 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 4145111ff89..72b700c307f 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 1486d9004eb..74cec0f5cb3 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 ca9b80b2599..0e0727ed1c0 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 8d99fe3f582..ac898b74676 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 c1c679b6441..e2bac1aa922 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 56541675e00..06e8e953aa4 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 e8e69c034be..d8eae0f090c 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 712626e49c0..25d78227a57 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 36cf937b321..90b3e540ffa 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 c3f64b266ae..a7f98662b9a 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 e907f86b9f7..0a08bb3d8d4 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 38a1c3e15dc..4fa117375a6 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 71cc5a3d905..311a4b1a6cd 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 4c95564d97d..efe5e6372fa 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 6d237686abd..5ab496870d6 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 08f168170c1..417f61520e6 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 bc4382e068d..b0b3a830c3a 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 7aec7d0ea00..c28736d5c3a 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 3a39364461e..c1113bb3c4b 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 0f9d5ebc39d..3b8388222b0 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 0743b0b4038..ff5825b57a5 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 fcb618e9399..fa82f2a6ff9 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 a5ed2efd69d..24a0e17d835 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 855361da544..c4ab1ce07d7 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 440a6356ea0..2b92e4a7144 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 e2056a92caf..1d74be6d3f9 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 f676687f6ba..23d6a9c882b 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 63c3c13dde8..2ff4367fe12 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 c56d6181c54..c5e94466503 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 d16b2318636..78012b96d68 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 129ab3e29c6..a15430d342f 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 a26369ab7a2..6da1cce0ca2 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 101ab76c34c..497f2fbc293 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 25d5aa9359d..9d520a20a7b 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 36c2422f41a..d6c5b5155fa 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 e5dfd4cd1ff..61d1805892c 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 0dcf323e78f..33db5fbd1c1 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 f3064aecda2..a22069503e5 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 dd91080f435..ec7370ad3ff 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 681da984f28..e074e0346dd 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 a2140645b78..82ef2f4c94a 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 a91b0b25c8c..e9996727a39 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 fb1ff716900..e8ecf4d015a 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 617d7e35216..5f16576376f 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 fe7ec6480e7..bd60cfe56f6 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 ff64ac7f138..8cbea781912 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 63f8a38010e..3effbf5c86e 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 a33a97d24b0..3bf39199ea2 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 e8f3ba6f62a..5be3b767082 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 544aabb1ad4..8b0c6a361c3 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 f4b9d4b50e5..b411106f5f6 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 1573951711c..f4fe7935a44 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 54bb3187211..5ef4e65c5e4 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 eb85430062a..def028c17bf 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 f8777883686..12793501596 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 c5f9d0c5dd1..f19e3ed9886 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 65ba22e236f..dff7adbb440 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 3e343602167..59cce3185ec 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 94586fbf40c..37ca9993e2c 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 a771de8f67c..d6a3dc156d8 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 e05ae36ff18..3205b81c690 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 b34d57328a8..59e6d9b3486 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 3b1468ba8a1..67f9646d14a 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 30378e2e992..0c322007648 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 1b0c7ae635e..faa388150af 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 449983b3b4f..b3cf5e2064d 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 b808f0f199a..9efdab04a12 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 8d3238385f8..cfa61840571 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 342564faf72..d8a8cf5216a 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 61226edd5ee..19ada0a05c4 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 c1ca254ef43..6a1fcd9d75c 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 45a5bfa3437..9b3310cd58f 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 f3a184be03e..f022a39eddd 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 d962b06d227..d5555baf6e5 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 881a2de647d..e89d88e92be 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 eed211faeaa..39d89b19588 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 8a0f3d3f53a..87fa22bdc97 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 bee60e7a313..91de95a1b51 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 9db2784888d..0db6319342d 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 808b9f7d1bf..af6bce82f11 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 5412c33fef9..44be893a8ae 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 f0c2e6ef32b..70bd2c21e10 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 81c25654952..35f97470b15 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 23bfb2f60d9..29272b0268c 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 7066486ebdb..2030de7fef9 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 d35367d7644..0b65726778f 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 7f4cb57b338..26f4931343d 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 f76f4ff3a7e..de54f9267cf 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 713f50b1a79..819c017a223 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 ff09ce5da9c..85b98c49fa9 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 c05b1c9c6c6..bfb02632740 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 275948740f4..88af8f6bf41 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 3fc5ebc24f5..feab760f672 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 771cd4f87ee..535cabb87b6 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 728c6686b6f..e6f0bf56c04 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 5738ace607e..f276c5c238c 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 95f832777de..9635e119c78 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 da417f0abed..60dbbf682f1 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 120e91f66a5..3b7a8e8a121 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 21216376699..1ba39cf7c4f 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 bc9aff12c4b..0b6af45fec7 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 e35eb349d18..af42c12374e 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 07e03e88385..73deb90e44b 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 1163182115b..2f4972fb277 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 1dc5daca48b..66cb431e9c0 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 103a03fb150..f4231bfc223 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 79f5da1fede..284b774976d 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 18041831e54..55c8936b8f4 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 906b080897d..bea61782a25 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 e959634da82..3e489d59a35 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 381e788ea49..14906a0a573 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 a7a53ae7ac1..668d6484498 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 f6b899c8042..b8d01362b0c 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 46158823d4e..6f1540d4bf7 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 f684c8f0862..9d901c290e1 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 68898ece605..41807485065 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 6711dddd445..c1fc826be42 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 18435e1f250..980a0b09c9d 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 4543599a143..3535881acb7 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 1bceab60dbf..20d27db5b44 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 ba6e9978c75..01382950b7c 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 e56e73160a8..a082db3c7c4 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 a59135036d9..fc634a4457b 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 215462c70f8..ff3e427ee3e 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 c4023b2e82f..b41d20f6201 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 455e7b97c4d..3b854844d42 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 ed797bfdea5..bb24553620d 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 929d3911fca..9f54d77d2ce 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 173f9167f2b..401e8edc0f3 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 be14322cafc..b00a7621a60 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 44c5cd23a88..2e1810e6521 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 881d66c22d3..967167caf5e 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 ecef0a29651..2c04bc953c3 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 0de6d7caa2c..cce2df3dd92 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 13cbad8d662..68a4d780a91 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 64ce30109d4..9ad090e0601 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 ad596343f7e..8f0fb1cc984 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 bc468773100..cdc12e2a8ce 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 a89d2245db4..f1c5ef23f8d 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 f415c8b7b1f..757b342b856 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 190d3824ddd..8daed12b604 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 ce37617d0e3..004608cfb52 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 95f327614e6..0bbfd45849e 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 92f4da7820c..e2e0a84ebf6 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 14a28b7e5f0..9ae06683bdb 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 982fb57a8d9..f5597b108c8 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 78f50a5abe4..4f39ddca61f 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 8ce9b1a971f..bf8ecd22772 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 6cceab3bb9d..a68988556ae 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 f2d2a4facc6..8a26d213600 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 1d6bb84a118..9412971f4a4 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 e0ace588a7f..9e792096a59 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 933c4e3443b..bc34cc52505 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 ba8164f4f71..50218ee5c84 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 c9a2b748a3f..87d1374cf62 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 acf08a184c1..57b4d246ca0 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 32b6c525cbb..3214ef545f4 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 653225d03ec..f350b606b79 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 8511cce5519..b377716c120 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 13d9374b1a8..6bdf49d04c1 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 51443b323f3..f89dd9cd9e7 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 c18033b3b24..3f821b96d24 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 96dd51fb7fb..db5dc4229a3 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 68f58025f84..ffaaf976df0 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 61d8ea4c6ec..49724c74991 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 11bb62601b0..340a421ab13 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 a539ed53695..338fbef3dbd 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 0f28157fe1b..3c79b866eee 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 a403152e4ad..d0062cef4fc 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 6228186b672..189cee27197 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 acb376ebaf3..049092f64c4 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 d8b30a63e35..c71f7955bdf 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 343e4a53044..1db98faf6af 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 7752d281778..8f138a098ad 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 f98d4c9f907..f3c693b27bd 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 82c2c7f4a45..ab79220ef46 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 9e2b5075f1f..7d8667d67ba 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 3adb84a8227..01553f9117f 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 b065718202a..d51d2a3a340 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 89846813d92..2133d848fb3 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 9cd0fb7d2e0..20a40d4db7a 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 16da220150f..8319381da8b 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 3b4d27d66b1..a5cd9acfece 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 155e8cde360..90767bd6a95 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 1a4ba6d1b79..037b9995768 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 a6eb1ef45de..14230546f5c 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 b1736ee4ff4..c0bda9dd75d 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 14970866c72..b8c13985ed1 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 756a0e2c6a8..3352574d3da 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 37bb2ea522a..b281d34b07e 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 1e4fa173efd..ef3eed64e3e 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 ee46c6f9648..d3d79661584 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 71eac19f43f..c44fec31d51 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 a9f29afc98c..554d55b4fc1 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 bfba438eff8..0245618772d 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 3cae83316d8..9b3fd029a95 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 2931c0ebeb5..318f9ad1790 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 28b9c18dc19..2c06da0d13b 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 13f4be61602..72a127406ac 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 48bcb2485d6..a43292c1515 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 004841ecdad..f735c536b20 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 8aa3c498654..937887c7392 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 0d27d230bd3..2497aaaf2d2 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 5fc525f1227..885692430dc 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 8d76f3508a7..963b234b1b7 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 8e1c531a3aa..e05160538e5 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 77d63dc0967..008f3097275 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 0f5ded49b50..4b08a260393 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 2faefa6d94f..b98165b3eab 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 67ad1e60d5c..cf6d54133b9 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 61d7b40ea19..d33fbc41fa4 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 d5a177bc6a9..ccde5ad3f68 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 4a5512d874e..223348ceb82 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 c9944de1379..831450d7423 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 a6aa0509e40..f5976d91bb4 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 b72b019791b..a63c5d293ec 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 ef503e227b1..0b37738524a 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 a3eea061065..a18f1d1030f 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 cde4bd2fe72..c62a2704906 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 47381cc6316..8b6e77f5e16 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 ae91ca85db6..1d43a26736d 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 14e8275dc7a..22c5fdc7027 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 b1732385bb0..493323027c6 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 600e4d5d6de..17f654b386f 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 2a3fc932417..241d17ea7b5 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 e7e520a00af..bee54e46dab 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 8af98b2650f..01d8cb23c81 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 1aaf124c8cc..d9e0e54aacf 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 bf5db908182..3bde8e5a399 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 b87f3253177..867e787303b 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 71b0644ad41..04387f57c62 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 8e2c6af7846..0e610d10f49 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 83b37d94994..6212e1df37e 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 344678eadd9..2f396060ca2 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 7c28a3a2af7..79f4ebb8a79 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 4e070e3a8be..4227630bf9b 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 02c07114568..7892b6361eb 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 2722a7c0e8b..2cab74c9daa 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 899a8048c0e..fccec3e5eb1 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 6edac7e3130..e64c1ed9c06 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 e180213766e..ee7c1048472 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 d18bb63a005..2b72d3b7c76 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 c569c67af87..6a881240f7d 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 d6d190c1eac..ad92e25e80d 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 f3175ba4f32..9bb1fa397b2 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 87e442e0f50..9cab9f9da89 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 c20b3df3106..ee4f10fa461 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 18580fb62fb..506e595c508 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 cb21c984b78..85042e4e651 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 d344905ccb4..264f8a19785 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 0fc8fd785fe..6e6f47d41cd 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 8f0971afc43..422a7545108 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 50163948c6c..f9745043cb1 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 dc58b629f00..4910cee063b 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 7eac54f7db7..6704af8cc41 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 0e7b7274843..21946359e37 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 1a47c8b6da3..e3bd2d258c1 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 ca70d39c310..d9396b678e7 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 c327fdcf617..922dddb8226 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 3f1c1fb600d..600a7853b07 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 c892d8c56c4..de33cbb359e 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 713d0a77217..4d125c48f40 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 8b1e52f7e28..364d219f89d 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 b0cb3100e75..584941b201d 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 7ae69876a86..095b3ee65b0 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 83b7d7a0e2c..7bb679f934d 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 c7ba402ab0e..c22fd3c5212 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 3f42c284a8a..8a69883b89a 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 65f295ebaca..35b1696bcfd 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 ccc1be9ff68..884c58f889c 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 1302cb8f88c..df08eb40fae 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 0ca6dd20a28..50becb56bc6 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 1d6f802d7e0..8dadab86877 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 0b5b9d83545..49fc5f074e7 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 df6a46e49cb..a6b80deaaad 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 5dc4d6a8a9e..bc3650b7c41 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 e3721b11f51..4a7653f8f55 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 b0c2693ecdb..218015d5b2d 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 e56165d5a8d..d7e29e83e56 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 c8a77a47943..7378e4e6600 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 fd69f404693..590bd739d50 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 2ffc70b6f16..953547cd591 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 5efac0e07ab..4b34968f4c6 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 26fecf53e0b..3a69685cfde 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 12878f651f8..4a55e5abd57 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 228adbe6d3a..fefeb0e610b 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 a283f2b88f8..096c6b148f3 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 14936fa1baa..1c0236fef4a 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 f6527a7d749..c9821ef5343 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 c0f94ff8940..991dc674231 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 30b3f69adc1..bff29cbe685 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 15bd6c32aa2..9fb4684fc64 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 1ded1154bbf..79afcef0b5c 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 35b50f4b21b..ffcb0cad582 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 6f7269a3705..4e68cf57a68 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 ad664f2c7b1..3b5252f02a8 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 6085ffa779f..d8e01390951 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 20e2f534c2a..76471e7d375 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 8a2eb941c19..7c1b403c83b 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 9fc2cac3c4d..164fe5f2253 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 5c44a0ba7a9..898d3a676cc 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 ea19e432973..4e938730a8d 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 ae4a79dff1e..6d4ca48e41d 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 41ada746829..e5b29c5e8c2 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 3020acc5ee6..fc6b11eaf47 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 97d2a7079cc..cb419af40fd 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 763df6f06c6..c4dd85195a4 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 7b02c641919..591f1b6ca43 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 ec341c54811..0f430e9dfcd 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 602b9985642..1fc1e959455 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 b41a7fe5abf..f37c585e1ed 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 e90dd5f0c93..ad003c96d0a 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 cf350ec05ee..cc9666388f3 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 bef22321d58..f8a32b56b0f 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 c167f663786..02c0c0beb94 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 517ed2b22ad..ba3ed748477 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 3f2dc459e83..5612ea1c41e 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 9c24f88e5cd..6f64b7c3646 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 affd247d767..53aa28a9284 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 fa5d31237c3..143001981c6 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 37d9da6796d..b029d43739a 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 21000fa6e03..344844bd2f2 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 d7e1c912c36..fcd7c413684 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 78a9d4a1545..23be9fa1bf7 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 a2217b3deea..026dcb4ff64 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 62b68d8d5b2..b69ee267316 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 6ff8efb842f..c4abd3a9aa2 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 dac5225d964..e586de734dd 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 4291c5f9cd2..4cc5d8a1562 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 f604c5ab7f6..7ada154ee87 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 b25d7b1be6e..f1280c6fdd8 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 0f3aa2e3b87..6d2cb00c214 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 f0819018fdb..44ae0f186f8 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 93973340b41..d4a0658c130 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 d3319fcae57..06c4f5636be 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 eb9af3a2cc4..8485ec1d576 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 f1535c6616c..32ead9a73c8 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 65bdb898bba..7f00ea271c4 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 23f6153a7a8..524b73e61b5 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 706c9c80f6c..34854022ce3 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 5937981390c..5ca5df46d4b 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 5b27a30d2bd..e1a63967889 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 8b7cd7f126d..38bba9ced08 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 1aec59f118a..caa9199aa35 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 64dd3a295fa..8dda0d2ba84 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 88a985f4f50..32b92fe70dc 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 831be417ef7..7b83afd6a13 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 af83ef0d006..08cda589473 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 e575bf2141b..596655810fb 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 70cb40229a2..b84c841db8e 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 c8c26f8f761..ab193f844ba 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 ce435ee328e..c8a201560ed 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 58833c8c5f4..3f4e14f1dc5 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 7fb73191605..238451832b2 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 1f6abeb6b3c..94c2bab2668 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 79e5a778ed8..2ac30de7252 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 03ee4902c8e..5e69022bb6e 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 133699f4916..af6adeafd56 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 e680cf835ac..56c6570575f 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 c54d1aa0ae4..d54fe25a204 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 e7eea2f10ac..3248b43e318 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 fe99efadb85..3cd295ab1ef 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 27d1f808fb0..30b50f374ab 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 e54e6ab8105..8b1076d95e6 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 1c7191b98b5..e4207bf14bf 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 544a8b946ed..ebca1d6ca9b 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 8ff6c024dd2..1098c8bc126 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 49ffed959ff..452d9e91fd2 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 ce602c5527f..6511bb24022 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 437dbcf322b..98b070502b9 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 388db08141b..f9ee15de2c3 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 f4ba6f67e6a..1a8b9aa5f69 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 dfd560c57a4..588609336d1 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 006344d7856..3eb7f4caecb 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 feb00291cb7..36cc099000a 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 41f51725e2f..93bc08a5f6c 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 0ec378051e1..2cec61850e1 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 8a19d02aab4..e191ed8fef8 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 0585e882128..0642055556d 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 2999d0a0ba8..981a081e202 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 5a810047eab..b582766bf90 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 3082e6561fc..d401530efb3 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 f7e70b55c17..37f161588a3 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 fa1c87f15b8..084d0a29e4d 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 1c798121eec..7a780165dd2 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 71f45b4c853..c45c26f058c 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 5610f4db45d..4e6874e85f1 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 c53e3647947..f5e2fb3d294 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 8bd8099270b..69739ec5dba 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 f39bf23575f..9a2f660aebd 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 e3cb6494d12..bbcb7346fe5 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 56ee75292cb..465edf71a28 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 d36873bb84c..502dec464ba 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 cf9a0d80d29..b367afa6b7c 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 2dad1acb05a..f98b1303485 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 8f12c7fb15e..f63c1f5b142 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 e5cc4ef8031..2279dd688eb 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 08dfa5e4fff..479c5dd89ff 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 302dad9bdc5..be5f8a0d64a 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 60e0c7b0449..0956f14fc26 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 92e25c0bd0e..9d956c72340 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 fff3cef778a..691ac2ec583 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 63ba4cbe144..e4f0b06ab42 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 ffdbcf1771d..f142cbef30c 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 f25059b251c..9415e97b93c 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 4b02e293170..068a0ccc2be 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 43a903f31cf..df20400c47a 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 fb342a94f73..970d6c2f1c4 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 82c49c2fbc2..084e95b9302 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 cff9bd870b0..935fc11c5be 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 fbcb711c830..0c1a73def6f 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 d80adda59db..77431ba10bd 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 7a128218360..aedd063f765 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 4c69b76dbc2..36b8bc1235e 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 c45358fca78..3342b2b1e42 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 e4ae4f4a137..3870242f20a 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 09f43f32931..8593f390699 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 944ff2142aa..7990321325c 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 454540a481b..39005a00b74 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 f1e5469c0fc..4cdfd762d47 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 b9c8f7e626f..6e931e331f1 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 907a3941472..853aa583af3 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 236dc0c1d69..2c430dfe8dc 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 298bf181e36..eab5f5d1227 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 ff41fb0869d..5cfcb1d8893 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 2a32a7a3fd4..e66fa061e33 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 bfb582efc97..5e8abbbb84b 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 a69bc9bed5a..db79ae2b093 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 a1e724aa967..8c25913fc1c 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 00000000000..774f081673d --- /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 268fbc29964..201c15536ac 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 c0668676ddd..3906c2f7187 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 928130f398e..3722d5db0c9 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 f7f53239749..c7846f79b30 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 24f3a099ccf..6c07c9d8b48 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 baf25a274b7..ab9cda4b565 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 9982e9af9a0..b7a6cacc474 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 1abb70f27a6..b415f2990d4 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 f2d7d333589..38ba5629c8f 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 ee60aa82a27..51e8ee95e0e 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 77c6d37fbbe..b2edebe08f6 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 550796c3c79..872e8f971da 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 fb5ee229f15..02da3c3cf2c 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 c2ee1e4997f..3433f56f2df 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 f9ef8e86829..ddff0f328a1 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 f6f4249e68f..4a118eb7851 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 2a139a02562..c58a578cae8 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 5864a392ace..fd6c2090f55 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 9f18bf472ac..b6182cc3080 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 bab1babd938..735274368a7 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 3008873c861..61ece5823d8 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 908a930339d..ec99000b4d9 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 e78e907cf86..2ffa32f603c 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 f48e0bae0ad..99fb14b4dff 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 1531f6a361f..3d852d3b20b 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 5d8445b4b3b..595a75833a3 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 55d957cfa7d..413300abc56 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 29e0661e443..8437c054da5 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 998e4577785..895e1c3e83e 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 e694b627afd..1fcf6ac6c0e 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 d2b51e853f2..ca5a5d8a072 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 c9f7cd8633d..d7b4b81e113 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 6e88d71fe44..67946587e56 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 bb2553e4c67..248fce04eb2 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 aca20f15e5c..ae52b170867 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 01a0e6501d5..17a073c1c69 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 145c4b07a4d..50218b341e0 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 91a910baf62..3226a17ee99 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 b97d27adc65..93900c71029 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 dea245d6d28..7d17a0adc60 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 a660e415925..339e4dbe688 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 81048a6314d..35ed8a1969f 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 4391c6d3f87..1c1e0899b1d 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 0cbbe813c4a..703cc71489e 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 342d46edf8d..086f8ad2ea9 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 a87d4653d40..481b7710946 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 608f26bc861..490bea9b170 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 ec7d688b7e6..67cf0aca9d6 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 aa50c3cb638..fbb778aacd3 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 aeb2995e6bd..6158a356dc7 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 482632f3fda..0c590d0b758 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 3585fedfb4c..24e5a41fd0d 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 cb4c0895335..583fb73e57f 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 ab002ab64e8..1095507673b 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 3eb556e9f63..80a34094b27 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 62dbe7f5990..1e74fa7e062 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 e6683d7aa7f..a06283cf411 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 514ec67db03..5119330264f 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 877d66a0db3..6674106f1d7 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 1902e450613..ab46b13a500 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 dc07acb110a..dbe7a34de34 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 4faf7388b23..673ee83dca0 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 9552891d7d5..b8bfe74c377 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 df417ea9811..c28dead76dd 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 2a6e88b12a4..9e1f76e4c0e 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 57e16456ec2..028f5f3e561 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 b0afff1ad24..77c27b641d1 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 0cf44ee5829..29febc283b7 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 96e79db700b..68abe9bd154 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 e593018aaad..0770805ddf5 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 392da561bf8..83642ed89cb 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 0a56af94182..f6112040c50 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 237f0bb14bb..b4cc129964b 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 a738e137146..29fef5ff220 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 3795d2ea6a9..0270e921e34 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 86d627e4008..73416e65a48 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 1e50b1ae725..e24556c3a6e 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 8e1b7a6cf20..0cf200f5bfd 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 921fa165ee1..196a1274fae 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 e22cfb098b8..f64e78c0313 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 7cbebf8fda3..8f8d99e6a45 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 0a888693fdc..60c4f650954 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 a80e431a19c..dfedde4314c 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 aa9b625bab1..beceaa0af9e 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 9a3aca8127e..9b4499dfa60 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 2fc08d8360d..d306ae36a8e 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 13edfdc0249..a30f6384850 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 7aaf66ca7b1..ee0314159a0 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 9c643375db7..388d262eaa2 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 dbc5bcf5562..52d0895e4f7 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 3cc605493fa..41e23ac79ad 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 92deef92758..267ff6cfb64 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 4a7f01d9422..a15be96af1c 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 3d38bde97ca..fae0c1c3976 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 e279cde4785..a69e64f8f0d 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 dd4ebb6b3b7..598a72580a6 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 42b714102f5..608f23918a0 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 8b698752be5..5c4fe402baf 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 ddc80956530..ffde1bf1957 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 9e485eed15b..98d92b75466 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 dd02b9d2769..0734dc0f63f 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 0d0f21131b7..db6676e5607 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 bad4a3f4a8d..b22e1f9ad5b 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 cbdfc2891e3..92a183fe213 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 0b2fb73dc30..857802d29a1 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 aac34555592..bde57a7a9a8 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 9fa8290105b..6634d4057e5 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 ab38719c5fb..723084bfb63 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 89b32ab7191..fd5439dce25 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 8e9b59c8d8c..6dbc5db3485 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 0a034d361c6..3cd76609313 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 8f0c16a184c..d3ae93dbd48 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 9c5766926e0..e5529ecd921 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 419fe4b6696..ca202c2dd79 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 45686d4a146..8d47b1391c3 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 50d7f22e685..fba844fb098 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 4227fdd775f..b9148c20cd7 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 ae62015fe4d..8da6fa0b0e6 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 b4e984640cf..e9db011f220 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 86c6b7539a3..27c2cdc59be 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 7388ae85b54..8580a5f0869 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 66af31d7023..6079b06f9ec 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 b061c4dbca9..533021befcb 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 e197fcbd0f8..e55b8a449ff 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 ea87e653985..9509af8d423 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 91212135d1a..37465bc756f 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 a0e4f492515..242235a9264 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 769ead91b7f..2694a881fcb 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 6fe2d2d9070..2c267c8a218 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 846e20673a1..97d2f101afc 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 86d1e6dc5b9..21914ea6fd5 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 5e2cac3f703..d1b2159b120 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 c5b73d5363d..bfbb739a34e 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 e61dc2a39fe..40a19354031 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 af028f0a942..adcb817ff74 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 e5ef20904f9..dcd8a5c8e03 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 adcd6174e3f..48ac705fae8 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 995c8ac4e18..09efad74729 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 3636b2b812d..009f5a4356e 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 5a172d269c7..89a10dbea33 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 bc0716ec0d8..f38837c5899 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 0f29452ce37..370b589ae70 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 9d50fbf7256..9142337f370 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 fd94af809ca..b5f8d58a769 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 461e5e1cf06..fa4d9f8febe 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 17eb29eaab2..800dd5c880e 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 0a95dd43163..a0d41ca5d32 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 990d9f00a26..972ada81590 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 a417e3dd26e..9a82e2510f5 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 72d4c2c1427..19b18cd92cd 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 692a966f280..3a830675157 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 cc676a31dbf..5e7ea9ace35 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 f4926dad381..34cacb91037 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 f0a767b5d6b..b77d80d49bc 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 a0dc1318c11..f7fa53bace4 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 0f2f21822a6..54a8fa6f7eb 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 004720598fd..1d8b6addbb2 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 b3e82b2aa4f..94a8874dccc 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 0eb87e5d6c4..7f3d43db528 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 5ef924bc8ac..5f130caa472 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 3c9cd3b6503..bb7f49e3eee 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 a72ca9c73ee..4f5f778e6dd 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 ad13bf31858..9ac94509680 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 bb2d631f28c..928ebc78fba 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 68dd194f52f..dd710a4e8c1 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 9fd8d7e651c..17c9adc3f3f 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 83fd2741e72..f1d26fc6843 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 407d841c9bf..6e88aa17a33 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 5c688f14ac0..86f8e5b7a89 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 f8e726e0cae..12705a0eb6a 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 20673de28fe..a3989d47dfd 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 9256e1b3d3d..ac9edad2479 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 746a2452dd4..020acdd9be2 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 23a16692f77..1c587f8af5a 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 9b94d91b4f7..08306f77d6c 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 a3be10d226b..77c7ba2fc80 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 a4b2fba48c4..bb9db8bd0ef 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 b732b5dfdfa..76c3565dca7 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 d9a2c684f60..340cba90f43 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 073c110b1de..77690a9f4d4 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 dd5d2c5861d..f3250916430 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 8cf6fbf7668..b8740f3f2e8 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 6df041c248d..a75b9383e26 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 f32e685599b..20949cf2878 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 3f8df062dab..0576a29a51a 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 fe1e83f89aa..48e7375515f 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 41834bca1ee..644592c62da 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 9c73b8728c9..a2bf733c789 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 87a4029140a..bed6b973384 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 2d69361d43e..686a92cfaad 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 a3098219dda..79e2a633607 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 2dcf31ea79d..483f59c8b55 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 f8e917fc361..eb1af6f163e 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 441dd5cd081..cf634832572 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 4a2b64ac131..57a487e219d 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 f4ac45e73f9..b4c08926a6f 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 4edfe0470e5..14790911730 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 c6875db3898..26d9890644d 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 3f75e5eb8ab..9b97745e172 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 c23fcb85cfd..9351a63a576 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 133f8e466cc..56ba4409d23 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 e2207d26778..a0606ddfe36 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 50c3dffa865..2092aa29bc8 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 6cb2360246b..b0f2ca85af2 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 2025951a777..ed657aef384 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 dcf6fa936ca..931bb334850 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 c4a93b7b4c1..6a9b4282efe 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 698af32ac79..db895d92111 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 7bd4d424c63..0764b5c9563 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 21e8e67a7a7..f95fe325f92 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 b4ce54d987e..0e0632f3c9a 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 e5804200239..66691911c61 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 c7259232b56..fed06627be5 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 dea7f6555af..15cbae4cca9 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 7bd30bd96e5..e6d9704a051 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 68f881f2930..074972fd566 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 c0ede15d1c5..5bbe728ed86 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 a9c42c93431..dbc448f472b 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 bcef3870266..ae1d41b126c 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 e24b48f8aca..1578bccd5d9 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 5eee7793029..2704b7c3643 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 f86db709190..7c89205a0f5 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 afcf1be4396..31e25e5b1d0 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 a3440d23415..9cb45f9e493 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 961aaae34d2..91fc0353edc 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 3c42afe9a3b..ea6d2e22698 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 da615896f21..929158a6ffa 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 d45b25eeead..5cc2d8804e0 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 d47cb80cb88..d67de6a9a5c 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 2e7b16134e8..01335faaf2c 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 f44bae08756..4014209b16d 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 80f7c70739b..32a71a685e2 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 354e522831c..5ec3e9fec8b 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 2ce72a18f00..4597925f91b 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 fcc6a591038..794428f9277 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 ca792781dde..3b2f40480ce 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 b5a755560e7..7fda502a379 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 56471890341..00ee54a0b89 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 68b908ae6eb..d92c173664b 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 43b18f04cbe..cd2e422728f 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 fa0ec869a2b..775b8607fdb 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 36954724561..8f408e0c8cc 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 a826e5579df..b3ca74cc28a 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 74e3329cd6f..0a2f0890868 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 72b700c307f..f95f5bd4d1a 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 74cec0f5cb3..5d95c144fe2 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 0e0727ed1c0..2e0c7da2edb 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 e2bac1aa922..cc4cb82e0e9 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 06e8e953aa4..73df48a9565 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 d8eae0f090c..f18ebbbfabb 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 90b3e540ffa..cff5748714e 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 a7f98662b9a..044c3ffd8dd 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 0a08bb3d8d4..2eaaccd770f 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 4fa117375a6..d98e70ae046 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 311a4b1a6cd..f8cc9e3e8ce 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 efe5e6372fa..d25aa1446e1 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 5ab496870d6..78f830eaff6 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 417f61520e6..e72455ab6df 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 c28736d5c3a..1e1c346145e 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 c1113bb3c4b..fd2eb039c81 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 3b8388222b0..67c15616aa8 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 ff5825b57a5..a360d5e25f6 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 fa82f2a6ff9..b12ac94677a 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 24a0e17d835..15fff2ed2c3 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 c4ab1ce07d7..cdf00c6e4bf 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 2b92e4a7144..0cee2e17aa0 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 2ff4367fe12..7d196d4f2a6 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 c5e94466503..e68a595a3f9 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 78012b96d68..6fbc99cb703 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 a15430d342f..c12ace6d2cf 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 6da1cce0ca2..89e69768ca8 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 9d520a20a7b..85839d91e22 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 d6c5b5155fa..daf64e748ff 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 61d1805892c..2998354b7a1 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 33db5fbd1c1..c40b91f1ff2 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 a22069503e5..7e069ffa022 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 ec7370ad3ff..fbdf7c49983 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 e074e0346dd..1db5ecfbf58 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 82ef2f4c94a..5c6ded8f137 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 e8ecf4d015a..ac236e48252 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 5f16576376f..efd189b93bd 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 bd60cfe56f6..e4011aa7b27 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 8cbea781912..3a5fbba256c 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 3effbf5c86e..0882e13f42c 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 3bf39199ea2..09525b5ea1e 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 5be3b767082..dd6d8fbb628 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 8b0c6a361c3..a4ddd598652 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 f4fe7935a44..8329f2a43b2 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 5ef4e65c5e4..c50a720a77c 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 def028c17bf..ff84e6c25f0 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 12793501596..59c23a85398 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 f19e3ed9886..a11ab01f668 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 dff7adbb440..976231036a0 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 59cce3185ec..e7389d6b8e3 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 37ca9993e2c..bb05549726d 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 3205b81c690..630aa96af45 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 59e6d9b3486..ed9af108b7f 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 f71f06e059e..e92fab7b94b 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 67f9646d14a..7a10ae3b5f0 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 0c322007648..1ec88aebe8f 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 faa388150af..e1acbb3a888 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 b3cf5e2064d..6b9006f3af2 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 9efdab04a12..16f0a72cae8 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 cfa61840571..99ec3b6f31a 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 d8a8cf5216a..1454f5effb4 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 19ada0a05c4..27d19d237e4 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 6a1fcd9d75c..2eb1d3deacc 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 f022a39eddd..39185f26ca5 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 d5555baf6e5..3b74d2dceb7 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 e89d88e92be..7fa26aaa712 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 39d89b19588..25576b17e2c 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 87fa22bdc97..64a3276c59e 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 91de95a1b51..80ea960cec6 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 0db6319342d..a72b7381244 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 44be893a8ae..5be6e2d4d85 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 70bd2c21e10..2550c7febbc 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 29272b0268c..3e36d9314da 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 2030de7fef9..52d6359d453 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 0b65726778f..7a8adaef473 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 26f4931343d..985a9aa21d6 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 de54f9267cf..ad4ec649b7a 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 819c017a223..21cc679eb61 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 85b98c49fa9..e7e3657ed9c 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 bfb02632740..72bcd83c9d5 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 e6f0bf56c04..7058c736d8d 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 f276c5c238c..ca638cf9318 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 9635e119c78..f956ff2d5d4 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 60dbbf682f1..951d125cc9c 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 3b7a8e8a121..407c0cf9c25 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 1ba39cf7c4f..28cf81f5b36 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 0b6af45fec7..70e5121c2b5 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 af42c12374e..41d97d04774 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 2f4972fb277..4942237c5a1 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 66cb431e9c0..7846887ab0f 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 f4231bfc223..b3362745b2c 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 284b774976d..a9960367e80 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 55c8936b8f4..1a2dd0ff02d 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 bea61782a25..99177f7f973 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 3e489d59a35..b42f9c2a8ab 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 668d6484498..9d2326a0ab2 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 b8d01362b0c..b0499ff9f43 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 6f1540d4bf7..1410b0069b7 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 9d901c290e1..b9a0db81894 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 41807485065..a9fa6ff8104 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 c1fc826be42..534ae1898c9 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 980a0b09c9d..750ddbd2639 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 3535881acb7..64b70edc202 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 01382950b7c..56f947d806a 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 a082db3c7c4..21de951970b 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 fc634a4457b..fdb7c9dba07 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 ff3e427ee3e..5640140a27b 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 b41d20f6201..a9743128560 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 3b854844d42..183c7b657f9 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 bb24553620d..504fadcbba4 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 9f54d77d2ce..17a14dd19ac 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 b00a7621a60..f0b55605bd0 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 2e1810e6521..c86cfd8925b 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 967167caf5e..7bd1a0c2af8 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 2c04bc953c3..51b337c47bb 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 cce2df3dd92..ef02982ae04 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 68a4d780a91..5bfd15ca866 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 9ad090e0601..d499d8d9499 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 8f0fb1cc984..bf2c11af456 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 f1c5ef23f8d..07871e2ca0e 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 757b342b856..73d0469bdb8 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 8daed12b604..59ed1f8f8f9 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 004608cfb52..99a985e16ab 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 0bbfd45849e..6b647a2e414 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 e2e0a84ebf6..73256d364ab 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 9ae06683bdb..774f963ceb5 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 f5597b108c8..a9ea2428a48 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 bf8ecd22772..424c93c1ab9 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 a68988556ae..d044cd7dc59 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 8a26d213600..fb89a676032 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 9412971f4a4..e813dd7535b 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 9e792096a59..c2507795f36 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 bc34cc52505..c86c39650fe 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 50218ee5c84..8b8715ff915 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 87d1374cf62..a73c6efa3da 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 3214ef545f4..bcfc209d2ac 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 f350b606b79..74bb6512853 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 b377716c120..0417afa9255 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 6bdf49d04c1..e386aec2604 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 3f821b96d24..527d6b52d08 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 db5dc4229a3..16d6e752ea3 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 ffaaf976df0..fabf1527620 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 49724c74991..7890efa637e 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 340a421ab13..a8c075e09f1 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 338fbef3dbd..2d4f80e0638 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 3c79b866eee..ab3e7ffafdb 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 d0062cef4fc..5dab4289bdb 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 1db98faf6af..6c40923c99c 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 8f138a098ad..674e2a8d7b4 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 b37a3a6376d..a2c16d01202 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 f3c693b27bd..46102e0e706 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 ab79220ef46..5ca36b55d67 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 7d8667d67ba..61996dac984 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 01553f9117f..b10b94f2be0 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 d51d2a3a340..ea01c56ee8e 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 2133d848fb3..f894315217a 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 20a40d4db7a..16a063e349f 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 8319381da8b..cbde299521c 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 a5cd9acfece..9672e6f7e32 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 90767bd6a95..a81ba3774ac 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 037b9995768..0e5fb7ce7bf 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 14230546f5c..58a84858fb8 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 c0bda9dd75d..66b86a8172f 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 b8c13985ed1..fffaad9f564 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 3352574d3da..0c26e108374 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 ef3eed64e3e..75b0b16d2f5 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 d3d79661584..685f53f7064 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 c44fec31d51..fcaae7d1a07 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 554d55b4fc1..917722fb48d 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 0245618772d..02ebc74512d 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 9b3fd029a95..e5117d3f15d 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 318f9ad1790..74a5426f4c2 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 2c06da0d13b..5d5c54d811d 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 a43292c1515..d9741def080 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 f735c536b20..251aac6aba6 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 937887c7392..4ce57898a85 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 2497aaaf2d2..67304dbfc86 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 885692430dc..28c5125fae9 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 963b234b1b7..a9bbca8b1b1 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 e05160538e5..0c07fdc7955 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 008f3097275..309f935377a 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 b98165b3eab..94fa011c84a 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 cf6d54133b9..5878c98c6a4 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 d33fbc41fa4..d332b1bd207 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 ccde5ad3f68..8f45597b3a1 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 223348ceb82..6efe4da14c0 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 831450d7423..88bb3babbe5 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 f5976d91bb4..9bf886fd503 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 a63c5d293ec..8b78fbdba3a 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 a18f1d1030f..5988aae2bc5 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 c62a2704906..d0abaf4cc59 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 8b6e77f5e16..d1b910c8f80 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 1d43a26736d..936236919c8 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 22c5fdc7027..f6f6cff5bcb 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 493323027c6..3acb3ca1f53 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 17f654b386f..9a23a3c7e4e 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 241d17ea7b5..3de4e6c04db 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 01d8cb23c81..c0feb35a2de 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 d9e0e54aacf..df6d192dba9 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 3bde8e5a399..de7972a076f 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 867e787303b..399d35fd016 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 04387f57c62..4367d933617 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 0e610d10f49..1ace9239afc 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 6212e1df37e..f372c25ae93 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 2f396060ca2..b0ed1189e50 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 4227630bf9b..d8bc6df7678 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 7892b6361eb..6f88f340023 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 2cab74c9daa..0ca91d201dd 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 fccec3e5eb1..c73f104fb04 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 e64c1ed9c06..c93789b54c9 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 ee7c1048472..1c3861a36fa 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 2b72d3b7c76..3e370665cea 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 6a881240f7d..0a4f8db8fb6 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 9bb1fa397b2..b134012933b 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 9cab9f9da89..2517d43a2ac 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 ee4f10fa461..2b19f8c1e32 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 506e595c508..3eba05e8ae5 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 85042e4e651..3d056e4338a 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 264f8a19785..53678e3855a 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 6e6f47d41cd..ae906f9a482 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 422a7545108..76d14f2437e 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 21946359e37..5265ff65429 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 e3bd2d258c1..bb9920f0e80 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 d9396b678e7..d22be0619f8 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 922dddb8226..78308949642 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 600a7853b07..9853b073346 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 de33cbb359e..d1e0123096c 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 4d125c48f40..8e4097b0140 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 364d219f89d..14a021b36ed 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 095b3ee65b0..4c2f47b70d8 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 7bb679f934d..b2fe503eeee 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 c22fd3c5212..a4ed4aae6a4 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 8a69883b89a..aa1c40367a4 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 35b1696bcfd..9fa91096ceb 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 884c58f889c..23f91d5b1d4 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 df08eb40fae..caff6c3d0b6 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 50becb56bc6..3b8d5345fd1 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 49fc5f074e7..1c8255c6494 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 a6b80deaaad..cbf99f0a954 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 bc3650b7c41..7c8144b37e6 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 4a7653f8f55..0ac145021e3 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 218015d5b2d..5df22d1ccd5 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 d7e29e83e56..7ad4f6ecf19 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 7378e4e6600..aa3279ee081 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 590bd739d50..a4b802b8bca 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 4b34968f4c6..a50656665f1 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 3a69685cfde..b33c7aa315e 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 4a55e5abd57..6576f0c1072 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 fefeb0e610b..45cf9b3c132 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 096c6b148f3..0d0b002e3fb 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 1c0236fef4a..68f2ca7c1a5 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 c9821ef5343..762059683c8 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 991dc674231..216ad8242d4 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 9fb4684fc64..68d60ad2bd1 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 79afcef0b5c..7fbd9444dcd 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 ffcb0cad582..d8ae4a95644 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 4e68cf57a68..073ad050b63 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 3b5252f02a8..eee1a0f967f 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 d8e01390951..fcc50017bec 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 76471e7d375..d2cdbaee343 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 164fe5f2253..87a94986ce1 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 898d3a676cc..23d25d7edc2 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 4e938730a8d..65010140e99 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 6d4ca48e41d..b8446c7d755 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 e5b29c5e8c2..c735c8dc383 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 fc6b11eaf47..0c012d38c4f 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 cb419af40fd..fd232283db9 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 c4dd85195a4..77d0875c460 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 591f1b6ca43..52c9e61b9b4 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 0f430e9dfcd..e8848e9ada1 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 ad003c96d0a..af3fbc3b5e3 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 cc9666388f3..87fc598cf4f 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 f8a32b56b0f..9a0940e14e9 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 02c0c0beb94..84ea6e5f5c4 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 ba3ed748477..b5e5d048160 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 5612ea1c41e..492ced41da1 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 6f64b7c3646..c1c94fa86be 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 53aa28a9284..2a1eee39158 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 b029d43739a..31c7ad86425 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 344844bd2f2..a1f83666ae6 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 fcd7c413684..c49ba9b54a1 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 23be9fa1bf7..a7851eaaa92 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 026dcb4ff64..c034ef64473 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 b69ee267316..0152112dbc8 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 c4abd3a9aa2..a02eea036e1 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 4cc5d8a1562..07f903727f6 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 7ada154ee87..9b7c997381c 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 f1280c6fdd8..f53a68116cb 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 6d2cb00c214..6faf82b0c30 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 44ae0f186f8..51602e6b27f 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 d4a0658c130..4c42ebd3463 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 06c4f5636be..c9c8107752d 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 8485ec1d576..e8d2f50ad4a 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 32ead9a73c8..887bf4775ff 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 7f00ea271c4..b984f9962da 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 524b73e61b5..38c983d62b5 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 34854022ce3..3d455135674 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 5ca5df46d4b..ab252c8357f 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 e1a63967889..713406d8a1a 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 38bba9ced08..0a5fb732b0b 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 caa9199aa35..4d7adac4b5e 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 8dda0d2ba84..dc6792225b6 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 32b92fe70dc..39f6353b478 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 7b83afd6a13..ebf479c2fa3 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 596655810fb..b676faa8585 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 b84c841db8e..31ce56a45c5 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 ab193f844ba..a4767b70d79 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 c8a201560ed..689814dbe91 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 3f4e14f1dc5..af57b339d31 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 238451832b2..39556e36ced 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 94c2bab2668..430ffc84bbd 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 2ac30de7252..9d2aa6c652c 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 af6adeafd56..8f1320989dc 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 56c6570575f..5e3f8d76670 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 d54fe25a204..cb27f994724 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 3248b43e318..4bcd67b5e2d 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 3cd295ab1ef..ef2a058ac52 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 30b50f374ab..cb177a4009c 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 8b1076d95e6..7b823bfa10a 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 e4207bf14bf..c36236f8211 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 1098c8bc126..884a67eb26c 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 452d9e91fd2..c6d041adf0c 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 6511bb24022..6628a6d585b 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 98b070502b9..b54d81afa20 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 f9ee15de2c3..f5768a10cde 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 1a8b9aa5f69..a4b2dc6a236 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 588609336d1..1e5a9d769f5 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 3eb7f4caecb..ce1d30114bb 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 93bc08a5f6c..a0ef6c7c8e4 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 2cec61850e1..a42735e3d5f 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 e191ed8fef8..eb4adffd41a 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 0642055556d..354666fd3bc 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 981a081e202..9cadab05a97 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 b582766bf90..f5b83efd5d0 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 37f161588a3..eb633bfa0d4 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 084d0a29e4d..0ffc9381ba9 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 7a780165dd2..7e10a558ca4 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 c45c26f058c..60955175cd6 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 4e6874e85f1..fafd5b4db3a 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 f5e2fb3d294..98e450ed86a 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 69739ec5dba..a130cbf03e3 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 9a2f660aebd..014a2ef8d98 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 465edf71a28..7cc1685f3e0 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 502dec464ba..274a79d4acf 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 b367afa6b7c..2cd794bddbf 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 f98b1303485..36aed00e4eb 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 f63c1f5b142..224108e6e6a 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 2279dd688eb..6830c078d9a 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 479c5dd89ff..19570f393e5 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 be5f8a0d64a..44b63e04ddb 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 9d956c72340..61eb7839db1 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 691ac2ec583..2ad7c3b8c5b 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 e4f0b06ab42..f697f932745 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 f142cbef30c..75565fcca20 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 9415e97b93c..8c4c7c1e7dc 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 068a0ccc2be..7b05c66d1c2 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 df20400c47a..9a5522594df 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 970d6c2f1c4..2ee0effbe1c 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 935fc11c5be..65c94189b6a 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 0c1a73def6f..7b70e6402cc 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 77431ba10bd..2a3fe10cd6e 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 aedd063f765..1f5c487164a 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 36b8bc1235e..24866b8c4de 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 3342b2b1e42..b51d846c4b8 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 3870242f20a..96ac4d1362c 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 8593f390699..3d27b56d9e7 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 39005a00b74..b5ade0c6f7e 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 4cdfd762d47..156fe3e85c8 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 6e931e331f1..8a5ed49049a 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 853aa583af3..b2867706731 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 2c430dfe8dc..9de34c125a7 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 eab5f5d1227..a2aa55aed45 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 5cfcb1d8893..3d99d62da3c 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 e66fa061e33..c7eb0f4c43f 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 735274368a7..a2df948d13e 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 336e8f8b3c5..6acb0dfaa6b 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 0875872e9d2..5ba3e36b1ac 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 50218b341e0..24bb81e8cfb 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 efb82288287..18c87794d65 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 29476e1f8c4..e7fad26287c 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 fbb778aacd3..f3b4cd49bfe 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 008f48b2052..93d644c01ed 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 f10b71542d9..bc5d9e8cdde 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 73416e65a48..103e03a9ca1 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 e24556c3a6e..216f769e9fd 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 0cf200f5bfd..b7556553c2f 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 196a1274fae..b434ce6ef68 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 f64e78c0313..0ad52f5d755 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 8f8d99e6a45..c11f2cdbdaf 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 60c4f650954..beefc4ec294 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 dfedde4314c..c1d27d48e2a 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 beceaa0af9e..2cdbc4493aa 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 9b4499dfa60..3ae7b1ec2f6 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 d306ae36a8e..e8157d68d02 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 a30f6384850..77588b9856d 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 ee0314159a0..c2f7261ee6b 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 388d262eaa2..bc8c52dbefd 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 52d0895e4f7..5e0d5e94304 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 41e23ac79ad..d2410451f83 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 267ff6cfb64..ea1915953a5 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 a15be96af1c..d75efc118fb 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 fae0c1c3976..3e32d3a390b 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 a69e64f8f0d..7e855372cc8 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 598a72580a6..0f351b2fe58 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 608f23918a0..942936ca66c 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 5c4fe402baf..80abfc9e661 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 ffde1bf1957..bed4b8da61a 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 98d92b75466..1734f313ffb 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 0734dc0f63f..0ddbb185396 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 db6676e5607..22c808424a8 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 b22e1f9ad5b..e13d674a9c2 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 92a183fe213..1136da20499 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 857802d29a1..596fa81c739 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 bde57a7a9a8..2627e21034c 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 723084bfb63..8e2160226e0 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 fd5439dce25..6f80f22c204 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 6dbc5db3485..4b4a9918961 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 3cd76609313..177bf871572 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 d3ae93dbd48..638442adba3 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 e5529ecd921..a9bf9278b78 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 8d47b1391c3..6d77cbcb0a7 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 fba844fb098..7d4c0a8d62e 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 b9148c20cd7..de30f1170d6 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 8da6fa0b0e6..0df7ac3b901 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 e9db011f220..dbb756daba1 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 27c2cdc59be..8d4ae5ea7c0 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 8580a5f0869..8108e7abb84 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 6079b06f9ec..a040da8991e 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 533021befcb..f325280db0c 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 e55b8a449ff..2b4ed6bc2e2 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 9509af8d423..bbd6b29c6b4 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 37465bc756f..cf65ee9c3ac 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 242235a9264..9ab1d6dd21d 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 2694a881fcb..0b3e1bda1c5 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 2c267c8a218..696ba1f5a84 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 97d2f101afc..31a18c2cc70 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 21914ea6fd5..89b1611e620 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 d1b2159b120..6e6d862f456 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 bfbb739a34e..8b03cf6826f 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 40a19354031..56efb331469 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 adcb817ff74..0f0890fcc99 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 dcd8a5c8e03..780b49f9ade 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 48ac705fae8..78247c20d08 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 09efad74729..6cbcfa142ee 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 009f5a4356e..2dce2331274 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 89a10dbea33..2f836f144ac 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 f38837c5899..f7357b958b1 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 370b589ae70..edc1560704a 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 9142337f370..140e3ebea4e 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 b5f8d58a769..71e452b0748 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 fa4d9f8febe..05048e2a0aa 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 800dd5c880e..92ec6d522eb 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 a0d41ca5d32..3e248ad6de2 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 972ada81590..683daa1864c 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 9a82e2510f5..664bd0ff884 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 19b18cd92cd..0d635d2140d 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 3a830675157..85ef60ecf80 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 5e7ea9ace35..14c39095d0b 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 34cacb91037..68bc158d31f 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 b77d80d49bc..df74745ea34 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 f7fa53bace4..2c9a72956ed 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 54a8fa6f7eb..2efedb6c235 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 1d8b6addbb2..644c52dd9d5 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 94a8874dccc..1338d825a5f 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 7f3d43db528..df58dd7e688 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 5f130caa472..de110b11224 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 bb7f49e3eee..b6ec1e3f17a 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 4f5f778e6dd..4fb01982b7a 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 928ebc78fba..0862aa87c47 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 dd710a4e8c1..b908463f98a 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 17c9adc3f3f..fd6a695a682 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 f1d26fc6843..4690f2a4c4c 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 6e88aa17a33..464418613c1 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 86f8e5b7a89..f3b0f2cc43e 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 12705a0eb6a..1290cd4fea1 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 a3989d47dfd..baa3b35bec5 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 ac9edad2479..7573c48327c 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 020acdd9be2..a6a3bea93f2 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 1c587f8af5a..d00c3ea8ff6 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 08306f77d6c..6c27b6b67f3 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 69ebdc10643..22d85a2f2c6 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 77c7ba2fc80..5f962c9b753 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 bb9db8bd0ef..59524a67af7 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 76c3565dca7..33587c79aea 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 340cba90f43..28174f0132f 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 77690a9f4d4..e2db2aa83f5 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 f3250916430..b8c4a7c4a0d 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 f6ab60876c5..5d60f41af1b 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 b8740f3f2e8..f280c8cad8d 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 a75b9383e26..5fcac0ee39b 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 20949cf2878..22d72d0ce5d 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 0576a29a51a..795ee41eee2 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 48e7375515f..77ce2e0f6a9 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 644592c62da..d564d6a908d 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 a2bf733c789..c83eac5a4d6 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 bed6b973384..9d3126e455d 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 686a92cfaad..2883d8d0513 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 79e2a633607..8fcd0d40728 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 483f59c8b55..45901994a0d 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 eb1af6f163e..f62aa3e162c 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 cf634832572..d1f969bba0b 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 57a487e219d..e8fa7e426fd 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 b4c08926a6f..a45a8eec0d6 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 14790911730..26fc9649f5b 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 26d9890644d..0f198f82cd9 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 9b97745e172..de510d55f48 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 9351a63a576..f9f3072e7d8 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 56ba4409d23..f18c28fcabf 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 a0606ddfe36..4326abaa034 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 2092aa29bc8..d235762943b 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 b0f2ca85af2..cda52d17776 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 ed657aef384..d309a16d240 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 931bb334850..e8d5bb2927e 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 6a9b4282efe..4088d74bfa0 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 db895d92111..103a387cfce 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 0764b5c9563..8c0f3a52afb 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 f95fe325f92..76a3c90d7b5 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 0e0632f3c9a..ebfaf2736b1 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 66691911c61..e171ee0b25c 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 fed06627be5..c40115d3cc9 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 15cbae4cca9..bdfd8813cfa 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 e6d9704a051..3ceebe58033 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 074972fd566..1c0f407e5be 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 5bbe728ed86..4c2f4e74a95 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 dbc448f472b..0895be2d325 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 ae1d41b126c..296b0e0ed6f 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 1578bccd5d9..8f1623db40e 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 2704b7c3643..fb3c413aec3 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 7c89205a0f5..60057522f6e 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 31e25e5b1d0..a11e42440f4 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 9cb45f9e493..cd41efece69 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 91fc0353edc..425e8caf533 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 ea6d2e22698..c70b8f4a91a 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 929158a6ffa..1a32bdc4aa4 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 5cc2d8804e0..2f14f999e7e 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 d67de6a9a5c..5b49e6f5e02 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 01335faaf2c..832c098cf56 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 eb424f5417e..592ae748bc3 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 4014209b16d..6a3b815a9c5 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 32a71a685e2..b4adf0248a4 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 5ec3e9fec8b..bee61bded04 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 4597925f91b..b685bae61dd 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 794428f9277..a4d9a8e87e2 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 3b2f40480ce..243d499047f 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 7fda502a379..76b1d05278e 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 00ee54a0b89..9cb0067315e 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 cd2e422728f..4da2e8d2417 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 775b8607fdb..18cd618e1cf 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 8f408e0c8cc..8e5767e3f6c 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 b3ca74cc28a..9b6989e0afe 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 0a2f0890868..21283f34221 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 f95f5bd4d1a..e01197a81e4 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 5d95c144fe2..0c4f82a99b3 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 2e0c7da2edb..97bcdfc102f 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 cc4cb82e0e9..73d0d4abf42 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 73df48a9565..c350a08e026 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 f18ebbbfabb..2da36dc45e0 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 cff5748714e..c32f80d8baa 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 044c3ffd8dd..ab952641e79 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 2eaaccd770f..4ac6471dfd6 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 d98e70ae046..b2832d057e8 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 f8cc9e3e8ce..c30f04d69ef 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 d25aa1446e1..a0edfdf5846 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 78f830eaff6..70665b01e95 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 e72455ab6df..bc2bca5fcd2 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 1e1c346145e..d4cffe14ed2 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 fd2eb039c81..16ea4a1c62e 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 67c15616aa8..f0b2399ce5a 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 a360d5e25f6..3bac7359768 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 b12ac94677a..863e29b6752 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 15fff2ed2c3..a8326b1bb33 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 cdf00c6e4bf..e3392c2e671 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 0cee2e17aa0..b9fa5bf281b 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 7d196d4f2a6..7322202bfa7 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 e68a595a3f9..6d57f2329e2 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 6fbc99cb703..d4db75d1a7f 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 c12ace6d2cf..da63a288599 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 89e69768ca8..477a941c98f 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 85839d91e22..6d4136c3582 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 daf64e748ff..a2e22c8365a 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 2998354b7a1..05b36d8a3da 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 c40b91f1ff2..d2b7155a17f 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 7e069ffa022..db9d5df424c 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 fbdf7c49983..9b4d5b14196 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 1db5ecfbf58..ea14e705989 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 5c6ded8f137..7efd0a6b9dd 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 ac236e48252..52c936308b9 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 efd189b93bd..9c620f02a45 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 e4011aa7b27..ecc410594ec 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 3a5fbba256c..4e6c4eb7e1f 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 0882e13f42c..961618e64da 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 09525b5ea1e..2d94c914d40 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 dd6d8fbb628..47e09a2f55c 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 a4ddd598652..d7e3f6b7a7b 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 8329f2a43b2..43976981af6 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 c50a720a77c..3c549dc287d 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 ff84e6c25f0..c2b17a237ea 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 59c23a85398..39f16a12a2d 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 a11ab01f668..c262f306441 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 976231036a0..7e563e2f980 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 e7389d6b8e3..67e96ee2034 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 bb05549726d..ada7146a754 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 630aa96af45..7ca5c176e2c 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 ed9af108b7f..9b2572674e7 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 7a10ae3b5f0..80be5945098 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 1ec88aebe8f..8ba16e3fc6f 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 e1acbb3a888..313cc6a7e5d 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 6b9006f3af2..1f8936fb682 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 16f0a72cae8..f517775f9a9 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 99ec3b6f31a..419b7a63713 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 27d19d237e4..7f4ecc3728c 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 2eb1d3deacc..f1638aacc8d 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 39185f26ca5..08607c34443 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 3b74d2dceb7..35025b12090 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 7fa26aaa712..6016942dd4a 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 25576b17e2c..0f0586f87ce 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 64a3276c59e..8765ce5b5b2 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 80ea960cec6..dcc68d9c631 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 5be6e2d4d85..bc3ec2a2a2a 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 2550c7febbc..1016eaeda81 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 3e36d9314da..eb6dbd1c21f 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 52d6359d453..a9cfcb93b6f 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 7a8adaef473..f06d1f0e89e 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 985a9aa21d6..5598b06b22f 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 ad4ec649b7a..09661d5d66b 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 21cc679eb61..2df50c389e2 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 e7e3657ed9c..b6f77832c5d 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 72bcd83c9d5..aa2444a6c90 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 7058c736d8d..728a9b984f3 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 ca638cf9318..d8fdcd466dd 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 f956ff2d5d4..2aacc5c0757 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 951d125cc9c..4a063859e14 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 407c0cf9c25..4faf9aa8418 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 28cf81f5b36..1f90b67d281 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 70e5121c2b5..17b777832bf 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 41d97d04774..cb6b5866339 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 4942237c5a1..a2391141367 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 7846887ab0f..d97e457f4ca 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 b3362745b2c..99d1f23f038 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 a9960367e80..ceb41f40b93 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 1a2dd0ff02d..085812d610d 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 99177f7f973..8e606d67659 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 b42f9c2a8ab..ac98cb7219e 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 9d2326a0ab2..59e4d326187 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 b0499ff9f43..a2cff0aab0b 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 1410b0069b7..9bdd1dba467 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 b9a0db81894..48dd1399544 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 a9fa6ff8104..565b230a456 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 534ae1898c9..9a7f5d205ad 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 750ddbd2639..5daa7db884c 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 64b70edc202..1cf5b951b04 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 56f947d806a..f2ee33bb5ae 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 21de951970b..b9e6931e89b 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 fdb7c9dba07..7ba9d3aa5ee 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 5640140a27b..750e1c3a202 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 a9743128560..3c889214ff0 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 183c7b657f9..09b052eaa5a 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 504fadcbba4..f1673c058b2 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 17a14dd19ac..3378a86e425 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 f0b55605bd0..c1833862927 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 c86cfd8925b..f825401fbf3 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 7bd1a0c2af8..7c43d6fb6f8 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 51b337c47bb..c7ac8d9041e 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 ef02982ae04..b14559f1d7f 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 5bfd15ca866..ddf45cfa264 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 d499d8d9499..63d7c64c800 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 bf2c11af456..3a056a1cae8 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 07871e2ca0e..f9e9d476cd3 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 73d0469bdb8..5b599c474fe 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 59ed1f8f8f9..03eb11a89a9 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 99a985e16ab..0ff2f6e80b5 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 6b647a2e414..bb79cbd00f3 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 73256d364ab..c9f4a525400 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 774f963ceb5..104532e440f 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 a9ea2428a48..ff3d3ab4a14 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 424c93c1ab9..39edfdbaecc 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 d044cd7dc59..32344a23133 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 fb89a676032..e37c2127aba 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 e813dd7535b..6f1ae5bbf11 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 c2507795f36..afcfdaf4916 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 c86c39650fe..2a565960a30 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 8b8715ff915..a3a5b1f3b54 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 a73c6efa3da..4cf1253323e 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 bcfc209d2ac..5519e10dbc2 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 74bb6512853..7ef2423ca5b 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 0417afa9255..b32b0ce216e 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 e386aec2604..9af080dfd09 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 527d6b52d08..5152e81c5c9 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 16d6e752ea3..89e882aea20 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 fabf1527620..2cf8ef1fd64 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 7890efa637e..a330640cd92 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 a8c075e09f1..3da5b413913 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 2d4f80e0638..d567f140755 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 ab3e7ffafdb..eca14e3c61f 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 5dab4289bdb..a10ed0a2d7e 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 6c40923c99c..eec21a297ba 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 674e2a8d7b4..eb4bb5e484d 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 46102e0e706..b74e83850bd 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 5ca36b55d67..7e3c9962d97 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 61996dac984..306a7055f2d 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 b10b94f2be0..6d033c861da 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 ea01c56ee8e..8ecf552fa01 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 f894315217a..0b26e037967 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 cbde299521c..04991fdf885 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 9672e6f7e32..5b8d9321ef9 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 a81ba3774ac..5f10dfcb13d 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 0e5fb7ce7bf..99ad81bf4ac 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 58a84858fb8..e371c5937ab 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 66b86a8172f..61ea95d973a 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 fffaad9f564..b5fe6d1eda6 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 0c26e108374..ec4f9c4dea5 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 75b0b16d2f5..545c1fb0f08 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 685f53f7064..8d56be5f7e0 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 fcaae7d1a07..e4990692a70 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 917722fb48d..c0b967f8cae 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 02ebc74512d..697c5388ccc 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 e5117d3f15d..217bb5e3a7d 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 74a5426f4c2..e356f5fd508 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 5d5c54d811d..09a9eeb5268 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 d9741def080..0cf3d1eca72 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 251aac6aba6..dd227738128 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 4ce57898a85..f6288b915c3 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 67304dbfc86..afe0c1c6205 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 28c5125fae9..e7dd38d8e91 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 a9bbca8b1b1..ae1066f6e15 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 0c07fdc7955..127dac3d6c4 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 309f935377a..336f9eec0e8 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 94fa011c84a..e98aaa1d1a6 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 5878c98c6a4..f635bf45d7a 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 d332b1bd207..1745a7157c7 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 8f45597b3a1..45b58395a92 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 6efe4da14c0..60e965a2512 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 88bb3babbe5..85b52f94aa9 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 9bf886fd503..5caa4961bd2 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 8b78fbdba3a..f4a891cfce7 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 5988aae2bc5..3fa25d8d116 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 d0abaf4cc59..3dea965f390 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 d1b910c8f80..b867812cd04 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 936236919c8..81473e83043 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 f6f6cff5bcb..f98670bd669 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 3acb3ca1f53..2cca0274ec7 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 9a23a3c7e4e..a54d1599e77 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 3de4e6c04db..3a79c47da02 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 c0feb35a2de..703aa55f95b 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 df6d192dba9..874153b9a78 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 de7972a076f..8a939852e65 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 399d35fd016..2662cb73227 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 4367d933617..0ac40c75707 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 1ace9239afc..bcd25eb14e1 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 f372c25ae93..5fa551bd67c 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 b0ed1189e50..0d344ebca9c 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 d8bc6df7678..340dce6738d 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 6f88f340023..fc3bc0a80e3 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 0ca91d201dd..45a5938fa78 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 c73f104fb04..f8c6a6e1fbd 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 c93789b54c9..12908e3c54b 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 1c3861a36fa..5009f6f9912 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 3e370665cea..8eb83bf0302 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 0a4f8db8fb6..e50bef440de 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 b134012933b..7b0b5b55966 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 2517d43a2ac..ff3caa0613e 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 2b19f8c1e32..22557191d04 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 3eba05e8ae5..03c481103aa 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 3d056e4338a..e8c75ae0edb 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 53678e3855a..c61ce1e7324 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 ae906f9a482..36accd93200 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 76d14f2437e..659e656d178 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 5265ff65429..b96fd9fb09c 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 bb9920f0e80..71388424f08 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 d22be0619f8..1509c8bbcb4 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 78308949642..30017153f1d 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 9853b073346..ee3167b8eb2 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 d1e0123096c..3464d349a2e 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 8e4097b0140..396ba0b2687 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 14a021b36ed..18b09d05768 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 4c2f47b70d8..2dea4f598a5 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 b2fe503eeee..c144a5d9022 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 a4ed4aae6a4..9a87074d074 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 aa1c40367a4..c7c8a5d536c 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 9fa91096ceb..83f2cc43101 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 23f91d5b1d4..0ff29962d0c 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 caff6c3d0b6..bfc077acf4b 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 3b8d5345fd1..d3b0448c839 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 1c8255c6494..a6d044a5505 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 cbf99f0a954..ea510307d88 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 7c8144b37e6..a07082b4588 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 0ac145021e3..4cbb12e8136 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 5df22d1ccd5..2a95b6477c0 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 7ad4f6ecf19..023030d0010 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 aa3279ee081..89fec145fa3 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 a4b802b8bca..d3c5f488249 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 a50656665f1..1ba8aa1cb71 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 b33c7aa315e..ad4483860e1 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 6576f0c1072..d63ec04d58c 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 45cf9b3c132..aa017387134 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 0d0b002e3fb..0479b2c1c54 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 68f2ca7c1a5..466bf88f49c 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 762059683c8..5a79894c070 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 216ad8242d4..0801cb7969b 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 68d60ad2bd1..2e2b46c4b73 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 7fbd9444dcd..c63cff5c4fd 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 d8ae4a95644..fcdd970a751 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 073ad050b63..778fd915658 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 eee1a0f967f..08b49fb32b8 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 fcc50017bec..2cdd6e3eb7b 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 d2cdbaee343..98ae0def7e3 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 87a94986ce1..3db0482048e 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 23d25d7edc2..a4f40138b45 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 b8446c7d755..487a36a976a 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 c735c8dc383..59b337cad3f 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 0c012d38c4f..d5d549eeafb 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 fd232283db9..983cb0aa322 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 77d0875c460..ac67cf6ce0d 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 52c9e61b9b4..86898105bf7 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 af3fbc3b5e3..b6c7984a6f4 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 87fc598cf4f..eeb4f94e824 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 9a0940e14e9..8b71c9f5eaf 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 84ea6e5f5c4..9adeae93e1d 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 b5e5d048160..6fbfb622d6d 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 492ced41da1..66f05a39142 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 c1c94fa86be..1b64ce2d0f6 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 2a1eee39158..c71e429591e 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 31c7ad86425..3621c0e7bf3 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 a1f83666ae6..2d8be8431ef 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 c49ba9b54a1..d2653046ed1 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 a7851eaaa92..b4c9da7af40 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 c034ef64473..f6a30e2acd0 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 0152112dbc8..d8075f6d8d2 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 a02eea036e1..457e1ebe6bb 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 07f903727f6..e1d617e4b97 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 9b7c997381c..bb1623fc74e 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 f53a68116cb..876013105c8 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 6faf82b0c30..d45e8a76d09 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 51602e6b27f..0e39f821ef3 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 4c42ebd3463..cdef6df66dd 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 c9c8107752d..baa9aa99c2a 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 e8d2f50ad4a..630449d254c 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 887bf4775ff..e01592e5069 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 b984f9962da..b09d97e687b 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 38c983d62b5..965793af7a5 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 3d455135674..247f3f4906b 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 ab252c8357f..caf6ea0b390 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 713406d8a1a..64c93b4223a 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 0a5fb732b0b..bdabc112bf1 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 4d7adac4b5e..d0d5f74b5ec 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 dc6792225b6..b2ff943d402 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 39f6353b478..45adad44313 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 ebf479c2fa3..c0b46a90d0a 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 b676faa8585..00b3a6fdd0e 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 31ce56a45c5..e861719cc29 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 a4767b70d79..701dcb2efcf 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 689814dbe91..959c5e04308 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 af57b339d31..c13957b9986 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 39556e36ced..0588ebd182b 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 430ffc84bbd..f723b52d59b 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 9d2aa6c652c..ba83a78f525 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 8f1320989dc..5804dbcf263 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 5e3f8d76670..6c8add22bd3 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 cb27f994724..ca1b6f18316 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 4bcd67b5e2d..5ade987b237 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 ef2a058ac52..608253e15e8 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 cb177a4009c..86118a06f28 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 7b823bfa10a..e758df121ec 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 c36236f8211..c3caa24cb29 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 884a67eb26c..775080772d8 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 c6d041adf0c..9765c74af52 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 6628a6d585b..09deb2b9db6 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 b54d81afa20..43228521ca5 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 f5768a10cde..3e9eb69e8b6 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 a4b2dc6a236..a9a396413b8 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 1e5a9d769f5..e4db481755a 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 ce1d30114bb..354c745f3b4 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 a0ef6c7c8e4..e546158a01c 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 a42735e3d5f..c945d218cea 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 eb4adffd41a..6fe896a1c3c 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 354666fd3bc..fe1ddaf99cd 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 9cadab05a97..7120aba682f 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 f5b83efd5d0..8507331d911 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 eb633bfa0d4..ae6f6756118 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 0ffc9381ba9..d080cffa125 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 7e10a558ca4..7211ba53a35 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 60955175cd6..ab0ba85246d 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 fafd5b4db3a..b5e445cf4b9 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 98e450ed86a..7b4b17070ab 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 a130cbf03e3..1855f1e4702 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 014a2ef8d98..10c3ef2f868 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 7cc1685f3e0..26ca2db0ba0 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 274a79d4acf..458b3312482 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 2cd794bddbf..912858329fa 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 36aed00e4eb..9721a806943 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 224108e6e6a..8c66f848dd1 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 6830c078d9a..b46b81ded6a 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 19570f393e5..987ae7830db 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 44b63e04ddb..552bc73fd7b 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 61eb7839db1..072c4f0c39e 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 2ad7c3b8c5b..b61fe3b7c4d 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 f697f932745..3b6586ea124 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 75565fcca20..5445e589df5 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 8c4c7c1e7dc..11b73a1638e 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 7b05c66d1c2..b61a5e154a4 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 9a5522594df..524169d86d6 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 2ee0effbe1c..06c3ec21444 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 65c94189b6a..0f4b924ac86 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 7b70e6402cc..ff12dc36a2b 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 2a3fe10cd6e..d793ce84ac3 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 1f5c487164a..22a2697c1c8 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 24866b8c4de..816a70f3a40 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 b51d846c4b8..638d43a558e 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 96ac4d1362c..d631d63b55d 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 3d27b56d9e7..a1f1dc6b182 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 b5ade0c6f7e..67c10c0e857 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 156fe3e85c8..2c79b51dd37 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 8a5ed49049a..08202bfdd99 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 b2867706731..6b0936e5fc4 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 9de34c125a7..9f259beac2d 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 a2aa55aed45..7f50bfecd6f 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 3d99d62da3c..663a8cbb802 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 c7eb0f4c43f..4b878bf470a 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"