From fbbb6ef8ef67aae3c82109a6c311deb703f218a7 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 17 Jun 2013 23:41:07 +0300 Subject: Init dummy session first --- lib/base.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 26e9595e869..fd4870974fe 100644 --- a/lib/base.php +++ b/lib/base.php @@ -288,14 +288,14 @@ class OC { $cookie_path = OC::$WEBROOT ?: '/'; ini_set('session.cookie_path', $cookie_path); + //set the session object to a dummy session so code relying on the session existing still works + self::$session = new \OC\Session\Memory(''); + try{ // set the session name to the instance id - which is unique self::$session = new \OC\Session\Internal(OC_Util::getInstanceId()); // if session cant be started break with http 500 error }catch (Exception $e){ - //set the session object to a dummy session so code relying on the session existing still works - self::$session = new \OC\Session\Memory(''); - OC_Log::write('core', 'Session could not be initialized', OC_Log::ERROR); -- cgit v1.2.3 From 4a480e4f530abbf52838687ae45a09f28a45b47e Mon Sep 17 00:00:00 2001 From: shkdee Date: Tue, 18 Jun 2013 21:47:47 +0300 Subject: Update user.php Fixes $_setupedBackends[] into self::$_setupedBackends[] so that setuped backends are REALLY remembered and not instanciated many times. --- lib/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/user.php b/lib/user.php index 06ea8e791dd..830f13bb8df 100644 --- a/lib/user.php +++ b/lib/user.php @@ -190,7 +190,7 @@ class OC_User { // use Reflection to create a new instance, using the $args $backend = $reflectionObj->newInstanceArgs($arguments); self::useBackend($backend); - $_setupedBackends[] = $i; + self::$_setupedBackends[] = $i; } else { OC_Log::write('core', 'User backend ' . $class . ' already initialized.', OC_Log::DEBUG); } -- cgit v1.2.3 From ff7e903f82607fdbc73e17dd7bb6bcc2caeb3de7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 20 Jun 2013 00:42:34 +0200 Subject: remove deleted files when re-scanning a folder --- lib/files/cache/scanner.php | 14 ++++++++++++++ tests/lib/files/cache/scanner.php | 10 ++++++++++ 2 files changed, 24 insertions(+) (limited to 'lib') diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index e7fbd856d5a..9b94a24f481 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -137,11 +137,20 @@ class Scanner { \OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_folder', array('path' => $path, 'storage' => $this->storageId)); $size = 0; $childQueue = array(); + $existingChildren = array(); + if ($this->cache->inCache($path)) { + $children = $this->cache->getFolderContents($path); + foreach ($children as $child) { + $existingChildren[] = $child['name']; + } + } + $newChildren = array(); if ($this->storage->is_dir($path) && ($dh = $this->storage->opendir($path))) { \OC_DB::beginTransaction(); while ($file = readdir($dh)) { $child = ($path) ? $path . '/' . $file : $file; if (!Filesystem::isIgnoredDir($file)) { + $newChildren[] = $file; $data = $this->scanFile($child, $reuse); if ($data) { if ($data['size'] === -1) { @@ -156,6 +165,11 @@ class Scanner { } } } + $removedChildren = \array_diff($existingChildren, $newChildren); + foreach ($removedChildren as $childName) { + $child = ($path) ? $path . '/' . $childName : $childName; + $this->cache->remove($child); + } \OC_DB::commit(); foreach ($childQueue as $child) { $childSize = $this->scanChildren($child, self::SCAN_RECURSIVE); diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 3dacefa2b80..3ee7f099f38 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -144,6 +144,16 @@ class Scanner extends \PHPUnit_Framework_TestCase { $this->assertEquals(-1, $newData['size']); } + public function testRemovedFile() { + $this->fillTestFolders(); + + $this->scanner->scan(''); + $this->assertTrue($this->cache->inCache('foo.txt')); + $this->storage->unlink('foo.txt'); + $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW); + $this->assertFalse($this->cache->inCache('foo.txt')); + } + function setUp() { $this->storage = new \OC\Files\Storage\Temporary(array()); $this->scanner = new \OC\Files\Cache\Scanner($this->storage); -- cgit v1.2.3 From 01ab79d460df5acc7f9793f0b9f346ea7b7915dc Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 20 Jun 2013 02:43:39 +0200 Subject: [tx-robot] updated from transifex --- apps/files_encryption/l10n/de_DE.php | 6 ++ apps/files_encryption/l10n/it.php | 20 +++--- apps/files_encryption/l10n/ru.php | 5 ++ apps/files_encryption/l10n/sv.php | 1 + apps/files_external/l10n/ko.php | 3 + apps/files_versions/l10n/ko.php | 14 ++--- apps/user_ldap/l10n/ru.php | 3 + apps/user_webdavauth/l10n/de_DE.php | 1 + core/l10n/ca.php | 1 - core/l10n/cs_CZ.php | 1 - core/l10n/de_DE.php | 1 + core/l10n/es.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/hu_HU.php | 4 ++ core/l10n/it.php | 9 ++- core/l10n/ja_JP.php | 1 - core/l10n/ru.php | 4 ++ core/l10n/sv.php | 1 - l10n/af_ZA/core.po | 16 ++--- l10n/af_ZA/lib.po | 4 +- l10n/af_ZA/settings.po | 70 +++++++++++---------- l10n/ar/core.po | 16 ++--- 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 | 10 ++- l10n/ar/user_ldap.po | 4 +- l10n/be/core.po | 16 ++--- l10n/be/settings.po | 70 +++++++++++---------- l10n/bg_BG/core.po | 16 ++--- 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 | 10 ++- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 16 ++--- 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 | 10 ++- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 16 ++--- l10n/bs/files.po | 4 +- l10n/bs/files_trashbin.po | 4 +- l10n/bs/settings.po | 10 ++- l10n/ca/core.po | 20 +++--- 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 | 12 ++-- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 20 +++--- 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 | 12 ++-- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 16 ++--- 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 | 10 ++- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 16 ++--- 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 | 12 ++-- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 16 ++--- 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 | 10 ++- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 18 +++--- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_encryption.po | 18 +++--- 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 | 10 ++- l10n/de_DE/user_ldap.po | 4 +- l10n/de_DE/user_webdavauth.po | 8 +-- l10n/el/core.po | 16 ++--- 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 | 10 ++- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/core.po | 16 ++--- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/en@pirate/settings.po | 70 +++++++++++---------- l10n/eo/core.po | 16 ++--- 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 | 10 ++- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 20 +++--- 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 | 12 ++-- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 16 ++--- 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 | 12 ++-- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 16 ++--- 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 | 12 ++-- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 16 ++--- 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 | 10 ++- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 16 ++--- 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 | 10 ++- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 16 ++--- 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 | 10 ++- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 20 +++--- 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 | 12 ++-- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 20 +++--- 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 | 12 ++-- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 16 ++--- 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 | 10 ++- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 16 ++--- l10n/hi/files.po | 4 +- l10n/hi/lib.po | 4 +- l10n/hi/settings.po | 70 +++++++++++---------- l10n/hr/core.po | 16 ++--- 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 | 10 ++- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 24 +++---- 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 | 12 ++-- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/core.po | 16 ++--- 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 | 10 ++- l10n/ia/core.po | 16 ++--- 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 | 10 ++- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 16 ++--- 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 | 10 ++- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 16 ++--- 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 | 10 ++- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 28 ++++----- l10n/it/files.po | 4 +- l10n/it/files_encryption.po | 26 ++++---- 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 | 12 ++-- l10n/it/user_ldap.po | 4 +- l10n/it/user_webdavauth.po | 6 +- l10n/ja_JP/core.po | 20 +++--- 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 | 12 ++-- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/core.po | 16 ++--- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka/settings.po | 70 +++++++++++---------- l10n/ka_GE/core.po | 16 ++--- 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 | 10 ++- l10n/ka_GE/user_ldap.po | 4 +- l10n/kn/core.po | 16 ++--- l10n/kn/settings.po | 70 +++++++++++---------- l10n/ko/core.po | 16 ++--- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 13 ++-- l10n/ko/files_sharing.po | 6 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/files_versions.po | 21 ++++--- l10n/ko/lib.po | 8 +-- l10n/ko/settings.po | 119 ++++++++++++++++++----------------- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 16 ++--- 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 | 10 ++- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 16 ++--- 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 | 10 ++- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 16 ++--- 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 | 10 ++- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 16 ++--- 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 | 10 ++- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 16 ++--- 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 | 10 ++- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 16 ++--- 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 | 10 ++- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 16 ++--- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/my_MM/settings.po | 70 +++++++++++---------- l10n/nb_NO/core.po | 16 ++--- 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 | 10 ++- l10n/nb_NO/user_ldap.po | 4 +- l10n/ne/core.po | 16 ++--- l10n/ne/settings.po | 70 +++++++++++---------- l10n/nl/core.po | 18 +++--- 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 | 12 ++-- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 16 ++--- 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 | 10 ++- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 16 ++--- 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 | 10 ++- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 18 +++--- 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 | 12 ++-- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 16 ++--- 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 | 12 ++-- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 16 ++--- 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 | 12 ++-- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 16 ++--- 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 | 10 ++- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 25 ++++---- l10n/ru/files.po | 4 +- l10n/ru/files_encryption.po | 17 ++--- 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 | 13 ++-- l10n/ru/user_ldap.po | 13 ++-- l10n/si_LK/core.po | 16 ++--- 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 | 10 ++- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/core.po | 16 ++--- l10n/sk/settings.po | 70 +++++++++++---------- l10n/sk_SK/core.po | 16 ++--- 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 | 10 ++- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 16 ++--- 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 | 10 ++- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 16 ++--- 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 | 10 ++- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 16 ++--- 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 | 10 ++- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 16 ++--- 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 | 10 ++- l10n/sv/core.po | 20 +++--- l10n/sv/files.po | 4 +- l10n/sv/files_encryption.po | 6 +- 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 | 12 ++-- l10n/sv/user_ldap.po | 4 +- l10n/sw_KE/core.po | 16 ++--- l10n/sw_KE/settings.po | 70 +++++++++++---------- l10n/ta_LK/core.po | 16 ++--- 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 | 10 ++- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 16 ++--- 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 | 10 ++- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 14 ++--- 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 | 8 ++- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 16 ++--- 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 | 10 ++- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 16 ++--- 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 | 10 ++- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 16 ++--- 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 | 10 ++- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 16 ++--- 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 | 10 ++- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 16 ++--- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 10 ++- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 16 ++--- 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 | 10 ++- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 16 ++--- 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 | 10 ++- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 16 ++--- 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 | 10 ++- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 16 ++--- 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 | 10 ++- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 16 ++--- 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 | 10 ++- l10n/zh_TW/user_ldap.po | 4 +- lib/l10n/ko.php | 2 + settings/l10n/hu_HU.php | 1 + settings/l10n/ko.php | 69 +++++++++++++++----- settings/l10n/ru.php | 1 + 580 files changed, 2500 insertions(+), 2126 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index b12bda42f84..02bec916023 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -6,6 +6,8 @@ "Password successfully changed." => "Das Passwort wurde erfolgreich geändert.", "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", "Saving..." => "Speichern...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", +"personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Recovery account password" => "Account-Passwort wiederherstellen", "Enabled" => "Aktiviert", @@ -13,6 +15,10 @@ "Old Recovery account password" => "Altes Passwort für die Account-Wiederherstellung", "New Recovery account password" => "Neues Passwort für die Account-Wiederherstellung", "Change Password" => "Passwort ändern", +" If you don't remember your old password you can ask your administrator to recover your files." => "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.", +"Old log-in password" => "Altes Login-Passwort", +"Current log-in password" => "Momentanes Login-Passwort", +"Enable password recovery:" => "Passwort-Wiederherstellung aktivieren:", "File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.", "Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden." ); diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 3226a17ee99..f6d703d5e64 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -7,11 +7,11 @@ "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.", +"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 ottenere nuovamente 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", +"You can unlock your private key in your " => "Puoi sbloccare la chiave privata nelle tue", +"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", @@ -21,14 +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", +"Your private key password no longer match your log-in password:" => "La password della chiave privata non corrisponde più alla password di accesso:", +"Set your old private key password to your current log-in password." => "Imposta la vecchia password della chiave privata sull'attuale password di accesso.", +" 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" => "Vecchia password di accesso", +"Current log-in password" => "Password di accesso attuale", +"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", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Abilitando questa opzione potrai accedere nuovamente 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/ru.php b/apps/files_encryption/l10n/ru.php index d10bfa7e783..1258972bf3b 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -1,7 +1,10 @@ "Ключ восстановления успешно установлен", +"Recovery key successfully disabled" => "Ключ восстановления успешно отключен", "Password successfully changed." => "Пароль изменен удачно.", "Could not change the password. Maybe the old password was not correct." => "Невозможно изменить пароль. Возможно старый пароль не был верен.", "Saving..." => "Сохранение...", +"personal settings" => "персональные настройки", "Encryption" => "Шифрование", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Включить шифрование пароля ключа восстановления (понадобится разрешение для восстановления ключа)", "Recovery account password" => "Восстановление пароля учетной записи", @@ -11,6 +14,8 @@ "Old Recovery account password" => "Старое Восстановление пароля учетной записи", "New Recovery account password" => "Новое Восстановление пароля учетной записи", "Change Password" => "Изменить пароль", +" If you don't remember your old password you can ask your administrator to recover your files." => "Если вы не помните свой старый пароль, вы можете попросить своего администратора восстановить ваши файлы", +"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 7d17a0adc60..81bd7875d51 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -28,6 +28,7 @@ "Current log-in password" => "Nuvarande inloggningslösenord", "Update Private Key Password" => "Uppdatera den privata lösenordsnyckeln", "Enable password recovery:" => "Aktivera lösenordsåterställning", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord", "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/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 47de9aad5e0..803b489c218 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -6,11 +6,14 @@ "Error configuring Google Drive storage" => "Google 드라이브 저장소 설정 오류", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "경고: PHP Curl 지원이 비활성화되어 있거나 설치되지 않았습니다. 다른 ownCloud, WebDAV, Google 드라이브 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "External Storage" => "외부 저장소", "Folder name" => "폴더 이름", +"External storage" => "외부 저장소", "Configuration" => "설정", "Options" => "옵션", "Applicable" => "적용 가능", +"Add storage" => "저장소 추가", "None set" => "설정되지 않음", "All Users" => "모든 사용자", "Groups" => "그룹", diff --git a/apps/files_versions/l10n/ko.php b/apps/files_versions/l10n/ko.php index 994144f39e1..df34e4681b4 100644 --- a/apps/files_versions/l10n/ko.php +++ b/apps/files_versions/l10n/ko.php @@ -1,11 +1,11 @@ "되돌릴 수 없습니다: %s", -"success" => "완료", -"File %s was reverted to version %s" => "파일 %s를 버전 %s로 변경하였습니다.", +"success" => "성공", +"File %s was reverted to version %s" => "파일 %s을(를) 버전 %s(으)로 되돌림", "failure" => "실패", -"File %s could not be reverted to version %s" => "파일 %s를 버전 %s로 되돌리지 못했습니다.", -"No old versions available" => "오래된 버전을 사용할 수 없습니다", -"No path specified" => "경로를 알수 없습니다.", -"Versions" => "버젼", -"Revert a file to a previous version by clicking on its revert button" => "변경 버튼을 클릭하여 이전 버전의 파일로 변경할 수 있습니다." +"File %s could not be reverted to version %s" => "파일 %s을(를) 버전 %s(으)로 되돌리지 못했음", +"No old versions available" => "오래된 버전을 사용할 수 없음", +"No path specified" => "경로가 지정되지 않았음", +"Versions" => "버전", +"Revert a file to a previous version by clicking on its revert button" => "변경 단추를 눌러 이전 버전의 파일로 되돌릴 수 있습니다" ); diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index 0573be3993f..d88b20dc469 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -75,10 +75,13 @@ "User Home Folder Naming Rule" => "Правило именования Домашней Папки Пользователя", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Оставьте имя пользователя пустым (по умолчанию). Иначе укажите атрибут LDAP/AD.", "Internal Username" => "Внутреннее имя пользователя", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder in ownCloud. It is also a port of remote URLs, for instance for all *DAV services. With this setting, the default behaviour can be overriden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." => "По-умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Это необходимо для того, чтобы имя пользователя было уникальным и не содержало в себе запрещенных символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по-умолчанию для папки пользователя в ownCloud. Оно также портом для удаленных ссылок, к примеру, для всех сервисов *DAV. С помощию данной настройки можно изменить поведение по-умолчанию. Чтобы достичь поведения, как было настроено до изменения, ownCloud 5 выводит атрибут имени пользователя в этом поле. Оставьте его пустым для режима по-умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP.", "Internal Username Attribute:" => "Аттрибут для внутреннего имени:", "Override UUID detection" => "Переопределить нахождение UUID", +"By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.", "UUID Attribute:" => "Аттрибут для UUID:", "Username-LDAP User Mapping" => "Соответствия Имя-Пользователь LDAP", +"ownCloud uses usernames to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from ownCloud username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found by ownCloud. The internal ownCloud name is used all over in ownCloud. Clearing the Mappings will have leftovers everywhere. Clearing the Mappings is not configuration sensitive, it affects all LDAP configurations! Do never clear the mappings in a production environment. Only clear mappings in a testing or experimental stage." => "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует наличия соответствия имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кэшируется доменное имя (DN) для снижения взаимодействия LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. При очистке соответствий повсюду будут оставаться \"хвосты\". Очистка соответствий не привязана к конкретной конфигурации, она влияет на все конфигурации LDAP! Никогда не очищайте соответствия в рабочем окружении. Очищайте соответствия только во время тестов или в экспериментальных конфигурациях.", "Clear Username-LDAP User Mapping" => "Очистить соответствия Имя-Пользователь LDAP", "Clear Groupname-LDAP Group Mapping" => "Очистить соответствия Группа-Группа LDAP", "Test Configuration" => "Тестовая конфигурация", diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 4ca749e898d..21a886343f0 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,4 +1,5 @@ "WebDAV-Authentifizierung", +"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 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/core/l10n/ca.php b/core/l10n/ca.php index 67cf0aca9d6..7cc04571d93 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -90,7 +90,6 @@ "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", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index f3b4cd49bfe..9eca3af1052 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -90,7 +90,6 @@ "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", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index fb7835eba26..37a8f58e7e8 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -89,6 +89,7 @@ "Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", "You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.", "Username" => "Benutzername", +"Yes, I really want to reset my password now" => "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen.", "Request reset" => "Zurücksetzung anfordern", "Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", "To login page" => "Zur Login-Seite", diff --git a/core/l10n/es.php b/core/l10n/es.php index 93d644c01ed..7e89b871904 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -90,7 +90,6 @@ "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", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index bc5d9e8cdde..4e6c56c8bc9 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -90,7 +90,6 @@ "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é", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 583fb73e57f..e32af18e343 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -90,7 +90,6 @@ "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", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 1e74fa7e062..a0b6979c4ba 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -1,4 +1,5 @@ "%s megosztotta Önnel ezt: »%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", @@ -89,6 +90,7 @@ "Request failed!
Did you make sure your email/username was right?" => "A kérést nem sikerült teljesíteni!
Biztos, hogy jó emailcímet/felhasználónevet adott meg?", "You will receive a link to reset your password via Email." => "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról.", "Username" => "Felhasználónév", +"Yes, I really want to reset my password now" => "Igen, tényleg meg akarom változtatni a jelszavam", "Request reset" => "Visszaállítás igénylése", "Your password was reset" => "Jelszó megváltoztatva", "To login page" => "A bejelentkező ablakhoz", @@ -101,6 +103,7 @@ "Help" => "Súgó", "Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!", "web services under your control" => "webszolgáltatások saját kézben", "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", @@ -131,6 +134,7 @@ "remember" => "emlékezzen", "Log in" => "Bejelentkezés", "Alternative Logins" => "Alternatív bejelentkezés", +"Hey there,

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

Cheers!" => "Üdv!

Új hír: %s megosztotta Önnel ezt: »%s«.
Itt nézhető meg!

Minden jót!", "prev" => "előző", "next" => "következő", "Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet." diff --git a/core/l10n/it.php b/core/l10n/it.php index a06283cf411..dc269b5f4bb 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,5 +1,5 @@ "%s condiviso »%s« con te", +"%s shared »%s« with you" => "%s ha 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", @@ -90,8 +90,7 @@ "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", +"Yes, I really want to reset my password now" => "Sì, voglio davvero ripristinare la mia password adesso", "Request reset" => "Richiesta di ripristino", "Your password was reset" => "La password è stata ripristinata", "To login page" => "Alla pagina di accesso", @@ -104,7 +103,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!", +"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\nSaluti!", "web services under your control" => "servizi web nelle tue mani", "Edit categories" => "Modifica categorie", "Add" => "Aggiungi", @@ -135,7 +134,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!", +"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!

Saluti!", "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 5119330264f..29dca3b105f 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -90,7 +90,6 @@ "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" => "あなたのパスワードはリセットされました。", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 293ac9ec119..17e6150f908 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -1,4 +1,5 @@ "%s поделился »%s« с вами", "Category type not provided." => "Тип категории не предоставлен", "No category to add?" => "Нет категорий для добавления?", "This category already exists: %s" => "Эта категория уже существует: %s", @@ -89,6 +90,7 @@ "Request failed!
Did you make sure your email/username was right?" => "Что-то не так. Вы уверены что Email / Имя пользователя указаны верно?", "You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.", "Username" => "Имя пользователя", +"Yes, I really want to reset my password now" => "Да, я действительно хочу сбросить свой пароль", "Request reset" => "Запросить сброс", "Your password was reset" => "Ваш пароль был сброшен", "To login page" => "На страницу авторизации", @@ -101,6 +103,7 @@ "Help" => "Помощь", "Access forbidden" => "Доступ запрещён", "Cloud not found" => "Облако не найдено", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!", "web services under your control" => "веб-сервисы под вашим управлением", "Edit categories" => "Редактировать категрии", "Add" => "Добавить", @@ -131,6 +134,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/sv.php b/core/l10n/sv.php index 68abe9bd154..492af2cff3e 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -90,7 +90,6 @@ "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", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 069c31c85f5..fad0a898e7b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 00:13+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "Gebruikersnaam" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Herstel-versoek" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 178fe43a428..1863bcc3659 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/af_ZA/settings.po index abaa4467902..89868f17d55 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Wagwoord" -#: 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 "Nuwe wagwoord" -#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index e021aa60ea8..70a11de5e5a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "حصل خطأ في عملية التحديث, يرجى ارسال تقر msgid "The update was successful. Redirecting you to ownCloud now." msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "إعادة تعيين كلمة سر ownCloud" @@ -403,17 +403,17 @@ msgstr "إسم المستخدم" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "طلب تعديل" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index dc74834b583..9c51d6c3b05 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/ar/files_external.po index 23eb8d90529..115c42f3030 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 e92cb7a0505..8d7293fb099 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 551376289f2..f105c0d75f2 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a95e1c80c9f..d85361731e5 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/ar/settings.po index 3db2459c3b4..fa49d0e96c7 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "اسم الدخول" @@ -485,6 +485,10 @@ msgstr "غير محدود" msgid "Other" msgstr "شيء آخر" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "وحدة التخزين" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index bbad2c700d3..48d17025fe5 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index 5917b8f8bb7..0ea77a53fe4 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-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 3efffd109da..09f57fe7f72 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 86f0c812810..676391c8759 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "Потребител" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Нулиране на заявка" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 8c7e8f0cb84..d43936cf8ac 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/bg_BG/files_external.po index a55010261d4..6e512903544 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 7fb9eb179e6..453d8d899e3 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 564ffb2af8f..309ef91c589 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 d41cc2dd33c..a76f2e233e5 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/bg_BG/settings.po index fba23f57e54..ea642ac0453 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Потребител" @@ -485,6 +485,10 @@ msgstr "Неограничено" msgid "Other" msgstr "Други" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Хранилище" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 8b83807dd9b..6dcc3f2561d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3a24f3e32a6..d9b6e502608 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ" @@ -403,17 +403,17 @@ msgstr "ব্যবহারকারী" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "অনুরোধ পূনঃনির্ধারণ" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 056729d79ae..e1bb1a1eac7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/bn_BD/files_external.po index 5069d664880..ffd9f2cd795 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 10280804012..c26aae48f84 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 483ad5b4786..ef56ce51748 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3e031fd47ee..687a1c5c8e4 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/bn_BD/settings.po index 9715d4533ef..609167e7b2f 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "অসীম" msgid "Other" msgstr "অন্যান্য" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "সংরক্ষণাগার" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 9201452f862..fdd5638500e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 daddfc19ba7..66dbd4471b0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 8c622729e9e..01cccc581ba 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 0205271e4b3..eb11548ec08 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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/settings.po b/l10n/bs/settings.po index 28ed4328d56..6aed06182f3 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-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 4d429b4e283..e52f73aadbf 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "L'actualització ha estat incorrecte. Comuniqueu aquest error a \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 5a3c4b2dde2..0feabd1e2ff 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 b81250cbaf0..2cef38f2d25 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/ca/settings.po index 4af8d555b57..8eb8d787551 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nom d'accés" @@ -487,6 +487,10 @@ msgstr "Il·limitat" msgid "Other" msgstr "Un altre" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Emmagatzemament" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index b4422bd33ed..a7808a3c8a8 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 1e270a79f8e..45df3e8f058 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do \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 a0b9aced708..68ffe77930d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 89dd719f672..02f93e2850e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 873c7660537..767bc3926ce 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 583935f99e2..ca72ae2dcd4 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 2a78f1db4ce..eca1544d119 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Přihlašovací jméno" @@ -486,6 +486,10 @@ msgstr "Neomezeně" msgid "Other" msgstr "Jiný" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Úložiště" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 0b86bf8396d..b13a4737348 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3a033e05b72..6ced824723c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "Methodd y diweddariad. Adroddwch y mater hwn i \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 c7ecd8debac..697fe7e8b8c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 dd347cd9d33..7448461b098 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 0a7b69320c1..7faf53a2509 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 12b88fc4949..13e3c3ad1be 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/cy_GB/settings.po index 3ade6ab5d4a..f11015762cc 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Arall" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index c6d15059412..46fa9db646a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 9c63d373b80..8fa71f3600f 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Nulstil ownCloud kodeord" @@ -405,17 +405,17 @@ msgstr "Brugernavn" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Anmod om nulstilling" diff --git a/l10n/da/files.po b/l10n/da/files.po index edb5aea4507..5ed61cf1d4d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 a982e185946..06f7ea0740e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 0846e0a4120..cd5b2b633cd 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a4348995969..31f2c767a2e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 e916bf5b643..dd35a878955 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 5241239d7db..3017f656be0 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Ole Holm Frandsen \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Loginnavn" @@ -486,6 +486,10 @@ msgstr "Ubegrænset" msgid "Other" msgstr "Andet" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Opbevaring" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index babaaf40123..d5ac17cb128 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 8f54a7da0ee..4519c6fcb06 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -377,7 +377,7 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die \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 004c0ac4222..ca29a3671b7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 8dd3e73a101..f57e8accbfc 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 46e2b1d379a..3ab4dad082e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 d6ae107084f..ac036172eb2 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 550aba4e98b..0f8ffcd35fd 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Loginname" @@ -488,6 +488,10 @@ msgstr "Unbegrenzt" msgid "Other" msgstr "Andere" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Speicher" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 05aa5d3b9a8..a5f5bd11c12 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 f85c22988a2..895758c9d54 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -377,7 +377,7 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index b7d0b1cd73b..7e3eb2e5bfc 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-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-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 20:40+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +70,7 @@ msgstr "Speichern..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " @@ -78,7 +78,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "Persönliche Einstellungen" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -129,15 +129,15 @@ msgstr "" msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Altes Login-Passwort" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Momentanes Login-Passwort" #: templates/settings-personal.php:35 msgid "Update Private Key Password" @@ -145,7 +145,7 @@ msgstr "" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Passwort-Wiederherstellung aktivieren:" #: templates/settings-personal.php:47 msgid "" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 38106731056..103dcb089c0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 687d3547a37..2792a8f0201 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 76f3b936cfe..adbf6bbb3f3 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 ede9c6eeb9c..6875e4e1ea2 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 d124f2de4a4..3fe72fecaa9 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Loginname" @@ -489,6 +489,10 @@ msgstr "Unbegrenzt" msgid "Other" msgstr "Andere" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Speicher" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 03eb50a2972..9edcec2140a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 31277b46286..41721aaee38 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-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-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 20:40+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "WebDAV-Authentifizierung" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/el/core.po b/l10n/el/core.po index 93d770895b6..5434c3bbe15 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -376,7 +376,7 @@ msgstr "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ σ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Επαναφορά συνθηματικού ownCloud" @@ -406,17 +406,17 @@ msgstr "Όνομα χρήστη" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Επαναφορά αίτησης" diff --git a/l10n/el/files.po b/l10n/el/files.po index 098b50fdecc..042c8dd97c0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 d8b08a4e859..c76e96d7185 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 53eb8fdd799..18ac51eb105 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c07a6301ad3..2f4f10f7eef 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 72626a9818f..d8ecdf0d14e 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 7c1867ff986..01fb826efac 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Όνομα Σύνδεσης" @@ -487,6 +487,10 @@ msgstr "Απεριόριστο" msgid "Other" msgstr "Άλλο" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Αποθήκευση" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 76c0847c83f..83a70c065a9 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 9ac94509680..ed09edebe14 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-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -404,17 +404,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 49c7ec2e90a..3a2ef18fa6e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 b0c051fb97e..6c131a27cd8 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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/settings.po b/l10n/en@pirate/settings.po index 4459d6d1062..18d9a309754 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passcode" -#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 20b2e57a674..65eea1f8c8d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la \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 cc29f3d3b5f..8177b199608 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 20d53a72b62..7672ad3722d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c22d21b9788..af8ffc33408 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 987a44c32db..7ea6a719c72 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/eo/settings.po index 77e173f1233..76e39dee164 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "Senlima" msgid "Other" msgstr "Alia" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Konservejo" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 09656fd32da..b81bab3340b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 f186578a4d4..1c6bb3b8945 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: saskarip \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -378,7 +378,7 @@ msgstr "La actualización ha fracasado. Por favor, informe de este problema a la msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Reseteo contraseña de ownCloud" @@ -408,17 +408,17 @@ msgstr "Nombre de usuario" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" -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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "Sí. Realmente deseo resetear mi contraseña ahora" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Solicitar restablecimiento" diff --git a/l10n/es/files.po b/l10n/es/files.po index d7f76b2f37d..34f3c846f39 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 a48a2794550..bc7a0074671 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 543766d0581..3e3ef1fe0e3 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 edc0a8b181f..2c69eab7072 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 903afab0507..d410d1d59bd 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/es/settings.po index 8073cd9ddb9..a0c5e94e56b 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: saskarip \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -459,7 +459,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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nombre de usuario" @@ -489,6 +489,10 @@ msgstr "Ilimitado" msgid "Other" msgstr "Otro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Almacenamiento" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index e1453cff610..e05a73ad619 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c0087825b6f..f2a262c8a7c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "La actualización no pudo ser completada. Por favor, reportá el inconve msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización fue exitosa. Estás siendo redirigido a ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Restablecer contraseña de ownCloud" @@ -404,17 +404,17 @@ msgstr "Nombre de usuario" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Solicitar restablecimiento" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 93228146feb..398798369a2 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 767e411f30d..fbd62a0bc33 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 de6cc772904..b0c9e93bbc0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 722d103c881..9cb68c7c72b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 010047b63c2..818a2250d7d 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 b6105d59b27..c3c016357e3 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +457,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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nombre de " @@ -487,6 +487,10 @@ msgstr "Ilimitado" msgid "Other" msgstr "Otros" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Almacenamiento" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 46c7448ba80..81cff327642 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 480a41ef97c..be86c55a860 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "Uuendus ebaõnnestus. Palun teavita probleemidest \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 343f26034a5..850bcc9e20c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 b5e9b6c805b..5d37f120ffd 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 59da0794007..8c91514c8b2 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c598728781a..a6bde9d70c6 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 14890eebb13..8b5f8186e57 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Kasutajanimi" @@ -487,6 +487,10 @@ msgstr "Piiramatult" msgid "Other" msgstr "Muu" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Maht" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 5928cce325a..55f9bdbe328 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 c198338e0d9..1cddc86a73b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat \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 d33c6a213c7..498d63c004d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 116d9b7cee8..003b7c7e540 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 81e9151a1d0..40f0272c7ed 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 ce9d505fed6..b4efaef29f3 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/eu/settings.po index 24fd20572a0..780a36e1746 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Sarrera Izena" @@ -485,6 +485,10 @@ msgstr "Mugarik gabe" msgid "Other" msgstr "Bestelakoa" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Biltegiratzea" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index bfbaa1d20f1..0ce491ae846 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 6a954879c6d..1321c169eba 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "به روز رسانی ناموفق بود. لطفا این خطا را msgid "The update was successful. Redirecting you to ownCloud now." msgstr "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "پسورد ابرهای شما تغییرکرد" @@ -403,17 +403,17 @@ msgstr "نام کاربری" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "درخواست دوباره سازی" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index fa4826f0231..afd3c129656 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/fa/files_external.po index 75c2a531e42..5fced55beb7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 40c0a2ed45d..c011c667e85 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 829c7827f19..95ada943437 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 110ddafa9b0..b985a097704 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/fa/settings.po index aad62ec1127..e3200bcd202 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "نام کاربری" @@ -485,6 +485,10 @@ msgstr "نامحدود" msgid "Other" msgstr "دیگر" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "حافظه" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 7cbaf72ab38..15d5ccfc78c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 a44a0d7d9af..54728a2cc19 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "Päivitys epäonnistui. Ilmoita ongelmasta \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 2d0b315d744..d85978f5ebf 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 9cfa3be62fb..cf61264e3e7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 69876dbba1e..4b849f371a4 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 e6bc49283d4..a493df30199 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index ed7e1086a19..57856c22bbd 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Kirjautumisnimi" @@ -486,6 +486,10 @@ msgstr "Rajoittamaton" msgid "Other" msgstr "Muu" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Tallennustila" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index abc66cc8d17..9121ebe714c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 03c41ebf0d9..c545267b0bc 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Adalberto Rodrigues \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -377,7 +377,7 @@ msgstr "La mise à jour a échoué. Veuillez signaler ce problème à la \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 467ab405958..9a6e4478545 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a9bef3a1bd7..cf2ccd99658 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a36a4077fc7..9c3e0fa99a7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 52b61adfd7b..9c4a7473c18 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 4201701c0d9..b45883ea2fb 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: lyly95\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -458,7 +458,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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nom de la connexion" @@ -488,6 +488,10 @@ msgstr "Illimité" msgid "Other" msgstr "Autre" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Support de stockage" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 2ef34d5f911..60a95207c27 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 2af63a39580..ca3a672db59 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "A actualización non foi satisfactoria, informe deste problema á \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 2451a64db05..9d74f390668 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 6fad2a968c2..6d04e4d226f 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 d288eae7d5e..d15ad4dca89 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 61ac8da4b73..00c0c83705f 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/gl/settings.po b/l10n/gl/settings.po index 36ec782a5b8..6029cf49758 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nome de acceso" @@ -486,6 +486,10 @@ msgstr "Sen límites" msgid "Other" msgstr "Outro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Almacenamento" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index e9929b83408..472eec54d37 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 dfb705f2bb3..6be3427fabd 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "תהליך העדכון לא הושלם בהצלחה. נא דווח את msgid "The update was successful. Redirecting you to ownCloud now." msgstr "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "איפוס הססמה של ownCloud" @@ -404,17 +404,17 @@ msgstr "שם משתמש" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "בקשת איפוס" diff --git a/l10n/he/files.po b/l10n/he/files.po index 5801a03ef9d..424774d4be1 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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/files_external.po b/l10n/he/files_external.po index 908ac8030c5..d696d30b3b0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 5f45ef2f64c..6bcea3d2971 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 209286dd061..c71f6a2a153 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 75e43d538ba..e3a200c4548 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/he/settings.po index 863e74563c1..fe4e6de99f9 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "שם כניסה" @@ -486,6 +486,10 @@ msgstr "ללא הגבלה" msgid "Other" msgstr "אחר" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "אחסון" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index cf442b5c66a..7ef34a47b72 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 9b0333f6b07..bd05e94cfe1 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -404,17 +404,17 @@ msgstr "प्रयोक्ता का नाम" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 9dbacd50ee7..ba3e62ad631 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 d8be46cbbdc..ab3955b78d5 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 00:13+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 3f1dc098e5a..ac7c5517216 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 509792cd165..389d4547ddb 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud resetiranje lozinke" @@ -403,17 +403,17 @@ msgstr "Korisničko ime" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Zahtjev za resetiranjem" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f23424a79e9..88f1d71b0ea 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/hr/files_external.po index 1e7fbffd968..d6ce36cf682 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 cf27ad7f880..26865c09c36 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 96d7c9ec137..af8a5289bf5 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 37b036dd238..03d5c52b0fb 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/hr/settings.po index 5c1d4bfa8a3..96f86bb51b9 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "ostali" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 9bb2b776fd6..cabef77275d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 134e54c8321..cfde1b630e3 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s megosztotta Önnel ezt: »%s«" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -374,7 +374,7 @@ msgstr "A frissítés nem sikerült. Kérem értesítse erről a problémáról msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud jelszó-visszaállítás" @@ -404,17 +404,17 @@ msgstr "Felhasználónév" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Igen, tényleg meg akarom változtatni a jelszavam" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Visszaállítás igénylése" @@ -471,7 +471,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +613,7 @@ msgstr "Alternatív bejelentkezés" msgid "" "Hey there,

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

Cheers!" -msgstr "" +msgstr "Üdv!

Új hír: %s megosztotta Önnel ezt: »%s«.
Itt nézhető meg!

Minden jót!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 969f194a717..1c0d0c11fde 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/hu_HU/files_external.po index 3976c2ef02c..cb1e632bd82 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 4525d9e1ce7..7e6728345fa 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 4a0a793468d..1d61ad3517b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 979f5bc5464..b0bcbe6effe 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/hu_HU/settings.po index 91f9dc984fc..0cdbabaa11f 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Bejelentkezési név" @@ -473,7 +473,7 @@ msgstr "A jelszóvisszaállítás adminisztrációja" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetre, ha a felhasználók megváltoztatják a jelszavukat" #: templates/users.php:42 msgid "Default Storage" @@ -487,6 +487,10 @@ msgstr "Korlátlan" msgid "Other" msgstr "Más" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Tárhely" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index eaccee466a9..fc5a0a65c1d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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/core.po b/l10n/hy/core.po index 23d6a9c882b..6a1b8e1ec63 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-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 3a978e2356b..1e8ca0029a2 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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/hy/files_external.po b/l10n/hy/files_external.po index 78d44ff3b35..0794e6f7e79 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:36+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 e9d3f319996..d1f7a330323 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 1854e7c714e..13f0d765f3f 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+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 87532f2ad17..77fa11c625d 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Այլ" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 671bcd8fba7..6945814fd2b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Reinitialisation del contrasigno de ownCLoud" @@ -403,17 +403,17 @@ msgstr "Nomine de usator" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Requestar reinitialisation" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 6fb05375031..00223d2dead 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/ia/files_external.po index 3715851a8ac..402caf07010 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 e914dab39d0..65c4b2dc7e6 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 dc59c2eac5c..a8c5eddbf35 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3603c6ef5fc..0c3797b6b86 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/ia/settings.po index 69dcfb719fd..ba6524b044a 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Altere" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index de7e5dac206..e3e704b97c7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 96e493d4008..eefda9b64ae 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "Pembaruan gagal. Silakan laporkan masalah ini ke \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 e15378f1f7b..4b75571ef3c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 18755376f0b..19fee4524de 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 ac351b9689c..831e58229aa 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 d46847352cb..beb71c3676b 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/id/settings.po index 12075cc982e..6796b003a06 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nama Masuk" @@ -485,6 +485,10 @@ msgstr "Tak terbatas" msgid "Other" msgstr "Lainnya" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Penyimpanan" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 5054a4b2354..69f3fe1174a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 1caa5337ea0..8617c036e45 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Uppfærslan heppnaðist. Beini þér til ownCloud nú." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "endursetja ownCloud lykilorð" @@ -404,17 +404,17 @@ msgstr "Notendanafn" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Endursetja lykilorð" diff --git a/l10n/is/files.po b/l10n/is/files.po index f54f9018f1e..837e5b483f8 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/is/files_external.po index bf0624b6b15..a45396a6066 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 5f8abfc5dd3..9082c3a37b8 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 d55d5620be4..e6c1059e591 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 09a44d7c1c8..c66520b9be4 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/is/settings.po index 7afbac45e15..e799032597e 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -486,6 +486,10 @@ msgstr "Ótakmarkað" msgid "Other" msgstr "Annað" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "gagnapláss" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index f638b425987..1b3e30c43a4 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 222bfef55c2..eed00611a58 100644 --- a/l10n/it/core.po +++ b/l10n/it/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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "%s condiviso »%s« con te" +msgstr "%s ha condiviso »%s« con te" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -375,7 +375,7 @@ msgstr "L'aggiornamento non è riuscito. Segnala il problema alla
just letting you know that %s shared »%s« with you.
View it!

Cheers!" -msgstr "Ehilà,

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

Grazie!" +msgstr "Ehilà,

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

Saluti!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/it/files.po b/l10n/it/files.po index 77d08753006..2777104d44b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-19 07:00+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 e92fab7b94b..de89b27ae03 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/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-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 11:00+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-19 06:40+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" @@ -60,7 +60,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 "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." +msgstr "La chiave privata non è valida! Forse la password è stata cambiata dall'esterno. Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file." #: js/settings-admin.js:11 msgid "Saving..." @@ -74,11 +74,11 @@ msgstr "La tua chiave privata non è valida! Forse è stata modifica dall'estern #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "Puoi sbloccare la chiave privata nel tuo" +msgstr "Puoi sbloccare la chiave privata nelle tue" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "Impostazioni personali" +msgstr "impostazioni personali" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -119,29 +119,29 @@ msgstr "Modifica password" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "La password della chiave privata non corrisponde più alla password di login:" +msgstr "La password della chiave privata non corrisponde più alla password di accesso:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "Imposta la vecchia password della chiave privata sull'attuale password di login" +msgstr "Imposta la vecchia password della chiave privata sull'attuale password di accesso." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file" +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 "Password di login vecchia" +msgstr "Vecchia password di accesso" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "Password di login corrente" +msgstr "Password di accesso attuale" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "Aggiorna la Password della Chiave Privata" +msgstr "Aggiorna la password della chiave privata" #: templates/settings-personal.php:45 msgid "Enable password recovery:" @@ -151,7 +151,7 @@ msgstr "Abilita il recupero della password:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "Abilitando questa opzione potrai riaccedere ai file cifrati nel caso in cui la password venga perduta" +msgstr "Abilitando questa opzione potrai accedere nuovamente 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 6cc79087961..6ad7197145d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 e6af34cb900..ecc4e52541a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 5d8c6959c8d..ed98e1ded04 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 49772e6f039..9fff38cff16 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/it/settings.po index 98103924e62..cc905ef45c3 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nome utente" @@ -486,6 +486,10 @@ msgstr "Illimitata" msgid "Other" msgstr "Altro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Archiviazione" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 5fb988857d8..da34f70c417 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 1454f5effb4..78c08a70150 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/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-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 08:20+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-19 06:39+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" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 1db70c82977..efa06e028a9 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "更新に成功しました。この問題を \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 fdf38606f78..9a111aade3c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 5b7703a45ac..4cb3e0e3399 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 12c48924dc1..bea0655a5f0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3e27f61627a..57d9492a15c 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 23f1aa6bdb7..737cf4a3a0d 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -458,7 +458,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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "ログイン名" @@ -488,6 +488,10 @@ msgstr "無制限" msgid "Other" msgstr "その他" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "ストレージ" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 29950031f0e..0fd86ff70f4 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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/core.po b/l10n/ka/core.po index af6bce82f11..ab5767586c3 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-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 5db66f8438b..5f32547d65d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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/files_sharing.po b/l10n/ka/files_sharing.po index e15acc39418..5168c2b9043 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 6c4f017b65e..af228db33b8 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ad738c38c86..be74a78c290 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "განახლება ვერ განხორციელდ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud პაროლის შეცვლა" @@ -403,17 +403,17 @@ msgstr "მომხმარებლის სახელი" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "პაროლის შეცვლის მოთხოვნა" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 2e224f56e7b..40f450b134b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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/files_external.po b/l10n/ka_GE/files_external.po index c24d78d7485..3c88ce9f5e1 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 1713bad20bc..23b4725d735 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 b10ed585013..1f65db6eb08 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 9a88f9fb0b5..e50ad5cd585 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/ka_GE/settings.po index 6199dd974aa..5c4122bdcd3 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "მომხმარებლის სახელი" @@ -486,6 +486,10 @@ msgstr "ულიმიტო" msgid "Other" msgstr "სხვა" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "საცავი" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index dd7d423f37f..2f4fc745181 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index feab760f672..bd955c14a2f 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-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 435aa50322b..27c2897d6ed 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 6ab3b890140..63a02389ae4 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "업데이트가 실패하였습니다. 이 문제를 \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 dddb0cd0935..2e5494e0786 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shinjo Park , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-19 08:50+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "경고: PHP Curl 지원이 비활성화되어 있거나 설치되지 않았습니다. 다른 ownCloud, WebDAV, Google 드라이브 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." #: templates/settings.php:3 msgid "External Storage" @@ -67,7 +68,7 @@ msgstr "폴더 이름" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "외부 저장소" #: templates/settings.php:11 msgid "Configuration" @@ -83,7 +84,7 @@ msgstr "적용 가능" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "저장소 추가" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index b7f2b6879a5..97af57e60ea 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-19 08:44+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 345feb4851c..d38a2d5a5fd 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index ce0e200f0ba..f92a6302698 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shinjo Park , 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:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-19 08:50+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,12 +25,12 @@ msgstr "되돌릴 수 없습니다: %s" #: history.php:40 msgid "success" -msgstr "완료" +msgstr "성공" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "파일 %s를 버전 %s로 변경하였습니다." +msgstr "파일 %s을(를) 버전 %s(으)로 되돌림" #: history.php:49 msgid "failure" @@ -38,20 +39,20 @@ msgstr "실패" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "파일 %s를 버전 %s로 되돌리지 못했습니다." +msgstr "파일 %s을(를) 버전 %s(으)로 되돌리지 못했음" #: history.php:69 msgid "No old versions available" -msgstr "오래된 버전을 사용할 수 없습니다" +msgstr "오래된 버전을 사용할 수 없음" #: history.php:74 msgid "No path specified" -msgstr "경로를 알수 없습니다." +msgstr "경로가 지정되지 않았음" #: js/versions.js:6 msgid "Versions" -msgstr "버젼" +msgstr "버전" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "변경 버튼을 클릭하여 이전 버전의 파일로 변경할 수 있습니다." +msgstr "변경 단추를 눌러 이전 버전의 파일로 되돌릴 수 있습니다" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index d0e2ac9b500..aea79c0c2d5 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-19 08:50+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" @@ -180,12 +180,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." #: setup.php:871 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "설치 가이드를 다시 한 번 확인하십시오." #: template.php:113 msgid "seconds ago" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index aa9163d4530..c595446f19c 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shinjo Park , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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,19 +29,19 @@ msgstr "인증 오류" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "표시 이름이 변경되었습니다." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "표시 이름을 변경할 수 없음" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "그룹이 이미 존재합니다." +msgstr "그룹이 이미 존재함" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "그룹을 추가할 수 없습니다." +msgstr "그룹을 추가할 수 없음" #: ajax/enableapp.php:11 msgid "Could not enable app. " @@ -56,15 +57,15 @@ msgstr "잘못된 이메일 주소" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "그룹을 삭제할 수 없습니다." +msgstr "그룹을 삭제할 수 없음" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "사용자를 삭제할 수 없습니다." +msgstr "사용자를 삭제할 수 없음." #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "언어가 변경되었습니다" +msgstr "언어가 변경됨" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" @@ -72,25 +73,25 @@ msgstr "잘못된 요청" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "관리자 자신을 관리자 그룹에서 삭제할 수 없습니다" +msgstr "관리자 자신을 관리자 그룹에서 삭제할 수 없음" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "그룹 %s에 사용자를 추가할 수 없습니다." +msgstr "그룹 %s에 사용자를 추가할 수 없음" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "그룹 %s에서 사용자를 삭제할 수 없습니다." +msgstr "그룹 %s에서 사용자를 삭제할 수 없음" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "앱을 업데이트할 수 없습니다." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "버전 {appversion}(으)로 업데이트" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -102,7 +103,7 @@ msgstr "사용함" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "기다려 주십시오...." #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" @@ -110,15 +111,15 @@ msgstr "오류" #: js/apps.js:90 msgid "Updating...." -msgstr "" +msgstr "업데이트 중...." #: js/apps.js:93 msgid "Error while updating app" -msgstr "" +msgstr "앱을 업데이트하는 중 오류 발생" #: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "업데이트됨" #: js/personal.js:118 msgid "Saving..." @@ -126,15 +127,15 @@ msgstr "저장 중..." #: js/users.js:47 msgid "deleted" -msgstr "삭제" +msgstr "삭제됨" #: js/users.js:47 msgid "undo" -msgstr "되돌리기" +msgstr "실행 취소" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "사용자를 삭제할 수 없음" #: js/users.js:92 templates/users.php:26 templates/users.php:87 #: templates/users.php:112 @@ -151,19 +152,19 @@ msgstr "삭제" #: js/users.js:269 msgid "add group" -msgstr "" +msgstr "그룹 추가" #: js/users.js:428 msgid "A valid username must be provided" -msgstr "" +msgstr "올바른 사용자 이름을 입력해야 함" #: js/users.js:429 js/users.js:435 js/users.js:450 msgid "Error creating user" -msgstr "" +msgstr "사용자 생성 오류" #: js/users.js:434 msgid "A valid password must be provided" -msgstr "" +msgstr "올바른 암호를 입력해야 함" #: personal.php:35 personal.php:36 msgid "__language_name__" @@ -190,26 +191,26 @@ msgstr "설정 경고" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "설치 가이드를 다시 한 번 확인하십시오." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "모듈 'fileinfo'가 없음" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "로캘이 작동하지 않음" #: templates/admin.php:63 #, php-format @@ -217,11 +218,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "ownCloud 서버의 시스템 로캘을 %s(으)로 설정할 수 없습니다. 파일 이름에 특정한 글자가 들어가 있는 경우 문제가 발생할 수 있습니다. %s을(를) 지원하기 위해서 시스템에 필요한 패키지를 설치하는 것을 추천합니다." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "인터넷에 연결할 수 없음" #: templates/admin.php:78 msgid "" @@ -231,7 +232,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "ownCloud 서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 외부 앱 설치 등이 작동하지 않을 것입니다. 외부에서 파일에 접근하거나, 알림 이메일을 보내지 못할 수도 있습니다. ownCloud의 모든 기능을 사용하려면 이 서버를 인터넷에 연결하는 것을 추천합니다." #: templates/admin.php:92 msgid "Cron" @@ -239,74 +240,74 @@ msgstr "크론" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "개별 페이지를 불러올 때마다 실행" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php가 webcron 서비스에 등록되어 있습니다. HTTP를 통하여 1분마다 ownCloud 루트에서 cron.php 페이지를 불러옵니다." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "시스템 cron 서비스를 사용합니다. 시스템 cronjob을 사용하여 ownCloud 폴더의 cron.php 파일을 1분마다 불러옵니다." #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "공유" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "공유 API 사용하기" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "앱에서 공유 API를 사용할 수 있도록 허용" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "링크 허용" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "재공유 허용" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "누구나와 공유할 수 있도록 허용" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "보안" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "HTTPS 강제 사용" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "클라이언트가 ownCloud에 항상 암호화된 연결로 연결하도록 강제합니다." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "SSL 강제 사용 설정을 변경하려면 ownCloud 인스턴스에 HTTPS로 연결하십시오." #: templates/admin.php:195 msgid "Log" @@ -340,7 +341,7 @@ msgstr "ownCloud 커 #: templates/apps.php:13 msgid "Add your App" -msgstr "앱 추가" +msgstr "내 앱 추가" #: templates/apps.php:28 msgid "More Apps" @@ -388,7 +389,7 @@ msgstr "상업용 지원" #: templates/personal.php:9 msgid "Get the apps to sync your files" -msgstr "앱을 이용하여 당신의 파일을 동기화 할 수 있습니다." +msgstr "파일 동기화 앱 가져오기" #: templates/personal.php:20 msgid "Show First Run Wizard again" @@ -397,7 +398,7 @@ msgstr "첫 실행 마법사 다시 보이기" #: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" -msgstr "현재 공간 %s/%s을(를) 사용 중입니다" +msgstr "현재 공간 중 %s/%s을(를) 사용 중입니다" #: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" @@ -437,7 +438,7 @@ msgstr "이메일 주소" #: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" -msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오." +msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오" #: templates/personal.php:86 templates/personal.php:87 msgid "Language" @@ -453,9 +454,9 @@ msgstr "WebDAV" #: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오." +msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "로그인 이름" @@ -465,13 +466,13 @@ msgstr "만들기" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "관리자 복구 암호" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 암호를 입력하십시오" #: templates/users.php:42 msgid "Default Storage" @@ -485,6 +486,10 @@ msgstr "무제한" msgid "Other" msgstr "기타" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "저장소" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 2a7f029a24c..d991b819e30 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3d7f4901305..78e87007d74 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "ناوی به‌کارهێنه‌ر" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 9a2ff3ef129..e162e33d632 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_sharing.po b/l10n/ku_IQ/files_sharing.po index 49c080d51a9..211202fbcae 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 d6142b72fac..08b3b8a14bf 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3faafe6ae2f..87000267233 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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 23c924fca50..92b20817281 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index db31efefc06..65e2d1acec5 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 b5a1a44c7f6..86ae1a30f23 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud Passwuert reset" @@ -403,17 +403,17 @@ msgstr "Benotzernumm" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Reset ufroen" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 512574955fc..18f3d5206d9 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/lb/files_external.po index 5d7c62b0249..bb4ccba1447 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a8a1efd8714..f3424cf9e6a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 77c023839e4..a91b329c81e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 5edb6bf7cbb..57c7170f45d 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/lb/settings.po index 95d50e408f5..94b23d8113b 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Aner" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index c446c6cde9c..016321ae704 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 87326451f02..1d7345a5448 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the \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 279e4ecca21..5f2e3c973ad 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 1170e9cd742..130e74a8ca8 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 8a19d2228cb..22c02c76210 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 50969599f62..17e417b1282 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/lt_LT/settings.po index fc2e5cbde3b..50a0c6b8898 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Kita" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index e08e73f0041..692455fe6bb 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 989e1dd0fe6..aeecdbcc0b4 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud paroles maiņa" @@ -403,17 +403,17 @@ msgstr "Lietotājvārds" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Pieprasīt paroles maiņu" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 9974169f78e..70e336f3c2e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/lv/files_external.po index fd24572a4e0..5091aef9775 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 4b4344dd016..e6589d84711 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 551916f2e67..268e5cb83b7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 0cae6dff22c..2b31d77e2b7 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/lv/settings.po index 1e817ddafb5..808050d5e9e 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Ierakstīšanās vārds" @@ -485,6 +485,10 @@ msgstr "Neierobežota" msgid "Other" msgstr "Cits" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Krātuve" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 7344f655cc8..3236dc529c0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 b06c38b7a88..ceab38ec52c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ресетирање на лозинка за ownCloud" @@ -403,17 +403,17 @@ msgstr "Корисничко име" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Побарајте ресетирање" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 5abc414a934..64bdee0d821 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/mk/files_external.po index 7e263fe17ab..9ee5208ae17 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 2b8e2ee9dde..6d4e7de6362 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 08b963c0d4e..a0671097039 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 49860ec5621..88f504ec8da 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/mk/settings.po index ec030617127..6aab64dd580 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Останато" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index de26e6ebdc7..542594ee036 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 fd9a55023c3..b9bfecf040b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Set semula kata lalaun ownCloud" @@ -403,17 +403,17 @@ msgstr "Nama pengguna" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Permintaan set semula" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 8edf34b6420..8a161d8d0b8 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/ms_MY/files_external.po index d300593600a..925a8bbca01 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 dd3c5ff0668..565b4ef1731 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 041abd2e684..527461b4c67 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 36e1349d02e..6fb1d26b7cd 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/ms_MY/settings.po index 5b1db982a61..dc8796f58d6 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Lain" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index fa4b72f8bfc..af984227476 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 9fbe6b5d25a..3fda0f72324 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "သုံးစွဲသူအမည်" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index e4ca429ac61..933a4375586 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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/files_sharing.po b/l10n/my_MM/files_sharing.po index 1849762a5c5..12295a5dd03 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 1ca175b3a38..61bff8a5029 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/my_MM/settings.po index 6053a208e82..c58c75e3274 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 449a9b2e806..3b208318842 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Tilbakestill ownCloud passord" @@ -403,17 +403,17 @@ msgstr "Brukernavn" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Anmod tilbakestilling" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index bfeb7955582..c6640901f21 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/nb_NO/files_external.po index 51bf909ab15..26aa1e8ef9e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 494e23d3851..bd9e4234c9a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 ac4a0b06dde..4561e8382d2 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 2287b927bab..1f6206fdbf8 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/nb_NO/settings.po index e2703aba198..ab670d68634 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Logginn navn" @@ -486,6 +486,10 @@ msgstr "Ubegrenset" msgid "Other" msgstr "Annet" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Lager" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 42dd8895699..ef275a2e264 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 049092f64c4..f9febd9c8da 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-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 4c04e9f3f2d..ae9c39a29d8 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 5bd0934936f..3b5fc2bedbc 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "De update is niet geslaagd. Meld dit probleem aan bij de \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 65456eb1a55..d8b9b5dc11d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3f358b5f3fc..b17f21eda49 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 0d0ebd61dc9..ee6c5a604a0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 d92616fec69..bfbd39f38ce 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/nl/settings.po index 9c5531667f2..bbc411248e1 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Inlognaam" @@ -487,6 +487,10 @@ msgstr "Ongelimiteerd" msgid "Other" msgstr "Anders" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Opslaglimiet" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index d4fd310eb09..e38b9f4e5d9 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 9f29b965321..f45f12d5869 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "Oppdateringa feila. Ver venleg og rapporter feilen til \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 c852482e2d7..a97047e26cc 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c719092380a..a637487a09b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c5343cdc10e..d076d377ad6 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 b7a3c9a5270..731025e3335 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/nn_NO/settings.po index 4e2518f5e14..6691b5fdd17 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Innloggingsnamn" @@ -487,6 +487,10 @@ msgstr "Ubegrensa" msgid "Other" msgstr "Anna" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Lagring" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index b60eab63d97..7f17e1d4acc 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c45baab2215..e6829f4ada4 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "senhal d'ownCloud tornat botar" @@ -403,17 +403,17 @@ msgstr "Non d'usancièr" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Tornar botar requesit" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index f9c028e8ba3..34b7621753a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/oc/files_external.po index c1e89d8c209..a8982c06c13 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 55334c7b386..41ffa94fece 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 2cc5a6be43e..d1564e43cce 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 f0370c527a9..6310138439b 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 00:13+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 8ef4194513d..5602d0f5543 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Autres" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 327fb142595..8caf04f0770 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 166959ad346..333068ba18d 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem \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 4355e11e1aa..7fa9637f660 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 7e3f65d3e04..3b71d8e3518 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 057a6d45748..983ccf1a41f 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3dd674aa261..96d8b679507 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/pl/settings.po index 3b4b174c8ee..2dda16be6fa 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Login" @@ -487,6 +487,10 @@ msgstr "Bez limitu" msgid "Other" msgstr "Inne" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Magazyn" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 0844f4966ea..92bc0fdfc21 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 24c6633daae..0729dfebacd 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "A atualização falhou. Por favor, relate este problema para a \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 2b4961578c0..55e2b73bde8 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 2a18d32ef31..af8cb5a0b56 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 b1efddcd998..4e1a9122075 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 aacd4fe1d56..2a401807b65 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/pt_BR/settings.po index edc25fa74db..e01a1efcbb3 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: bjamalaro \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -457,7 +457,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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nome de Login" @@ -487,6 +487,10 @@ msgstr "Ilimitado" msgid "Other" msgstr "Outro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Armazenamento" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index f5e0ff49573..425d5d883be 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 4b4eec07dc6..08bc7e98b0d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "A actualização falhou. Por favor reporte este incidente seguindo este msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Reposição da password ownCloud" @@ -405,17 +405,17 @@ msgstr "Nome de utilizador" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Pedir reposição" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 9a29b920e21..b9018aa97ea 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 df51e6e9c18..23881e019af 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a2f54eba545..fe0c04a0985 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 2d760918f50..7d6d1ef6b83 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 79c33e6fb06..f6168e8a75e 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 0091e9b955c..42457e18d13 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Nelson Rosado \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -458,7 +458,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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nome de utilizador" @@ -488,6 +488,10 @@ msgstr "Ilimitado" msgid "Other" msgstr "Outro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Armazenamento" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index f30f8d5c49c..8ee4c7b500b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 39679306bbc..a673e3d4bc6 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "Modernizarea a eșuat! \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 e09c56f430e..66eae57affc 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 efad360988f..dba3209a698 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 aa666876151..d28ddc06426 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 ee4acac1209..a1ada69848a 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/ro/settings.po index 8ce6275f98e..dec69e6df54 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "Nelimitată" msgid "Other" msgstr "Altele" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Stocare" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 6a4da4c9315..d619372d5e7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 c6e4faf1717..eb2e189c3c8 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# alfsoft , 2013 # foool , 2013 # Vyacheslav Muranov , 2013 # Langaru , 2013 @@ -10,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -23,7 +24,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." @@ -376,7 +377,7 @@ msgstr "При обновлении произошла ошибка. Пожал msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud..." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Сброс пароля " @@ -406,17 +407,17 @@ msgstr "Имя пользователя" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Да, я действительно хочу сбросить свой пароль" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Запросить сброс" @@ -473,7 +474,7 @@ 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" @@ -615,7 +616,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/ru/files.po b/l10n/ru/files.po index 0841c4f3f51..7db0a847426 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index b1bc75c9e28..e775118fd1e 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Ант По , 2013 +# alfsoft , 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-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 18:20+0000\n" +"Last-Translator: alfsoft \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" @@ -20,7 +21,7 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Ключ восстановления успешно установлен" #: ajax/adminrecovery.php:34 msgid "" @@ -29,7 +30,7 @@ msgstr "" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Ключ восстановления успешно отключен" #: ajax/adminrecovery.php:53 msgid "" @@ -77,7 +78,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "персональные настройки" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -128,7 +129,7 @@ msgstr "" 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" @@ -150,7 +151,7 @@ msgstr "" 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/ru/files_external.po b/l10n/ru/files_external.po index d1d2bdae79d..622cb8655e4 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 793d2e4313e..48d46076a04 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 26d23e4e2b4..8fa1e749fac 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 fe0233fe3ed..729811d7767 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 146aea670cc..1c1eba999b8 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# alfsoft , 2013 # eurekafag , 2013 # Friktor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -457,7 +458,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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Имя пользователя" @@ -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" @@ -487,6 +488,10 @@ msgstr "Неограниченно" msgid "Other" msgstr "Другое" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Хранилище" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 42258630834..6e420385c35 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # Fenuks , 2013 +# alfsoft , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" -"Last-Translator: Fenuks \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"Last-Translator: alfsoft \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" @@ -359,7 +360,7 @@ msgid "" "achieve a similar behaviour as before ownCloud 5 enter the user display name" " attribute in the following field. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "По-умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Это необходимо для того, чтобы имя пользователя было уникальным и не содержало в себе запрещенных символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по-умолчанию для папки пользователя в ownCloud. Оно также портом для удаленных ссылок, к примеру, для всех сервисов *DAV. С помощию данной настройки можно изменить поведение по-умолчанию. Чтобы достичь поведения, как было настроено до изменения, ownCloud 5 выводит атрибут имени пользователя в этом поле. Оставьте его пустым для режима по-умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -378,7 +379,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -401,7 +402,7 @@ msgid "" "configuration sensitive, it affects all LDAP configurations! Do never clear " "the mappings in a production environment. Only clear mappings in a testing " "or experimental stage." -msgstr "" +msgstr "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует наличия соответствия имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кэшируется доменное имя (DN) для снижения взаимодействия LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. При очистке соответствий повсюду будут оставаться \"хвосты\". Очистка соответствий не привязана к конкретной конфигурации, она влияет на все конфигурации LDAP! Никогда не очищайте соответствия в рабочем окружении. Очищайте соответствия только во время тестов или в экспериментальных конфигурациях." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 76afa929158..76b5e7133dc 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud මුරපදය ප්‍රත්‍යාරම්භ කරන්න" @@ -403,17 +403,17 @@ msgstr "පරිශීලක නම" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b57b9b2e33b..7d3d7be6c25 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/si_LK/files_external.po index d0462af78c5..691823c348d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 41e8620557a..f7a2c4679fe 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 ca694915d0c..492a724f30e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 e71e65734ac..828721cf1a5 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/si_LK/settings.po index 0b0e7809bbc..e560b8119e4 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "වෙනත්" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index d3fdb1d1cb2..0a154f10928 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 4910cee063b..445c6c56a60 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-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 145d6154a7e..f5acdcadf80 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 30cb2fc0ed5..3776146df07 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "Aktualizácia nebola úspešná. Problém nahláste na \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 e9dfd3c1faa..d8234362428 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 2c5230b58a4..ecef7a619de 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c5f289c2eff..2ab26f9e0f2 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a8be2af5002..75187ce7e5e 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/sk_SK/settings.po index 8c86911261c..e0c8adf6b92 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Prihlasovacie meno" @@ -486,6 +486,10 @@ msgstr "Nelimitované" msgid "Other" msgstr "Iné" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Úložisko" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index e631f4308e5..9f4af4a543a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 e69ffc6d173..80d4aa09b93 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu \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 a6add059200..a81b3adc4cd 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c4a1ede576b..863c9a7a479 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 40beaa5ec1f..581b0b99749 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 72a75911e0e..ebae3210a53 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/sl/settings.po index aa17f1fd1e8..9b8ef4081eb 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Prijavno ime" @@ -486,6 +486,10 @@ msgstr "Neomejeno" msgid "Other" msgstr "Drugo" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Shramba" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 410ea6e96c8..d4303cb9063 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 0362c0f0f6a..47885c4782a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem \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 a2181f4cebe..7762dd7790d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 0c60f8e7c5c..2b2036cb1a7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 b96bc446274..a3f50ea2ec1 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 92b62f4aa4a..8505ea8ede3 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/sq/settings.po index 340937b73c4..b05821f97a9 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index bd1917ce31d..aa13ffc94ff 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a6d663290a3..635d71bf730 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Поништавање лозинке за ownCloud" @@ -403,17 +403,17 @@ msgstr "Корисничко име" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Захтевај ресетовање" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 8487dbcdfde..aaab267489c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/sr/files_external.po index b6c024e5807..33a5c8be41c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 7c642b6d9f6..8b9058c0cc2 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 cc08e12f5ff..6abaf004f44 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 cfcf7765ffe..e8bb02dcc5e 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/sr/settings.po index ef9e66002d0..29b1234e5b5 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Корисничко име" @@ -485,6 +485,10 @@ msgstr "Неограничено" msgid "Other" msgstr "Друго" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Складиште" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index b566229fdd7..376723eaf64 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 6c6a9f39832..d3e5c203bb0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "Korisničko ime" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Zahtevaj resetovanje" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index bb38a5e94f5..a17aa2223b8 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/sr@latin/files_external.po index 0fe4dfceb18..68c91aa83dd 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 06ec8f8903a..e6a56c9c99f 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 6d937f02f1c..5c0949d467e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 03dde2026b4..5a8270d20f5 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/sr@latin/settings.po index 47009db2cb1..c9838e97baa 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Drugo" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 1df944df27f..e6677c35763 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -376,7 +376,7 @@ msgstr "Uppdateringen misslyckades. Rapportera detta problem till \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 65010140e99..56605056f53 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-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 16:00+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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" @@ -151,7 +151,7 @@ msgstr "Aktivera lösenordsåterställning" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index cb4b4562d25..68a9891511a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 672c00adeac..e38b2d7af35 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 4bfc8f87697..1342ee0e602 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 d65f50002f4..1cf77f3aed2 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/sv/settings.po index ac2feb19132..3ac80cfeca8 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Gunnar Norin \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -459,7 +459,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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Inloggningsnamn" @@ -489,6 +489,10 @@ msgstr "Obegränsad" msgid "Other" msgstr "Annat" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Lagring" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 2a46fd76077..a67b7cde93b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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/core.po b/l10n/sw_KE/core.po index 1fc1e959455..684e3ec49c6 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-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 668dde05ff3..01bbab7a248 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-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 +#: templates/personal.php:9 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:20 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:28 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: 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 "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 97f45ad61e2..b8d1e342b35 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud இன் கடவுச்சொல் மீளமைப்பு" @@ -403,17 +403,17 @@ msgstr "பயனாளர் பெயர்" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "கோரிக்கை மீளமைப்பு" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index e6d77aa686c..b5f06933682 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/ta_LK/files_external.po index f6143aff034..9e31b09d6f5 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 75eb7467a2a..9d6a261a4f4 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3cd0745c435..2d12db27c01 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 1149d963bf4..e25aaae2099 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/ta_LK/settings.po index 4d71ce572ad..7400ddf0f1d 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "மற்றவை" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 5ecd014ccff..23400388677 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 56fd49d0875..1f75cf864a5 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "వాడుకరి పేరు" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index fbeedda4d96..8c548cedf8d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/te/files_external.po index ab3962c0ca5..7a9afec176b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 9bf88336a0a..314732f42f7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 2fccc35c541..c1e3a598c30 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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 08ddb3568f2..f53dd580f8d 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 6e0caff4637..898b58b8e6e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 b8268a00c81..7da1f84a5bb 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index d361349ded1..610eb6a0e96 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:36+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 0be4454a96a..b8b591f0659 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:36+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 eddde9e6db4..f32754dfbaa 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:36+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 19dbe5af2c3..bc5d327dd40 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+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 5083a4af5f3..f3a39fcc23c 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+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 1888b006106..04bda81c996 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+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 f590078f67e..75a15683dc4 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-18 02:05+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+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 cf71b2630b9..953d83a0115 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-18 02:05+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ac9b0adc35f..296e4ea53f5 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+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 891723aaee7..e94801398c3 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-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+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 d035df9d430..fb6f5828b1e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "การอัพเดทไม่เป็นผลสำเร็จ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "รีเซ็ตรหัสผ่าน ownCloud" @@ -403,17 +403,17 @@ msgstr "ชื่อผู้ใช้งาน" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "ขอเปลี่ยนรหัสใหม่" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index ca5890d3bf7..9b3fcf2ad01 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/th_TH/files_external.po index 49fefce6f47..555256c98a0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 d2645c87d55..432d769ceaf 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 4a33cc3a9d5..a29bf9dab13 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 38727ddad82..d547fe96ce8 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/th_TH/settings.po index 85de4cc2134..27f3b5cd530 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "ชื่อที่ใช้สำหรับเข้าสู่ระบบ" @@ -485,6 +485,10 @@ msgstr "ไม่จำกัดจำนวน" msgid "Other" msgstr "อื่นๆ" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "พื้นที่จัดเก็บข้อมูล" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 91e1143068f..4c229bf04bf 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+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 3d673fccf9d..ad33125d5aa 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin \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 e6b03a315ef..258a3ce1e2d 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 ef103f54652..8f1e4fbfef1 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 cac84aa2c05..e6fe5b68bec 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3b8cf94d08b..8fd8b94f267 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/tr/settings.po b/l10n/tr/settings.po index d7be2a35d29..bbd5324ff7b 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Giriş Adı" @@ -486,6 +486,10 @@ msgstr "Limitsiz" msgid "Other" msgstr "Diğer" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Depolama" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 32c7be36154..ef44ce7c6cc 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 ff21d7418b3..00cc27368f7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "ئىشلەتكۈچى ئاتى" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 30195bbf90d..2922c4a2212 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 22c1597b409..2c0da065a62 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 0683edc01d8..02c4392e608 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c428d6b843e..4f0d187ed76 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 00954cc5178..9aaee0fbfc2 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+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 6cfc067e979..f126a940308 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "تىزىمغا كىرىش ئاتى" @@ -485,6 +485,10 @@ msgstr "چەكسىز" msgid "Other" msgstr "باشقا" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "ساقلىغۇچ" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index ece52c093f2..cd50dee58eb 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 154cc17f944..7f91d00254b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "Оновлення виконалось неуспішно. Будь л msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "скидання пароля ownCloud" @@ -403,17 +403,17 @@ msgstr "Ім'я користувача" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Запит скидання" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index b4f74b99b08..0ff24018a3e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/uk/files_external.po index c24147f7b66..65d6bb42458 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 c6eecb1a585..26ba19e0467 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 79239521bf0..4bf59eddfd0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 176f4c85dc4..db2b45bb282 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/uk/settings.po index 5282f8888c1..bb92f7d649d 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Ім'я Логіну" @@ -485,6 +485,10 @@ msgstr "Необмежено" msgid "Other" msgstr "Інше" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Сховище" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 09729c23839..9d3c12b9666 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 f75e7512371..a3366d3a143 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "اون کلاؤڈ پاسورڈ ری سیٹ" @@ -403,17 +403,17 @@ msgstr "یوزر نیم" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "ری سیٹ کی درخواست کریں" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 01f8e2016ca..51252b6fe14 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 889ca75c108..a45fc961be4 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 ffd3f065ba9..8b98a230898 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 00:13+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 63617950217..d83721115e0 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 2434c645b3a..45078154604 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 0bc1ed8ae66..98bce5ec539 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "Cập nhật không thành công . Vui lòng thông báo đến \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 3cc75649bda..5d7a7dffaa6 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a995600c0e8..5fcfc9815ee 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 63d11064fdf..64f094cea08 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 8c9c753e8eb..df72dc1f3b0 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/vi/settings.po index e6c83125bf4..bdfd8e0a85f 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Tên đăng nhập" @@ -485,6 +485,10 @@ msgstr "Không giới hạn" msgid "Other" msgstr "Khác" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Bộ nhớ" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index a286cf0e7bb..a65956714e0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 692dba1d71f..b1b2e47f3f7 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -375,7 +375,7 @@ msgstr "升级失败。请向\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 1573b564c8f..49b189a8d6b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 cf575798dd4..0f84297bc74 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 f84d2cc0fa6..92d5927675e 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 24bcd47460a..5bf55df5867 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/zh_CN.GB2312/settings.po index 4a9e28313f6..ca099c63199 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "登录名" @@ -486,6 +486,10 @@ msgstr "无限制" msgid "Other" msgstr "其他" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "容量" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 656b6c2c0d3..903b4996da9 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 fae12fa18da..dc94c2f0a1b 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "更新不成功。请汇报将此问题汇报给 \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 fa2308904c6..ac18f3ac080 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 8f5642d27c8..9db06469b34 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 fe11229bd8c..0cb623efb1a 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 f99970bdbf6..aa95f9543ba 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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_CN/settings.po b/l10n/zh_CN/settings.po index 30f123b1c47..dcb303f27eb 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "登录名称" @@ -487,6 +487,10 @@ msgstr "无限" msgid "Other" msgstr "其它" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "存储" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 6b003df1483..dc5e4da435c 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 a3cc301fbbc..b76c08c2aee 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "更新成功, 正" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "用戶名稱" #: lostpassword/templates/lostpassword.php:22 msgid "" -"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?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "重設" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 26fc8577676..4312de55eb1 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 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_external.po b/l10n/zh_HK/files_external.po index 5920df66af7..f2f5b603f83 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 011b83a5cdc..25a5f56b677 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3a8d9f9fe86..d9919ed9706 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 3edab0d07da..dfa65b5f23d 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/zh_HK/settings.po index 0ce83b2e978..ef4d61b3d1b 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index ff435eb4ee0..d111deb8979 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 4521623ad84..365c7377507 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -374,7 +374,7 @@ msgstr "升級失敗,請將此問題回報 \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 4f54fefcc7d..b5368be4953 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 8e948a8ecfc..720222f2643 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 7cac89f323b..757f23648d2 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+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 7841bdd34b1..e0f2705ea22 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 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/settings.po b/l10n/zh_TW/settings.po index 07a13cbee08..96d7376c8b9 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-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+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" @@ -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:84 +#: templates/users.php:21 msgid "Login Name" msgstr "登入名稱" @@ -486,6 +486,10 @@ msgstr "無限制" msgid "Other" msgstr "其他" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "儲存區" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 8008599c38d..51d7a7206d0 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-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index bf2a68369f1..bfb99544a3b 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -16,6 +16,8 @@ "Files" => "파일", "Text" => "텍스트", "Images" => "그림", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", +"Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", "seconds ago" => "초 전", "1 minute ago" => "1분 전", "%d minutes ago" => "%d분 전", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 872e8f971da..636a3e2c952 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -102,6 +102,7 @@ "Login Name" => "Bejelentkezési név", "Create" => "Létrehozás", "Admin Recovery Password" => "A jelszóvisszaállítás adminisztrációja", +"Enter the recovery password in order to recover the users files during password change" => "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetre, ha a felhasználók megváltoztatják a jelszavukat", "Default Storage" => "Alapértelmezett tárhely", "Unlimited" => "Korlátlan", "Other" => "Más", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index c58a578cae8..ee80477d224 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,39 +1,76 @@ "앱 스토어에서 목록을 가져올 수 없습니다", "Authentication error" => "인증 오류", -"Group already exists" => "그룹이 이미 존재합니다.", -"Unable to add group" => "그룹을 추가할 수 없습니다.", +"Your display name has been changed." => "표시 이름이 변경되었습니다.", +"Unable to change display name" => "표시 이름을 변경할 수 없음", +"Group already exists" => "그룹이 이미 존재함", +"Unable to add group" => "그룹을 추가할 수 없음", "Could not enable app. " => "앱을 활성화할 수 없습니다.", "Email saved" => "이메일 저장됨", "Invalid email" => "잘못된 이메일 주소", -"Unable to delete group" => "그룹을 삭제할 수 없습니다.", -"Unable to delete user" => "사용자를 삭제할 수 없습니다.", -"Language changed" => "언어가 변경되었습니다", +"Unable to delete group" => "그룹을 삭제할 수 없음", +"Unable to delete user" => "사용자를 삭제할 수 없음.", +"Language changed" => "언어가 변경됨", "Invalid request" => "잘못된 요청", -"Admins can't remove themself from the admin group" => "관리자 자신을 관리자 그룹에서 삭제할 수 없습니다", -"Unable to add user to group %s" => "그룹 %s에 사용자를 추가할 수 없습니다.", -"Unable to remove user from group %s" => "그룹 %s에서 사용자를 삭제할 수 없습니다.", +"Admins can't remove themself from the admin group" => "관리자 자신을 관리자 그룹에서 삭제할 수 없음", +"Unable to add user to group %s" => "그룹 %s에 사용자를 추가할 수 없음", +"Unable to remove user from group %s" => "그룹 %s에서 사용자를 삭제할 수 없음", +"Couldn't update app." => "앱을 업데이트할 수 없습니다.", +"Update to {appversion}" => "버전 {appversion}(으)로 업데이트", "Disable" => "비활성화", "Enable" => "사용함", +"Please wait...." => "기다려 주십시오....", "Error" => "오류", +"Updating...." => "업데이트 중....", +"Error while updating app" => "앱을 업데이트하는 중 오류 발생", +"Updated" => "업데이트됨", "Saving..." => "저장 중...", -"deleted" => "삭제", -"undo" => "되돌리기", +"deleted" => "삭제됨", +"undo" => "실행 취소", +"Unable to remove user" => "사용자를 삭제할 수 없음", "Groups" => "그룹", "Group Admin" => "그룹 관리자", "Delete" => "삭제", +"add group" => "그룹 추가", +"A valid username must be provided" => "올바른 사용자 이름을 입력해야 함", +"Error creating user" => "사용자 생성 오류", +"A valid password must be provided" => "올바른 암호를 입력해야 함", "__language_name__" => "한국어", "Security Warning" => "보안 경고", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 것 같습니다. ownCloud에서 제공한 .htaccess 파일이 작동하지 않습니다. 웹 서버를 다시 설정하여 데이터 디렉터리에 접근할 수 없도록 하거나 문서 루트 바깥쪽으로 옮기는 것을 추천합니다.", "Setup Warning" => "설정 경고", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", +"Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", +"Module 'fileinfo' missing" => "모듈 'fileinfo'가 없음", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.", +"Locale not working" => "로캘이 작동하지 않음", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 서버의 시스템 로캘을 %s(으)로 설정할 수 없습니다. 파일 이름에 특정한 글자가 들어가 있는 경우 문제가 발생할 수 있습니다. %s을(를) 지원하기 위해서 시스템에 필요한 패키지를 설치하는 것을 추천합니다.", +"Internet connection not working" => "인터넷에 연결할 수 없음", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud 서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 외부 앱 설치 등이 작동하지 않을 것입니다. 외부에서 파일에 접근하거나, 알림 이메일을 보내지 못할 수도 있습니다. ownCloud의 모든 기능을 사용하려면 이 서버를 인터넷에 연결하는 것을 추천합니다.", "Cron" => "크론", +"Execute one task with each page loaded" => "개별 페이지를 불러올 때마다 실행", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php가 webcron 서비스에 등록되어 있습니다. HTTP를 통하여 1분마다 ownCloud 루트에서 cron.php 페이지를 불러옵니다.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "시스템 cron 서비스를 사용합니다. 시스템 cronjob을 사용하여 ownCloud 폴더의 cron.php 파일을 1분마다 불러옵니다.", +"Sharing" => "공유", +"Enable Share API" => "공유 API 사용하기", +"Allow apps to use the Share API" => "앱에서 공유 API를 사용할 수 있도록 허용", +"Allow links" => "링크 허용", +"Allow users to share items to the public with links" => "사용자가 개별 항목의 링크를 공유할 수 있도록 허용", +"Allow resharing" => "재공유 허용", +"Allow users to share items shared with them again" => "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용", +"Allow users to share with anyone" => "누구나와 공유할 수 있도록 허용", +"Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용", +"Security" => "보안", +"Enforce HTTPS" => "HTTPS 강제 사용", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "클라이언트가 ownCloud에 항상 암호화된 연결로 연결하도록 강제합니다.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "SSL 강제 사용 설정을 변경하려면 ownCloud 인스턴스에 HTTPS로 연결하십시오.", "Log" => "로그", "Log level" => "로그 단계", "More" => "더 중요함", "Less" => "덜 중요함", "Version" => "버전", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다.", -"Add your App" => "앱 추가", +"Add your App" => "내 앱 추가", "More Apps" => "더 많은 앱", "Select an App" => "앱 선택", "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", @@ -45,9 +82,9 @@ "Forum" => "포럼", "Bugtracker" => "버그 트래커", "Commercial Support" => "상업용 지원", -"Get the apps to sync your files" => "앱을 이용하여 당신의 파일을 동기화 할 수 있습니다.", +"Get the apps to sync your files" => "파일 동기화 앱 가져오기", "Show First Run Wizard again" => "첫 실행 마법사 다시 보이기", -"You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", +"You have used %s of the available %s" => "현재 공간 중 %s/%s을(를) 사용 중입니다", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", @@ -57,13 +94,15 @@ "Display Name" => "표시 이름", "Email" => "이메일", "Your email address" => "이메일 주소", -"Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오.", +"Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오", "Language" => "언어", "Help translate" => "번역 돕기", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오.", +"Use this address to connect to your ownCloud in your file manager" => "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오", "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/ru.php b/settings/l10n/ru.php index 3d852d3b20b..32b7b65e90e 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.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" => "Другое", -- cgit v1.2.3 From 91c0b81130da4fc781ea700ca015e387947d3542 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Thu, 20 Jun 2013 10:18:29 +0200 Subject: add missing backticks guys, please ... --- lib/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/user/database.php b/lib/user/database.php index d70b620f2ab..9f00a022d9f 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -85,7 +85,7 @@ class OC_User_Database extends OC_User_Backend { */ public function deleteUser( $uid ) { // Delete user-group-relation - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*users` WHERE uid = ?' ); + $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*users` WHERE `uid` = ?' ); $query->execute( array( $uid )); return true; } -- cgit v1.2.3 From 3e3b66bd0d9a44ef43b6699220180a2b76b5df0e Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Mon, 24 Jun 2013 16:12:21 +0200 Subject: use to_char when comparing clob to string on oracle, use execute audited --- lib/connector/sabre/locks.php | 4 ++++ lib/connector/sabre/node.php | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index cbc495dec19..7aca2e43712 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -176,6 +176,10 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { public function unlock($uri, Sabre_DAV_Locks_LockInfo $lockInfo) { $sql = 'DELETE FROM `*PREFIX*locks` WHERE `userid` = ? AND `uri` = ? AND `token` = ?'; + if (OC_Config::getValue( "dbtype") === 'oci') { + //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison + $sql = 'DELETE FROM `*PREFIX*locks` WHERE `userid` = ? AND to_char(`uri`) = ? AND `token` = ?'; + } $result = OC_DB::executeAudited( $sql, array(OC_User::getUser(), $uri, $lockInfo->token)); return $result->numRows() === 1; diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 1ffa048d6b2..0bffa58af78 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -189,8 +189,8 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr */ public function getProperties($properties) { if (is_null($this->property_cache)) { - $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ?' ); - $result = $query->execute( array( OC_User::getUser(), $this->path )); + $sql = 'SELECT * FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ?'; + $result = OC_DB::executeAudited( $sql, array( OC_User::getUser(), $this->path ) ); $this->property_cache = array(); while( $row = $result->fetchRow()) { -- cgit v1.2.3 From c3b8f2bf64ef7b6cbdabb382b1c0a721bddb4041 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 25 Jun 2013 02:13:40 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/eo.php | 11 +++++++++- apps/files_encryption/l10n/el.php | 1 + apps/files_encryption/l10n/eo.php | 14 +++++++++++- apps/files_encryption/l10n/pl.php | 2 ++ apps/files_trashbin/l10n/eo.php | 1 + apps/user_ldap/l10n/es_AR.php | 12 +++++++++++ apps/user_webdavauth/l10n/el.php | 1 + apps/user_webdavauth/l10n/es_AR.php | 1 + core/l10n/el.php | 5 +++++ core/l10n/eo.php | 12 ++++++++++- core/l10n/es_AR.php | 5 +++++ l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 4 ++-- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 4 ++-- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 4 ++-- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/bs/core.po | 4 ++-- l10n/bs/files.po | 4 ++-- l10n/bs/files_trashbin.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/ca/files.po | 4 ++-- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/ca/user_ldap.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 4 ++-- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 4 ++-- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 4 ++-- l10n/de_DE/files.po | 4 ++-- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 20 ++++++++++------- l10n/el/files.po | 4 ++-- l10n/el/files_encryption.po | 10 +++++---- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 9 ++++---- l10n/el/settings.po | 11 ++++++---- l10n/el/user_ldap.po | 4 ++-- l10n/el/user_webdavauth.po | 9 ++++---- l10n/en@pirate/files.po | 4 ++-- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 27 ++++++++++++----------- l10n/eo/files.po | 25 ++++++++++----------- l10n/eo/files_encryption.po | 31 +++++++++++++------------- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 6 +++--- l10n/eo/lib.po | 43 +++++++++++++++++++------------------ l10n/eo/settings.po | 8 +++---- 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 | 16 +++++++------- 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 | 28 ++++++++++++------------ l10n/es_AR/user_webdavauth.po | 8 +++---- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 4 ++-- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 4 ++-- l10n/fa/files_external.po | 4 ++-- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 4 ++-- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 4 ++-- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 4 ++-- l10n/gl/files.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/gl/user_ldap.po | 4 ++-- l10n/he/core.po | 4 ++-- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 4 ++-- l10n/hr/core.po | 4 ++-- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/hu_HU/files.po | 4 ++-- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 4 ++-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 ++-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 4 ++-- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 4 ++-- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/it/user_ldap.po | 4 ++-- l10n/ja_JP/core.po | 4 ++-- l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ka/files.po | 4 ++-- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 4 ++-- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 4 ++-- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 4 ++-- l10n/lt_LT/settings.po | 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/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pl/files.po | 4 ++-- l10n/pl/files_encryption.po | 10 ++++----- 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/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 4 ++-- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 4 ++-- l10n/tr/files.po | 4 ++-- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 4 ++-- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 4 ++-- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- lib/l10n/el.php | 1 + lib/l10n/eo.php | 18 ++++++++++++++++ settings/l10n/el.php | 1 + settings/l10n/eo.php | 2 ++ 544 files changed, 1237 insertions(+), 1141 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 3eeb88754c7..d4cc7b2bb94 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -9,9 +9,11 @@ "No file was uploaded" => "Neniu dosiero alŝutiĝis.", "Missing a temporary folder" => "Mankas provizora dosierujo.", "Failed to write to disk" => "Malsukcesis skribo al disko", +"Not enough storage available" => "Ne haveblas sufiĉa memoro", "Invalid directory." => "Nevalida dosierujo.", "Files" => "Dosieroj", "Share" => "Kunhavigi", +"Delete permanently" => "Forigi por ĉiam", "Delete" => "Forigi", "Rename" => "Alinomigi", "Pending" => "Traktotaj", @@ -21,11 +23,14 @@ "cancel" => "nuligi", "replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}", "undo" => "malfari", +"perform delete operation" => "plenumi forigan operacion", "1 file uploading" => "1 dosiero estas alŝutata", "files uploading" => "dosieroj estas alŝutataj", "'.' is an invalid file name." => "'.' ne estas valida dosiernomo.", "File name cannot be empty." => "Dosiernomo devas ne malpleni.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas.", +"Your storage is full, files can not be updated or synced anymore!" => "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!", +"Your storage is almost full ({usedSpacePercent}%)" => "Via memoro preskaŭ plenas ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn", "Not enough space available" => "Ne haveblas sufiĉa spaco", @@ -41,6 +46,7 @@ "{count} folders" => "{count} dosierujoj", "1 file" => "1 dosiero", "{count} files" => "{count} dosierujoj", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nevalida dosierujnomo. La uzo de “Shared” estas rezervita de ownCloud.", "Unable to rename file" => "Ne eblis alinomigi dosieron", "Upload" => "Alŝuti", "File handling" => "Dosieradministro", @@ -55,12 +61,15 @@ "Text file" => "Tekstodosiero", "Folder" => "Dosierujo", "From link" => "El ligilo", +"Deleted files" => "Forigitaj dosieroj", "Cancel upload" => "Nuligi alŝuton", +"You don’t have write permissions here." => "Vi ne havas permeson skribi ĉi tie.", "Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", "Download" => "Elŝuti", "Unshare" => "Malkunhavigi", "Upload too large" => "Alŝuto tro larĝa", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", "Files are being scanned, please wait." => "Dosieroj estas skanataj, bonvolu atendi.", -"Current scanning" => "Nuna skano" +"Current scanning" => "Nuna skano", +"Upgrading filesystem cache..." => "Ĝisdatiĝas dosiersistema kaŝmemoro..." ); diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 68d2d021f7c..990f464bc1a 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -2,6 +2,7 @@ "Password successfully changed." => "Ο κωδικός αλλάχτηκε επιτυχώς.", "Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", "Saving..." => "Γίνεται αποθήκευση...", +"personal settings" => "προσωπικές ρυθμίσεις", "Encryption" => "Κρυπτογράφηση", "Enabled" => "Ενεργοποιημένο", "Disabled" => "Απενεργοποιημένο", diff --git a/apps/files_encryption/l10n/eo.php b/apps/files_encryption/l10n/eo.php index ea405fda1ab..f6e0e884f35 100644 --- a/apps/files_encryption/l10n/eo.php +++ b/apps/files_encryption/l10n/eo.php @@ -1,4 +1,16 @@ "La pasvorto sukcese ŝanĝiĝis.", +"Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.", +"Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.", +"PHP module OpenSSL is not installed." => "La PHP-modulo OpenSSL ne instalitas.", "Saving..." => "Konservante...", -"Encryption" => "Ĉifrado" +"personal settings" => "persona agordo", +"Encryption" => "Ĉifrado", +"Enabled" => "Kapabligita", +"Disabled" => "Malkapabligita", +"Change Password" => "Ŝarĝi pasvorton", +"Your private key password no longer match your log-in password:" => "La pasvorto de via malpublika klavo ne plu kongruas kun via ensaluta pasvorto:", +"Old log-in password" => "Malnova ensaluta pasvorto", +"Current log-in password" => "Nuna ensaluta pasvorto", +"Update Private Key Password" => "Ĝisdatigi la pasvorton de la malpublika klavo" ); diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index b0117d85390..6a28f859943 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -8,6 +8,8 @@ "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", "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" => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz. Można zaktualizować hasło klucza prywatnego w ustawieniach osobistych w celu odzyskania dostępu do plików", +"PHP module OpenSSL is not installed." => "Moduł PHP OpenSSL nie jest zainstalowany", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Proszę poproś administratora serwera aby zainstalował ten moduł. Obecnie aplikacja szyfrowanie została wyłączona.", "Saving..." => "Zapisywanie...", "Your private key is not valid! Maybe the your password was changed from outside." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz.", "You can unlock your private key in your " => "Możesz odblokować swój klucz prywatny w swojej", diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index 3288c4fcdc5..161e9c3e88a 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -1,5 +1,6 @@ "Eraro", +"Delete permanently" => "Forigi por ĉiam", "Name" => "Nomo", "1 folder" => "1 dosierujo", "{count} folders" => "{count} dosierujoj", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 011ff3e12ff..6925ea89a0c 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -1,4 +1,5 @@ "Hubo un error al borrar las asignaciones.", "Failed to delete the server configuration" => "Fallo al borrar la configuración del servidor", "The configuration is valid and the connection could be established!" => "La configuración es válida y la conexión pudo ser establecida.", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuración es válida, pero el enlace falló. Por favor, comprobá la configuración del servidor y las credenciales.", @@ -7,6 +8,7 @@ "Take over settings from recent server configuration?" => "Tomar los valores de la anterior configuración de servidor?", "Keep settings?" => "¿Mantener preferencias?", "Cannot add server configuration" => "No se pudo añadir la configuración del servidor", +"mappings cleared" => "Asignaciones borradas", "Success" => "Éxito", "Error" => "Error", "Connection test succeeded" => "El este de conexión ha sido completado satisfactoriamente", @@ -72,6 +74,16 @@ "Email Field" => "Campo de e-mail", "User Home Folder Naming Rule" => "Regla de nombre de los directorios de usuario", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD.", +"Internal Username" => "Nombre interno de usuario", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder in ownCloud. It is also a port of remote URLs, for instance for all *DAV services. With this setting, the default behaviour can be overriden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." => "Por defecto, el nombre interno de usuario va a ser creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. Para el nombre de usuario interno sólo se pueden usar estos caracteres: [a-zA-Z0-9_.@-]. Otros caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. Si ocurrieran colisiones, un número será añadido o incrementado. El nombre interno de usuario se usa para identificar un usuario internamente. Es también el nombre por defecto para el directorio personal del usuario in ownCloud. También es un puerto de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento por defecto puede ser cambiado. Para conseguir un comportamiento similar al anterior a ownCloud 5, ingresá el atributo del nombre en pantalla del usuario en el siguiente campo. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto para los nuevos usuarios LDAP.", +"Internal Username Attribute:" => "Atributo Nombre Interno de usuario:", +"Override UUID detection" => "Sobrescribir la detección UUID", +"By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, ownCloud detecta automáticamente el atributo UUID. El atributo UUID se usa para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno va a ser creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP.", +"UUID Attribute:" => "Atributo UUID:", +"Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", +"ownCloud uses usernames to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from ownCloud username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found by ownCloud. The internal ownCloud name is used all over in ownCloud. Clearing the Mappings will have leftovers everywhere. Clearing the Mappings is not configuration sensitive, it affects all LDAP configurations! Do never clear the mappings in a production environment. Only clear mappings in a testing or experimental stage." => "ownCloud usa nombres de usuario para almacenar y asignar (meta) datos. Con el fin de identificar con precisión y reconocer usuarios, cada usuario LDAP tendrá un nombre de usuario interno. Esto requiere una asignación de nombre de usuario de ownCloud a usuario LDAP. El nombre de usuario creado se asigna al UUID del usuario LDAP. Además el DN se almacena en caché principalmente para reducir la interacción de LDAP, pero no se utiliza para la identificación. Si la DN cambia, los cambios serán encontrados por ownCloud. El nombre interno de ownCloud se utiliza para todo en ownCloud. Borrar las asignaciones dejará restos en distintos lugares. Borrar las asignaciones no depende de la configuración, ¡afecta a todas las configuraciones de LDAP! No borrar nunca las asignaciones en un entorno de producción. Sólo borrar asignaciones en una situación de prueba o experimental.", +"Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", +"Clear Groupname-LDAP Group Mapping" => "Borrar la asignación de los Nombres de grupo de los grupos de LDAP", "Test Configuration" => "Probar configuración", "Help" => "Ayuda" ); diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index 1943b98a750..79bb1d13bf7 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.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. Αυτό το plugin ελέγχει την απάντηση και την μετατρέπει σε HTTP κωδικό κατάστασης 401 και 403 για μη έγκυρα, όλες οι υπόλοιπες απαντήσεις είναι έγκυρες." ); diff --git a/apps/user_webdavauth/l10n/es_AR.php b/apps/user_webdavauth/l10n/es_AR.php index efb82288287..cda5d7eab05 100644 --- a/apps/user_webdavauth/l10n/es_AR.php +++ b/apps/user_webdavauth/l10n/es_AR.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/core/l10n/el.php b/core/l10n/el.php index 6b1239fe45c..022d9d90039 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,4 +1,5 @@ "Ο %s διαμοιράστηκε μαζί σας το »%s«", "Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.", "No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;", "This category already exists: %s" => "Αυτή η κατηγορία υπάρχει ήδη: %s", @@ -88,6 +89,8 @@ "Request failed!
Did you make sure your email/username was right?" => "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? ", "You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.", "Username" => "Όνομα χρήστη", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Τα αρχεία σας είναι κρυπτογραφημένα. Εάν δεν έχετε ενεργοποιήσει το κλειδί ανάκτησης, δεν υπάρχει περίπτωση να έχετε πρόσβαση στα δεδομένα σας μετά την επαναφορά του συνθηματικού. Εάν δεν είστε σίγουροι τι να κάνετε, παρακαλώ επικοινωνήστε με τον διαχειριστή πριν συνεχίσετε. Θέλετε να συνεχίσετε;", +"Yes, I really want to reset my password now" => "Ναι, θέλω να επαναφέρω το συνθηματικό μου τώρα.", "Request reset" => "Επαναφορά αίτησης", "Your password was reset" => "Ο κωδικός πρόσβασής σας επαναφέρθηκε", "To login page" => "Σελίδα εισόδου", @@ -100,6 +103,7 @@ "Help" => "Βοήθεια", "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", "Edit categories" => "Επεξεργασία κατηγοριών", "Add" => "Προσθήκη", @@ -130,6 +134,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/eo.php b/core/l10n/eo.php index c647850d0cb..2adf09d3a01 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -1,4 +1,5 @@ "%s kunhavigis “%s” kun vi", "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", @@ -84,8 +85,10 @@ "The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.", "ownCloud password reset" => "La pasvorto de ownCloud restariĝis.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", +"Request failed!
Did you make sure your email/username was right?" => "La peto malsukcesis!
Ĉu vi certiĝis, ke via retpoŝto/uzantonomo ĝustas?", "You will receive a link to reset your password via Email." => "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton.", "Username" => "Uzantonomo", +"Yes, I really want to reset my password now" => "Jes, mi vere volas restarigi mian pasvorton nun", "Request reset" => "Peti rekomencigon", "Your password was reset" => "Via pasvorto rekomencis", "To login page" => "Al la ensaluta paĝo", @@ -98,11 +101,13 @@ "Help" => "Helpo", "Access forbidden" => "Aliro estas malpermesata", "Cloud not found" => "La nubo ne estas trovita", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!", "web services under your control" => "TTT-servoj regataj de vi", "Edit categories" => "Redakti kategoriojn", "Add" => "Aldoni", "Security Warning" => "Sekureca averto", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Bonvolu ĝisdatigi vian instalon de PHP por uzi ownCloud-on sekure.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP.", "Create an admin account" => "Krei administran konton", "Advanced" => "Progresinta", @@ -115,12 +120,17 @@ "Database tablespace" => "Datumbaza tabelospaco", "Database host" => "Datumbaza gastigo", "Finish setup" => "Fini la instalon", +"%s is available. Get more information on how to update." => "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi.", "Log out" => "Elsaluti", +"Automatic logon rejected!" => "La aŭtomata ensaluto malakceptiĝis!", "If you did not change your password recently, your account may be compromised!" => "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!", "Please change your password to secure your account again." => "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree.", "Lost your password?" => "Ĉu vi perdis vian pasvorton?", "remember" => "memori", "Log in" => "Ensaluti", +"Alternative Logins" => "Alternativaj ensalutoj", +"Hey there,

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

Cheers!" => "Saluton:

Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.
Vidu ĝin

Ĝis!", "prev" => "maljena", -"next" => "jena" +"next" => "jena", +"Updating ownCloud to version %s, this may take a while." => "ownCloud ĝisdatiĝas al eldono %s, tio ĉi povas daŭri je iom da tempo." ); diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 24e5a41fd0d..77c3fb854b4 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -1,4 +1,5 @@ "%s compartió \"%s\" con vos", "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", @@ -89,6 +90,8 @@ "Request failed!
Did you make sure your email/username was right?" => "¡Error en el pedido!
¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?", "You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña", "Username" => "Nombre de usuario", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?", +"Yes, I really want to reset my password now" => "Sí, definitivamente quiero resetear mi contraseña ahora", "Request reset" => "Solicitar restablecimiento", "Your password was reset" => "Tu contraseña fue restablecida", "To login page" => "A la página de inicio de sesión", @@ -101,6 +104,7 @@ "Help" => "Ayuda", "Access forbidden" => "Acceso denegado", "Cloud not found" => "No se encontró ownCloud", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!", "web services under your control" => "servicios web controlados por vos", "Edit categories" => "Editar categorías", "Add" => "Agregar", @@ -131,6 +135,7 @@ "remember" => "recordame", "Log in" => "Entrar", "Alternative Logins" => "Nombre alternativos de usuarios", +"Hey there,

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

Cheers!" => "Hola,

Simplemente te informo que %s compartió %s con vos.
Miralo acá:

¡Chau!", "prev" => "anterior", "next" => "siguiente", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede domorar un rato." diff --git a/l10n/ar/core.po b/l10n/ar/core.po index de957a7488f..19fb5c4dfec 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index b40c59c04d3..442f9884e27 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index d6e2b4fbc03..62dfedc1b11 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index c7c29dfd6ef..f60201d93d8 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index bdb9ab4a5df..8eff71b6087 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 4f23c0685fb..06e93fda201 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 02611d5ea56..7d6843d46ed 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 619e35eacdb..3026f4176fd 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index cf98a316b2a..1fb7ac0ac22 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 061e87596fa..d0359ac36fb 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 4272114999f..46a8af31826 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index a75fe8b7ceb..fa57282c548 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 84288fa5381..a4031363292 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 6d547cbb86e..78b4b0477b7 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f82d357fc1a..f49178b4df1 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 1f26904e058..f2b45a44368 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index a1b42385e27..ae72a1c51f1 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 864c9a197f8..530f53b57b8 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 4d58cb46e68..b118377a467 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index e99376a69df..751a0e9851c 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 42dca32f470..45917e8c2c2 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index c06bbc67834..e417029cbe7 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index aef49cdf192..737a232ea73 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index d261ab9829b..d02da047cc0 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index e778129e058..3fa561583a5 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:14+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 35eea288541..3ac54f3ac08 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 8313a691598..e1c98571073 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 65c292ce758..94ffdf56d2a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 117df69d65a..f6c844a09a4 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 60701995dd3..6b2a1a6c639 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 123411a7b0c..2a393ccd023 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 117dbe49505..01ae128cda2 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 9e3f24edcc0..ee59377b786 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 9598ee3976f..224002bec7e 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 98378d83298..c3dbbbfeb4b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index c63c411cb90..18496bd40a1 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8b6e5f3c387..408a7c8ceb4 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 d4bf2b7854f..da8c3be275b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 3848eb6d5c7..cd6710a33c3 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 55c2c697ded..1021b1210a6 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index fc3699d5f1c..360f342135a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 2a07fc79877..7f6cb2e2194 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 6f9d2b6878e..f7564303444 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 4a531ca226f..86563696dd0 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 04aa08729fb..0fe4ae3c2ed 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 25b74992508..4c97c164051 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 0345e79343b..c46fa8d8d53 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 64dc2bb5c6e..93df73432e7 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 5c9984da1cb..9b81324b0d3 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 6d6121654ad..099a3b8452d 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 1377bf961f3..eb05e50dafb 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index ca9de6f6284..2b308638333 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index 71aa65239b3..748ec0b000a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 a15a226c953..bd57790c5e6 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index c377f419e92..3839cd41de9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 4cade56a289..17b13125e27 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 18dd68113d8..863ce3a21f1 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 581beb4cd12..81dfc4cd9c7 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 75efc18232b..6297d10e64a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 00832917629..8e263192397 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 c003ef95c6c..5f850530349 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 f2c9aed079a..a4c10686841 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 5b2e8e6384e..f50c4876f3e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 0ff8d022171..3252322f944 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 576421b685c..059c1dece13 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 dc43b611af4..20f12e57ef8 100644 --- a/l10n/de/settings.po +++ b/l10n/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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Mario Siegmann \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 2bc71f77792..346052389ed 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 0b08d3ec669..b08fe56ccf3 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Mario Siegmann \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 42eece2f04f..c5e54a7924f 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 96b220f783c..2e742ac65b2 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 36b3bef467f..e2e3c71b942 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 70587360217..3691f145269 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 926b29e9e4a..37520771812 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 56b022398ef..3edee2d3106 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Mario Siegmann \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 5ed822aa071..57539d1473a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 66c78d33922..4c873557712 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -3,16 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 +# KAT.RAT12 , 2013 +# Teogramm , 2013 # Teogramm , 2013 # Wasilis , 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +27,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." @@ -410,11 +414,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Τα αρχεία σας είναι κρυπτογραφημένα. Εάν δεν έχετε ενεργοποιήσει το κλειδί ανάκτησης, δεν υπάρχει περίπτωση να έχετε πρόσβαση στα δεδομένα σας μετά την επαναφορά του συνθηματικού. Εάν δεν είστε σίγουροι τι να κάνετε, παρακαλώ επικοινωνήστε με τον διαχειριστή πριν συνεχίσετε. Θέλετε να συνεχίσετε;" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ναι, θέλω να επαναφέρω το συνθηματικό μου τώρα." #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -473,7 +477,7 @@ 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" @@ -615,7 +619,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/el/files.po b/l10n/el/files.po index 81e8c56df1c..e41025176d0 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 74dca7b6b20..2f09202bc3a 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 +# Teogramm , 2013 # Teogramm , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 20:50+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,7 +89,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "προσωπικές ρυθμίσεις" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 82015f9334f..9fe5f292781 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 2d518783204..b5ae360acc9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index e85671da2b3..69c33de5c5f 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index dac0bd47d18..0b2772c842e 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,7 +124,7 @@ msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχ #: setup.php:152 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Αδυναμία σύνδεσης Oracle" #: setup.php:234 msgid "MySQL username and/or password not valid" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 9a560f8a214..36c3e09347e 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -3,15 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 +# KAT.RAT12 , 2013 +# Teogramm , 2013 # 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -473,7 +476,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/el/user_ldap.po b/l10n/el/user_ldap.po index 4a20f56c6d1..9f039f015bc 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index 60764100655..cd7f6d89f48 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -5,15 +5,16 @@ # Translators: # Dimitris M. , 2012 # Efstathios Iosifidis , 2012 +# Efstathios Iosifidis , 2013 # Konstantinos Tzanidis , 2012 # Marios Bekatoros <>, 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-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 20:30+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +28,7 @@ msgstr "Αυθεντικοποίηση μέσω WebDAV " #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index a6994d65cc5..384d362de3a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 657197abefe..5a12cdfcd94 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 3b851c78bf9..3db6f7cc5de 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -4,13 +4,14 @@ # # Translators: # Baptiste , 2013 +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s kunhavigis “%s” kun vi" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -391,7 +392,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "La peto malsukcesis!
Ĉu vi certiĝis, ke via retpoŝto/uzantonomo ĝustas?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -412,7 +413,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Jes, mi vere volas restarigi mian pasvorton nun" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -496,7 +497,7 @@ msgstr "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Bonvolu ĝisdatigi vian instalon de PHP por uzi ownCloud-on sekure." #: templates/installation.php:32 msgid "" @@ -572,7 +573,7 @@ msgstr "Fini la instalon" #: templates/layout.user.php:40 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi." #: templates/layout.user.php:67 msgid "Log out" @@ -580,7 +581,7 @@ msgstr "Elsaluti" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "La aŭtomata ensaluto malakceptiĝis!" #: templates/login.php:10 msgid "" @@ -606,14 +607,14 @@ msgstr "Ensaluti" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "" +msgstr "Alternativaj ensalutoj" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

Cheers!" -msgstr "" +msgstr "Saluton:

Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.
Vidu ĝin

Ĝis!" #: templates/part.pagenavi.php:3 msgid "prev" @@ -626,4 +627,4 @@ msgstr "jena" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud ĝisdatiĝas al eldono %s, tio ĉi povas daŭri je iom da tempo." diff --git a/l10n/eo/files.po b/l10n/eo/files.po index a4f6c10fb0d..2d5de0277fe 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,7 +65,7 @@ msgstr "Malsukcesis skribo al disko" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Ne haveblas sufiĉa memoro" #: ajax/upload.php:83 msgid "Invalid directory." @@ -80,7 +81,7 @@ msgstr "Kunhavigi" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "" +msgstr "Forigi por ĉiam" #: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" @@ -120,7 +121,7 @@ msgstr "malfari" #: js/filelist.js:331 msgid "perform delete operation" -msgstr "" +msgstr "plenumi forigan operacion" #: js/filelist.js:413 msgid "1 file uploading" @@ -146,11 +147,11 @@ msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Via memoro preskaŭ plenas ({usedSpacePercent}%)" #: js/files.js:231 msgid "" @@ -217,7 +218,7 @@ msgstr "{count} dosierujoj" #: lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "Nevalida dosierujnomo. La uzo de “Shared” estas rezervita de ownCloud." #: lib/app.php:73 msgid "Unable to rename file" @@ -277,7 +278,7 @@ msgstr "El ligilo" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Forigitaj dosieroj" #: templates/index.php:48 msgid "Cancel upload" @@ -285,7 +286,7 @@ msgstr "Nuligi alŝuton" #: templates/index.php:54 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Vi ne havas permeson skribi ĉi tie." #: templates/index.php:61 msgid "Nothing in here. Upload something!" @@ -319,4 +320,4 @@ msgstr "Nuna skano" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Ĝisdatiĝas dosiersistema kaŝmemoro..." diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index 8d879029c0f..29c9e1a3942 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 21:00+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,15 +38,15 @@ msgstr "" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "La pasvorto sukcese ŝanĝiĝis." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis." #: ajax/updatePrivateKeyPassword.php:53 msgid "" @@ -62,7 +63,7 @@ msgstr "" #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "La PHP-modulo OpenSSL ne instalitas." #: hooks/hooks.php:45 msgid "" @@ -86,7 +87,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "persona agordo" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -103,11 +104,11 @@ msgstr "" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Kapabligita" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Malkapabligita" #: templates/settings-admin.php:34 msgid "Change recovery key password:" @@ -123,11 +124,11 @@ msgstr "" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Ŝarĝi pasvorton" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "La pasvorto de via malpublika klavo ne plu kongruas kun via ensaluta pasvorto:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." @@ -141,15 +142,15 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Malnova ensaluta pasvorto" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Nuna ensaluta pasvorto" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Ĝisdatigi la pasvorton de la malpublika klavo" #: templates/settings-personal.php:45 msgid "Enable password recovery:" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index cb878138751..a522b3897f1 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index f01566f827f..b7321474a28 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index b64e7856584..9db18653f9e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,7 @@ msgstr "" #: js/trash.js:123 msgid "Delete permanently" -msgstr "" +msgstr "Forigi por ĉiam" #: js/trash.js:176 templates/index.php:17 msgid "Name" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 05cb595c9c5..5af25201691 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,35 +88,35 @@ msgstr "Bildoj" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "Starigi administran uzantonomon." #: setup.php:37 msgid "Set an admin password." -msgstr "" +msgstr "Starigi administran pasvorton." #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s enigu la uzantonomon de la datumbazo." #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s enigu la nomon de la datumbazo." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s vi ne povas uzi punktojn en la nomo de la datumbazo" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s enigu la gastigon de la datumbazo." #: setup.php:126 setup.php:332 setup.php:377 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas" #: setup.php:127 setup.php:235 msgid "You need to enter either an existing account or the administrator." @@ -123,11 +124,11 @@ msgstr "" #: setup.php:152 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Konekto al Oracle ne povas stariĝi" #: setup.php:234 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "La uzantonomo de MySQL aŭ la pasvorto ne validas" #: 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 @@ -135,7 +136,7 @@ msgstr "" #: setup.php:626 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "Datumbaza eraro: “%s”" #: 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 @@ -147,24 +148,24 @@ msgstr "" #: setup.php:305 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "La uzanto de MySQL “%s”@“localhost” jam ekzistas." #: setup.php:306 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Forigi ĉi tiun uzanton el MySQL" #: setup.php:311 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "La uzanto de MySQL “%s”@“%%” jam ekzistas" #: setup.php:312 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Forigi ĉi tiun uzanton el MySQL." #: setup.php:469 setup.php:536 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas" #: setup.php:595 setup.php:627 #, php-format @@ -174,18 +175,18 @@ msgstr "" #: setup.php:647 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s" #: 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 "" +msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." #: setup.php:871 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Bonvolu duoble kontroli la gvidilon por instalo." #: template.php:113 msgid "seconds ago" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 15649d93ccc..ad398470be6 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -190,12 +190,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Bonvolu duoble kontroli la gvidilon por instalo." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index e953e2d945c..629841809f4 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 29a7224780d..a248abc333e 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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.po b/l10n/es/files.po index 263a4e67178..90d2b225cb1 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 0cfe0c46b4e..d4d80d382bd 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 3a3c6f5e991..1e79369bf20 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 2582a5201b1..560b857e051 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index b5bc48adc4b..53411f555d1 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 24ddc57c9c3..46545c8a8ae 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index b20c0aba34e..41e1d950da8 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index d018c1b5cf8..ba55fafabb2 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "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 compartió \"%s\" con vos" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -408,11 +408,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sí, definitivamente quiero resetear mi contraseña ahora" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +471,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +613,7 @@ msgstr "Nombre alternativos de usuarios" msgid "" "Hey there,

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

Cheers!" -msgstr "" +msgstr "Hola,

Simplemente te informo que %s compartió %s con vos.
Miralo acá:

¡Chau!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 1a7a0c63084..becd5ac9c06 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 d51c906e218..153c3b140ed 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 1a865b450ce..718febc53f1 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index b8de0fa2ec8..81756c5b9d6 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index df8a253c96f..bb5902339cb 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index c8b38554ec0..c3a95fcbe46 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 0efadedbd21..10fce34ab01 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Hubo un error al borrar las asignaciones." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" @@ -60,7 +60,7 @@ msgstr "No se pudo añadir la configuración del servidor" #: js/settings.js:111 msgid "mappings cleared" -msgstr "" +msgstr "Asignaciones borradas" #: js/settings.js:112 msgid "Success" @@ -343,7 +343,7 @@ msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especific #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "Nombre interno de usuario" #: templates/settings.php:102 msgid "" @@ -359,15 +359,15 @@ msgid "" "achieve a similar behaviour as before ownCloud 5 enter the user display name" " attribute in the following field. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "Por defecto, el nombre interno de usuario va a ser creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. Para el nombre de usuario interno sólo se pueden usar estos caracteres: [a-zA-Z0-9_.@-]. Otros caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. Si ocurrieran colisiones, un número será añadido o incrementado. El nombre interno de usuario se usa para identificar un usuario internamente. Es también el nombre por defecto para el directorio personal del usuario in ownCloud. También es un puerto de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento por defecto puede ser cambiado. Para conseguir un comportamiento similar al anterior a ownCloud 5, ingresá el atributo del nombre en pantalla del usuario en el siguiente campo. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto para los nuevos usuarios LDAP." #: templates/settings.php:103 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Atributo Nombre Interno de usuario:" #: templates/settings.php:104 msgid "Override UUID detection" -msgstr "" +msgstr "Sobrescribir la detección UUID" #: templates/settings.php:105 msgid "" @@ -378,15 +378,15 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Por defecto, ownCloud detecta automáticamente el atributo UUID. El atributo UUID se usa para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno va a ser creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP." #: templates/settings.php:106 msgid "UUID Attribute:" -msgstr "" +msgstr "Atributo UUID:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Asignación del Nombre de usuario de un usuario LDAP" #: templates/settings.php:108 msgid "" @@ -401,15 +401,15 @@ msgid "" "configuration sensitive, it affects all LDAP configurations! Do never clear " "the mappings in a production environment. Only clear mappings in a testing " "or experimental stage." -msgstr "" +msgstr "ownCloud usa nombres de usuario para almacenar y asignar (meta) datos. Con el fin de identificar con precisión y reconocer usuarios, cada usuario LDAP tendrá un nombre de usuario interno. Esto requiere una asignación de nombre de usuario de ownCloud a usuario LDAP. El nombre de usuario creado se asigna al UUID del usuario LDAP. Además el DN se almacena en caché principalmente para reducir la interacción de LDAP, pero no se utiliza para la identificación. Si la DN cambia, los cambios serán encontrados por ownCloud. El nombre interno de ownCloud se utiliza para todo en ownCloud. Borrar las asignaciones dejará restos en distintos lugares. Borrar las asignaciones no depende de la configuración, ¡afecta a todas las configuraciones de LDAP! No borrar nunca las asignaciones en un entorno de producción. Sólo borrar asignaciones en una situación de prueba o experimental." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" #: templates/settings.php:109 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" #: templates/settings.php:111 msgid "Test Configuration" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index 331ef231ba7..aaa1cdcdb30 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-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-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 13:50+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "Autenticación de WevDAV" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: templates/settings.php:7 msgid "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 27439638023..6762d0ea54f 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 26a994f782b..b6734e29813 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 ee631b2e6b1..7ea8f1b805b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index a17219effa7..6a2d0891b3b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 8ff982f35c1..31835743a5e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 05732a0ea80..c44a64127bd 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 628bc4630ba..a9dfe623574 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index f17a24269c9..7e32f90b1a2 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 5fae1f5ab66..74447d964e9 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 71a56641ffc..e024c4ec12c 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 6ac8b610896..f02508e3641 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index f51ede8a405..9c6d95fc487 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 139d9a427cd..5adee1473f9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index d2ca767e09c..9f1cf526265 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index e0bc61f672e..1b79eebf897 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 23daa532bd2..05346b9b9c0 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 89dd632e41d..721a508409a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 611afc6aebf..ac1121b8501 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 9bc2bea3ff8..f4760822449 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 4d628119af3..d58b88919a9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 3863cf9e72c..5e60d353f5c 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 6a8fd0b9f5f..736659c2d66 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index ce3accee37e..df0c99321cb 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 7c55891d3ca..2063a13bc84 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 9eee6e8907b..d0eac27adbd 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 7aedd0589b6..f6e21219d6c 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index f69eab70d29..dd248b49243 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 758e57adcb0..0e8c414c4f0 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 84f5bcbcd3b..a75d8905068 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index a86151e8b83..b4b2643461c 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index b0f95a5aee7..3a3ae42e7da 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index b79395deede..65d33f9fae7 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index b088352a08e..781fb4fd5f5 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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.po b/l10n/fr/files.po index 36a6581e471..e898f15c676 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 f6fb2dafb1d..41a494fa0eb 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index ae2b0b9a4ff..299368667a9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index be9698ba7fc..6e059d646d6 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 06e5578a190..7af2a0864dd 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 989f270e495..761eebdff58 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 72505e98ebb..c16f3f48ed1 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 6ebb3eb0e18..7fc104a46ce 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index cc3b05d9a3f..03dd4721a8b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 4ab7db41a60..df23ac5755b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index ee8cef6fef9..722b853e7ae 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index bb31bc0fcf5..b60cbfa392a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 2aabdb2b0c6..deac492ebe4 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 5f19076e267..868c045c88a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index a20319aebd1..445521bc6df 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 1b6b61071c0..24f590e80df 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 60d2b7d9710..4e3058b2563 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 a416f26a931..95238ab1d8b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 0d54c67f7d5..84303f7131d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index e5d5c765900..f082ef709cf 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 3b0b408ffab..836576975ad 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index e85c780f7e8..3d070972904 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 3715e6bd327..8c0ee57df43 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 3df47099d8b..2ff68d38128 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index e96a80b4d68..fd9534344b7 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index be362ff7841..b2cced49e25 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 588600f7904..95e832b9366 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index c253f00193f..cea4bc5e3a5 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 652f46b6e9f..c4fba92b672 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 555a98e65dc..62b262a66e8 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 3b9075a1604..3055cdec162 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 3d67c200fbb..914c763a8ec 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index f3722724094..8f8985d8d50 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 75bfa8d5ce7..cf2df27bbdf 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 56651e4d4b7..6e106da39de 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 1d3f6d4086f..f1e1da92c57 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 971df918c17..c4fb8c18d55 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index febc9de51e5..7ffdafc5145 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 4c60a8191ad..32129adf289 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 138501851ca..d2d80a21cef 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 606b667015e..f9ec17656f9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 2ffedb91713..f603edd312f 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 7d2ecd693d9..f8bc5720784 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 42e10fd8dd6..57930c3aba9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 3002d705a32..166908dc603 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 f9055e58232..4e045aa92cb 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index daf5ae5a5a9..82e47f1d191 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 788b90924c7..cc4b95d1fa6 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 21408dbd844..bbc02a15691 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index ca8c795818c..58d4ca6f79d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index bbfd0f596b4..ee275856d3b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index c9cf35d2710..66664425d1b 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index cd4cc4672d1..b4d68fd3ad2 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index e8ad11f06bf..68e60820197 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index adb01ea5644..129186c2b20 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index 9293cb6b7a1..8b2b0d44b4d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 92191e0d87e..6253a52d25b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 4c837188656..977993c0c5f 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index ee409a45517..452756c1bd6 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 8b4d51b3992..2bc9db17855 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 6bfcc1b38e0..3041d60c726 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index d8fcd6c3e67..53932e10e04 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index b42a7828106..e5d040661c7 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index eaa34b451bd..b8fc14b97bb 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index b38f72e1323..9cae0d9b69a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index cef19e21c00..d29ce5dc992 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index d474316df6d..d368243b2f9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 96789b3bcee..a50df8b0fe0 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 0f189d76a61..5630c70d557 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 74718f354c9..98a5c79dd98 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index ec59af96389..3c617585942 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index 9f5ae9949f5..b348db4d2ba 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index e3edf01b280..75a3f680cf5 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index b43e6775fe1..760df5289ea 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 ebfe0b719cb..7de23ca415c 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 2eb14a89395..30f12007933 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index ce9bdd27498..3f774819bc3 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 18ee78296ce..3821c957017 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 8ddb4e207f2..ba991ee4ab4 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 9a0bcbdebf9..fef3f1d26de 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index d7edf082554..0ef0bdb50f7 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index dec92778533..ee2243de200 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 7507dc2a561..004b309857b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 52c05faf490..7dfe54ebee6 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index d933dc99e03..673d0ed6d1b 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 be0d7fd883f..58d7b40ef96 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 8376cb4a9c3..9f5016e1561 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 081bc9753de..f6b49738a33 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index adcde5d6928..adc8f908f1e 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 3411ed83d7a..c592cade332 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 8b4f1723ae1..7a4a81e7267 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index d0e9b9a6f9f..7197808c4b8 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 3f95eb2567a..cca36c65652 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index ac9ed6ff991..2ee7f310bb5 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 2996b82ca3d..f5da4d91781 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index a2c52bc259f..857af3f92d6 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index f3e5c934694..3afc3e0e188 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index b15f6a22347..a23ae756b22 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index f9c9596a54e..32baedf12eb 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 2150277bd68..3d2e8d58ca8 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index edb3c357102..007b472165a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 29d0fe0b4ca..6b98e67345d 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index b28408ee00c..471f688843a 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b785ac41143..e3224636631 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index cf67e3b5420..f02d873600a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 51790664771..eabe26c857c 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 6f1a44a4c5d..d617c9a26c9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 40890874b47..f6ca6a5fd8d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 9befda58c86..f8c6c2b2572 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index e2611a33adb..66eb4c6c3eb 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index afee93f5661..8873636d86e 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index b1d9cd9a0c8..6376fb72755 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 9a1fceea76f..312ca589f78 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 6b2848264d2..2d5e31f158f 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 4d8a291bdaf..45a37f4e9ca 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 8ffa1b07a58..d1a63938f98 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 70ed7c78a33..758989a2e9d 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 2409603b9f6..b6df3996373 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index af896f13ff2..b43c66c5f99 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 977a9b00d5e..992acbe464b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 35500de21e4..95142361ea9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index f65cdffbe13..a07516fcaf5 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 56596735f38..e190013b483 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 15174f63fb5..58869455f65 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 42b72c4d0d6..d7c544655fa 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 75dd1a33d72..5e2f4f76663 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index a86d6c54f86..20754352ebf 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 0e6a6be24c9..11f96c28d52 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index e07252b4493..3be11866263 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index c2bbd78b9fb..7f9b45afb1e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index fe4235e04ca..0a324d8bbb7 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 4f11b26292b..0801338ceb1 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 6f3082b2a7a..798bce4b4b0 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 54a574265ce..0ceb5f5c7fa 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 94ad8cb8f0e..6fe9e775fcb 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 5e9cda49547..413e3cf10c2 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 5aa81b0f939..b6363d57e3b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index d5d3c8f78de..59f0e864a38 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index da9796a65e0..cc88f6e4290 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index bfbd8b5697d..f0d99d865a2 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 53690f51e2e..3993883ecc9 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index c6ddabb209a..2e3b371570b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 3c81d95dc37..0b7cdb2d2c8 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index dd600088e2b..54a7105fe33 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 8e6ac98a00d..05f9d279b11 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index b7dfead8586..4c882b2bb31 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index e83d10fb398..1b9fe0a222d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 07d41bd33d4..7e93c2fe9f9 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 4d477c65528..32b5bacee2e 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index da91e6171b3..8ce89d95d25 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 1e0297f3350..46d3bf1da45 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:14+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index fb2b2340b5b..32b4f8ce155 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index cbada572d50..360d3b53047 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index b7e57a4b0fd..6a78f683f0d 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 59d008fc6c3..15978699b8b 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 627ef51348e..c6ea80174f1 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 ad6eb0e9543..386f892ed9a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 2a11c97d9e9..a7787efd000 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index d21e4b38513..91868ad3f48 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 83a9e025800..89b5155f547 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index a75e420a5f8..339f3085e0c 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index e223e716a0f..3b1dee392a9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 85036371313..430a8bb0273 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index a6e999fadd3..4f159c351cb 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 10b2123f0c4..17565890e52 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 10c6926179f..f411d781796 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index d25af1679fa..82d4cfce0bf 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index e762665c65b..87dfd06a141 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 84d5779ffa6..38e0626eefa 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 7ed37c731b6..5628970efd5 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 6d3e3d5612b..89f00163e35 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 069da55a56d..9979e80ac8d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 3e7044b861a..ccdeb80b13b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index a1b1f3a506b..fbfa343392a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 73abbe6bab0..629e4b310d6 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 7ce6f7d1ca6..8d5fa389995 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index b99c2401bdd..a69e68ea68a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 8acb2a99d4e..c485d1c034c 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 66315ca28d3..b178a3c9035 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 60d9f376eb0..554b3220333 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index a9e8eed79bc..2861541d8e2 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index ae6aacb3fe7..321a17e6a39 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 475b0d14536..31303dae2fe 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 0be95c38ffa..8e86e2d766a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 790fd15b7f1..a038cbbe3e8 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 11467344dfd..b6e8ca4790a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 9d193891b64..b06f066c55d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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_encryption.po b/l10n/pl/files_encryption.po index 67fb5274635..ea5f5a39204 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/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-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 12:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,13 +63,13 @@ msgstr "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "Moduł PHP OpenSSL nie jest zainstalowany" #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Proszę poproś administratora serwera aby zainstalował ten moduł. Obecnie aplikacja szyfrowanie została wyłączona." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 2ba01b17e1b..20f5c5af2c9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 9f95828bab7..e40db9de7cb 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 9e1afe59d24..c381a701808 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 37ea0f2de53..3eb6c56f6f0 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index a88656b6e23..0aad72d4336 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index b3681a53f84..9e430a342f8 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 349c1362ef2..ed3fb1a7c33 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 94a6a865ad1..4b51d108806 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 37f359406a5..c4809cb5b7f 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index f84ed97145b..d37a4a6651b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 4c8a82a01f7..ce7e12c3602 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 124d00367cd..df5970c1502 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 4fc64bdd418..d8349aba6bd 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index bc93879564d..e1229186c22 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 24aaae7b26d..545feca668e 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 4288c6c78de..6c5efd05d90 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 b172b48763b..edc45652013 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 79a0a8758f9..9001665d276 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 15171ffb844..184b61b4e54 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 7bec6fd8fa5..20641e561f9 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 82b47f914bf..1f8f55744a8 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 19531140219..41d390e606c 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 54f3f770e96..df65634c5e3 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 0f500aea479..e8c8874e4b5 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 64bc1040209..0be1e988672 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 7640519ff22..6f8a7e12118 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 24824f082c7..782a629110d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 890d5212963..565b817447f 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 6322f8c28b8..5224d55239a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 460b639e201..4a60c0b6336 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 7a4dff9c01c..4ae1f56f188 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 50c5aadb2d1..17aaa2f259f 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 75348e56629..ea6ef3c81ef 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index f8c4f8dbd5a..7c4b879fb12 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 5cac6b8f5e1..0193ae76fc4 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 1d0d84a9189..217171f7464 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 55ff3b94f33..90e7012ac28 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 77ee05514d3..57b3c49fedf 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 86f3900bb83..fe94441ea6d 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index ce49045dda1..f6bea0bf49f 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index fcb6f3561fb..e5e1c4debf8 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 9d180db2dbe..9cca570f4cc 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 06100cbf5a6..c5d24768991 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index e3b1b7c5cc5..79af95303fe 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 72c2905460d..ad33a105cd5 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index ae37df9f776..1a142bca4d2 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index e0fdf881a65..4852ecbe624 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 26818e72cbd..700cad7fb0e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index d85aec6f5ff..85fdd6f7f1e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index aa7bc1338ff..d5206a34a00 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 5a804943f1b..44c66f68c58 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 377a8bda2b0..d9c47d97a59 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 5bd8868bbaa..a45c24e0953 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 5d3ab87f55c..318c50196c5 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index bc02a26ec27..8b059c1333c 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 2006098ebf6..bc5991a1add 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 725a9badf64..de2a0294bcc 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 0261341dcc1..1c87f514b94 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index ff4c7985458..302ea26ae74 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 6ea1b790812..3ea5b6777d3 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 3d8f779c30a..25e23072fe6 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index e224bec7e51..27b0d6c7fa6 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index c43817bbd79..f06cfbbbc95 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index ad519139381..4d04c5bb974 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 68247863c1d..0481da7d481 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index f8816996488..9bfd573484e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index c9a8b6b33f0..f3f8e545176 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 0d3b7a415ae..0c8eafde47f 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index dcda6eb8de7..668a512c56b 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index ebc24d7012d..5e370608248 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 56a4f495622..b3886035292 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 9420a693178..caa2976ee57 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 0eb8839c264..0c384f71e09 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index b932628f084..fcecae91448 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 7e790781c7c..954030cd802 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 1826acbd6dc..075d05d2d7f 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index cfdd28f29c2..48963a75110 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index f11c4ca2792..8fd5aec3de3 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 81488724964..ac05de4c3f0 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index f76885a72f8..38693d1adba 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 674455ce798..b52b1baeb71 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 427a5953f67..b2206da3d6d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 5d9205e66e9..535ddc3dd66 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 99d2ef51e87..1e2d5fe86ef 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 3008c2f07e3..bcc928c2c30 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 9e0370f3f4e..2c5b1b9e7dc 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 1b52b56d7a5..6c33ba62363 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 a1caa31d85d..6f25d179857 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 079d207a9a4..d526da7627e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 700ac14549a..7c091c67c50 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 785c64d11c1..6b00aaece8f 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f2371867324..025f255a746 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 47632b2aaa1..e4c00be5ec7 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index e1aafcb73f3..1e9ba35a742 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 911fddb2440..70b3598aac5 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index b476a84100f..aa0f0c19236 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 004d4f289fa..a5271906bf1 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index f4384426722..63969f8694e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 794ae0df0ea..e44973f27d1 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index a6fb1653a84..3d903472aef 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index dadd487b01b..5f9897e2ee0 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 470a4e60623..0e4b234b4ff 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index 40c4fc35f31..02cb7e9d398 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 2a98c1cee4e..10b324dcf96 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index ec6546aa94a..2507e04068b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 038254f164f..65df48533a4 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index e78d34802b4..e1247808073 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5ad778dad79..bd605665486 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-24 02:02+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 7e7e5645abe..dec013a2485 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 8861afa800c..302f0bd9e7a 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 ed2734984f4..4cb6860da97 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 53e848e2b79..fa28f5aeb12 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 408aa7bdc4e..d2902194c19 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 27a3e150c4b..72eac6329fa 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 8d64bef76c4..875e44c6f08 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-24 02:02+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 8fc9ef7e22b..cc28d67e093 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-24 02:02+0200\n" +"POT-Creation-Date: 2013-06-25 02:05+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 9906253b45d..bfc6d94e99f 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 81063bf78bd..680ab5ba560 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-24 02:01+0200\n" +"POT-Creation-Date: 2013-06-25 02:04+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 488df709fa5..6a54f796817 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 2fe6fd2d9e6..24f1c8f9cf0 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 5af7d250813..4d7b2508f63 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 084d8c6b885..eb793fed135 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index bd905ca2c57..17c6a312c72 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 4c90d506354..192ab8e5256 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 699459d6860..11509256938 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index d32df044b7a..1c87aa8d1df 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 472a640ed9a..67dae3dd3be 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 86b39e37e1b..593bc845903 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index e2172a23b58..f559a9f3190 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 5d08843d13a..70e44891594 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index c61d26e1e92..1b72a8e9082 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 3e8a4d2b0bf..d3903244988 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index a745de7da24..a971149508b 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index bf911cfcfbf..a92a77a1bc1 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 154056ef67a..1a910d347c4 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 27f3b871df9..80172dd6855 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index bdd1242b616..70bc9848c03 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 6a47a18231c..046a06a890b 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 5c5bd1c92d6..027d6520867 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index ef192545263..6adecb1bf45 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+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 45b95a8a6ab..093d536c3d5 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 72f66c15b38..dd86ed6f8ee 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 5472e30c558..42a33ff0cdc 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index b5f381a7044..42c687ed7bb 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 778723b5c36..54f0071efde 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 9f1a4eaa293..5aa6f84e514 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 41f349cde40..7cf1ded5438 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 7b9cbf147bd..c0483cfd96c 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index b786052e851..27779d8efe6 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index b30e298d4ce..c19785ccaae 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 9a5e5c24c56..35e74fe68b4 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index b5f3b6ea21a..f230226b89e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index ddb1a67c050..e53d5657d6e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index dbd0d8252da..591e0dd75b7 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index ea528c8cb3b..c7e425b32bb 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index bbcdddb3ebc..cf382de0ae3 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 92204ebf55c..c1489cc0f77 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index d876631ce9b..d0701f564f1 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 9b477f406f4..97c1d9d86a4 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index db3ddf7af8a..c9b89ee8f7d 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index e56d6c81bc8..4b4ed3450fe 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 51bc61faf24..8765785da54 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index f4e3dc2f3ac..552a8da97a3 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 6d711f86c85..74c73b303db 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 1f810f92e8b..757b0877a91 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 083612d6b95..6ce7dd1b2a0 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 15241ba1747..e05edde420a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 1323dc53df9..467db34a1c9 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index df772e70403..ed601194eab 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index e145971eaee..c5e433c850e 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 95eb3f25f6b..f52e13379c5 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 22dbab6a9a7..a67b042b56d 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 6b8fce26b14..f83c10096cc 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 611c3de3f02..ca9d6ddec35 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index bae324834a4..40d12631865 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 9f2b44ca18e..ac92bbc4865 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index b68e04a7699..32757d6d2e6 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 3188fd01ca9..ca4b98e326c 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index bbbcabe9be7..59cfdd51f87 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 759c08aafff..4b3640fae1b 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index eb573de5953..fd05551a838 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 902c246b7ff..401b5f3f897 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index f48f69de28c..e9bb69f2c0e 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index f5655267f6e..ef4d03946e1 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index bdb82b6d2ad..bcb60fbc82a 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index e837deda0ff..dd728d3549b 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index dc1b200a4c7..4e53bbf20ab 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 7a493600bac..08f9459a9cc 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+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 91c40b6c638..6f88b5b340a 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:03+0200\n" +"PO-Revision-Date: 2013-06-24 23:14+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 57857ae38ee..1353cc18162 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index edc70b34a2f..232bdb7e9b5 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 3e0f4e60baa..23694f805ce 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 8daa61cb53b..b1f0efb11ac 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-24 00:02+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index b6b66dffe2f..123bf7a560e 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-24 02:02+0200\n" -"PO-Revision-Date: 2013-06-23 23:15+0000\n" +"POT-Creation-Date: 2013-06-25 02:05+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 13ee1b295e9..7c320b3a199 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-24 02:01+0200\n" -"PO-Revision-Date: 2013-06-23 23:16+0000\n" +"POT-Creation-Date: 2013-06-25 02:04+0200\n" +"PO-Revision-Date: 2013-06-24 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 8637b8da269..cd025aec78d 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -24,6 +24,7 @@ "%s set the database host." => "%s ρυθμίση του κεντρικόυ υπολογιστή βάσης δεδομένων. ", "PostgreSQL username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL", "You need to enter either an existing account or the administrator." => "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή.", +"Oracle connection could not be established" => "Αδυναμία σύνδεσης Oracle", "MySQL username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL", "DB Error: \"%s\"" => "Σφάλμα Βάσης Δεδομένων: \"%s\"", "Offending command was: \"%s\"" => "Η εντολη παραβατικοτητας ηταν: \"%s\"", diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index 2782be65da9..327fe75b9d2 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -15,6 +15,24 @@ "Files" => "Dosieroj", "Text" => "Teksto", "Images" => "Bildoj", +"Set an admin username." => "Starigi administran uzantonomon.", +"Set an admin password." => "Starigi administran pasvorton.", +"%s enter the database username." => "%s enigu la uzantonomon de la datumbazo.", +"%s enter the database name." => "%s enigu la nomon de la datumbazo.", +"%s you may not use dots in the database name" => "%s vi ne povas uzi punktojn en la nomo de la datumbazo", +"%s set the database host." => "%s enigu la gastigon de la datumbazo.", +"PostgreSQL username and/or password not valid" => "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas", +"Oracle connection could not be established" => "Konekto al Oracle ne povas stariĝi", +"MySQL username and/or password not valid" => "La uzantonomo de MySQL aŭ la pasvorto ne validas", +"DB Error: \"%s\"" => "Datumbaza eraro: “%s”", +"MySQL user '%s'@'localhost' exists already." => "La uzanto de MySQL “%s”@“localhost” jam ekzistas.", +"Drop this user from MySQL" => "Forigi ĉi tiun uzanton el MySQL", +"MySQL user '%s'@'%%' already exists" => "La uzanto de MySQL “%s”@“%%” jam ekzistas", +"Drop this user from MySQL." => "Forigi ĉi tiun uzanton el MySQL.", +"Oracle username and/or password not valid" => "La uzantonomo de Oracle aŭ la pasvorto ne validas", +"MS SQL username and/or password not valid: %s" => "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", +"Please double check the installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", "seconds ago" => "sekundoj antaŭe", "1 minute ago" => "antaŭ 1 minuto", "%d minutes ago" => "antaŭ %d minutoj", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 2c8bdbb8903..eee768db5cf 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.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/eo.php b/settings/l10n/eo.php index 25b28b9021a..83e03f2f5df 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -24,6 +24,8 @@ "Delete" => "Forigi", "__language_name__" => "Esperanto", "Security Warning" => "Sekureca averto", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", +"Please double check the installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", "Cron" => "Cron", "Sharing" => "Kunhavigo", "Enable Share API" => "Kapabligi API-on por Kunhavigo", -- cgit v1.2.3 From 29caae3491dc55c613c118683ac9e0490b73c1fb Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 27 Jun 2013 02:12:00 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/sl.php | 1 + apps/files_encryption/l10n/es.php | 18 ++++++ apps/files_encryption/l10n/eu.php | 5 +- apps/files_encryption/l10n/fr.php | 17 +++-- core/l10n/es_AR.php | 54 ++++++++-------- core/l10n/sl.php | 6 ++ l10n/af_ZA/core.po | 70 ++++++++++---------- l10n/af_ZA/lib.po | 4 +- l10n/ar/core.po | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- l10n/bs/files.po | 4 +- l10n/bs/files_trashbin.po | 4 +- l10n/ca/core.po | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- l10n/es/files.po | 4 +- l10n/es/files_encryption.po | 43 +++++++------ 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 | 124 ++++++++++++++++++------------------ l10n/es_AR/files.po | 6 +- 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 | 76 +++++++++++----------- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 70 ++++++++++---------- 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 | 70 ++++++++++---------- l10n/eu/files.po | 4 +- l10n/eu/files_encryption.po | 13 ++-- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- l10n/fr/files.po | 4 +- l10n/fr/files_encryption.po | 30 ++++----- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- l10n/hi/files.po | 4 +- l10n/hi/lib.po | 4 +- l10n/hr/core.po | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/nb_NO/core.po | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 85 ++++++++++++------------ l10n/sl/files.po | 9 +-- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 9 +-- l10n/sl/settings.po | 11 ++-- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 68 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- 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 | 70 ++++++++++---------- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 4 +- lib/l10n/sl.php | 1 + settings/l10n/es_AR.php | 70 ++++++++++---------- settings/l10n/sl.php | 2 + 543 files changed, 3525 insertions(+), 3481 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 6902d311ab7..ed6391a588e 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -46,6 +46,7 @@ "{count} folders" => "{count} map", "1 file" => "1 datoteka", "{count} files" => "{count} datotek", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud", "Unable to rename file" => "Ni mogoče preimenovati datoteke", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 74891279355..a88eccc0e41 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -7,12 +7,30 @@ "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.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea 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" => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros", +"PHP module OpenSSL is not installed." => "El módulo OpenSSL de PHP no está instalado.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada.", "Saving..." => "Guardando...", +"Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", +"You can unlock your private key in your " => "Puede desbloquear su clave privada en su", +"personal settings" => "opciones personales", "Encryption" => "Cifrado", +"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);", +"Recovery key password" => "Contraseña de clave de recuperación", "Enabled" => "Habilitar", "Disabled" => "Deshabilitado", +"Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", +"Old Recovery key password" => "Contraseña de la antigua clave de recuperación", +"New Recovery key password" => "Contraseña de la nueva clave de recuperación", "Change Password" => "Cambiar contraseña", +"Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", +"Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros.", +"Old log-in password" => "Contraseña de acceso antigua", +"Current log-in password" => "Contraseña de acceso actual", +"Update Private Key Password" => "Actualizar Contraseña de Clave Privada", "Enable password recovery:" => "Habilitar la recuperación de contraseña:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña", "File recovery settings updated" => "Opciones de recuperación de archivos actualizada", "Could not update file recovery" => "No se pudo actualizar la recuperación de archivos" ); diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index 253953e5c52..5f6208bffd7 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -1,4 +1,7 @@ "Gordetzen...", -"Encryption" => "Enkriptazioa" +"Encryption" => "Enkriptazioa", +"Enabled" => "Gaitua", +"Disabled" => "Ez-gaitua", +"Change Password" => "Aldatu Pasahitza" ); diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 94d27f5501e..52a970d68bf 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -1,20 +1,27 @@ "Clé de récupération activée avec succès", -"Could not enable recovery key. Please check your recovery key password!" => "Ne peut pas activer la clé de récupération. s'il vous plait vérifiez votre mot de passe de clé de récupération!", -"Recovery key successfully disabled" => "Clé de récupération désactivée avc succès", -"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!", +"Could not enable recovery key. Please check your recovery key password!" => "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !", +"Recovery key successfully disabled" => "Clé de récupération désactivée avec succès", +"Could not disable recovery key. Please check your recovery key password!" => "Impossible de désactiver la clé de récupération. Veuillez vérifier 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.", "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" => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur. Vous pouvez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers", +"PHP module OpenSSL is not installed." => "Le module OpenSSL de PHP n'est pas installé.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé.", "Saving..." => "Enregistrement...", "Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", "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 recovery key (allow to recover users files in case of password loss):" => "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).", +"Recovery key password" => "Mot de passe de la clef de récupération", "Enabled" => "Activer", "Disabled" => "Désactiver", +"Change recovery key password:" => "Modifier le mot de passe de la clef de récupération :", +"Old Recovery key password" => "Ancien mot de passe de la clef de récupération", +"New Recovery key password" => "Nouveau mot de passe de la clef de récupération", "Change Password" => "Changer de mot de passe", "Your private key password no longer match your log-in password:" => "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :", "Set your old private key password to your current log-in password." => "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. ", @@ -22,8 +29,8 @@ "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:", +"Enable password recovery:" => "Activer la récupération du mot de passe :", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe", -"File recovery settings updated" => "Mise à jour des paramètres de récupération de fichiers ", +"File recovery settings updated" => "Paramètres de récupération de fichiers mis à jour", "Could not update file recovery" => "Ne peut pas remettre à jour les fichiers de récupération" ); diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 77c3fb854b4..8bef5151163 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -7,7 +7,7 @@ "%s ID not provided." => "%s ID no provista. ", "Error adding %s to favorites." => "Error al agregar %s a favoritos. ", "No categories selected for deletion." => "No se seleccionaron categorías para borrar.", -"Error removing %s from favorites." => "Error al remover %s de favoritos. ", +"Error removing %s from favorites." => "Error al borrar %s de favoritos. ", "Sunday" => "Domingo", "Monday" => "Lunes", "Tuesday" => "Martes", @@ -32,7 +32,7 @@ "1 minute ago" => "hace 1 minuto", "{minutes} minutes ago" => "hace {minutes} minutos", "1 hour ago" => "1 hora atrás", -"{hours} hours ago" => "{hours} horas atrás", +"{hours} hours ago" => "hace {hours} horas", "today" => "hoy", "yesterday" => "ayer", "{days} days ago" => "hace {days} días", @@ -47,51 +47,51 @@ "Yes" => "Sí", "No" => "No", "Ok" => "Aceptar", -"The object type is not specified." => "El tipo de objeto no esta especificado. ", +"The object type is not specified." => "El tipo de objeto no está especificado. ", "Error" => "Error", -"The app name is not specified." => "El nombre de la aplicación no esta especificado.", +"The app name is not specified." => "El nombre de la App no está especificado.", "The required file {file} is not installed!" => "¡El archivo requerido {file} no está instalado!", "Shared" => "Compartido", "Share" => "Compartir", "Error while sharing" => "Error al compartir", -"Error while unsharing" => "Error en el procedimiento de ", +"Error while unsharing" => "Error en al dejar de compartir", "Error while changing permissions" => "Error al cambiar permisos", "Shared with you and the group {group} by {owner}" => "Compartido con vos y el grupo {group} por {owner}", "Shared with you by {owner}" => "Compartido con vos por {owner}", "Share with" => "Compartir con", -"Share with link" => "Compartir con link", +"Share with link" => "Compartir con enlace", "Password protect" => "Proteger con contraseña ", "Password" => "Contraseña", -"Email link to person" => "Enviar el link por e-mail.", -"Send" => "Enviar", +"Email link to person" => "Enviar el enlace por e-mail.", +"Send" => "Mandar", "Set expiration date" => "Asignar fecha de vencimiento", "Expiration date" => "Fecha de vencimiento", -"Share via email:" => "compartido a través de e-mail:", +"Share via email:" => "Compartir a través de e-mail:", "No people found" => "No se encontraron usuarios", "Resharing is not allowed" => "No se permite volver a compartir", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Dejar de compartir", -"can edit" => "puede editar", +"can edit" => "podés editar", "access control" => "control de acceso", "create" => "crear", "update" => "actualizar", "delete" => "borrar", "share" => "compartir", "Password protected" => "Protegido por contraseña", -"Error unsetting expiration date" => "Error al remover la fecha de caducidad", +"Error unsetting expiration date" => "Error al remover la fecha de vencimiento", "Error setting expiration date" => "Error al asignar fecha de vencimiento", -"Sending ..." => "Enviando...", -"Email sent" => "Email enviado", +"Sending ..." => "Mandando...", +"Email sent" => "e-mail mandado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.", "ownCloud password reset" => "Restablecer contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Usá este 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 fue enviada a tu correo electrónico.
Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
Si no está ahí, preguntale a tu administrador.", +"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 fue enviada a tu e-mail.
Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
Si no está ahí, preguntale a tu administrador.", "Request failed!
Did you make sure your email/username was right?" => "¡Error en el pedido!
¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?", -"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña", +"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña.", "Username" => "Nombre de usuario", -"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?", -"Yes, I really want to reset my password now" => "Sí, definitivamente quiero resetear mi contraseña ahora", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se restablezca tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a que querés continuar?", +"Yes, I really want to reset my password now" => "Sí, definitivamente quiero restablecer mi contraseña ahora", "Request reset" => "Solicitar restablecimiento", "Your password was reset" => "Tu contraseña fue restablecida", "To login page" => "A la página de inicio de sesión", @@ -99,44 +99,44 @@ "Reset password" => "Restablecer contraseña", "Personal" => "Personal", "Users" => "Usuarios", -"Apps" => "Aplicaciones", +"Apps" => "Apps", "Admin" => "Administración", "Help" => "Ayuda", -"Access forbidden" => "Acceso denegado", +"Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encontró ownCloud", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!", -"web services under your control" => "servicios web controlados por vos", +"web services under your control" => "servicios web que controlás", "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 que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)", "Please update your PHP installation to use ownCloud securely." => "Actualizá tu instalación de PHP para usar ownCloud de manera segura.", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá 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 reinicio de tu contraseña y tomar control de tu cuenta.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor, habilitá 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 las pruebas de reinicio de tu contraseña y tomar control de tu cuenta.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Tu directorio de datos y tus archivos probablemente son accesibles a través de internet, ya que el archivo .htaccess no está funcionando.", "For information how to properly configure your server, please see the documentation." => "Para información sobre cómo configurar adecuadamente tu servidor, por favor mirá la documentación.", "Create an admin account" => "Crear una cuenta de administrador", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", "Configure the database" => "Configurar la base de datos", -"will be used" => "se utilizarán", +"will be used" => "se usarán", "Database user" => "Usuario de la base de datos", "Database password" => "Contraseña de la base de datos", "Database name" => "Nombre de la base de datos", "Database tablespace" => "Espacio de tablas de la base de datos", -"Database host" => "Host de la base de datos", +"Database host" => "Huésped de la base de datos", "Finish setup" => "Completar la instalación", "%s is available. Get more information on how to update." => "%s está disponible. Obtené más información sobre cómo actualizar.", "Log out" => "Cerrar la sesión", "Automatic logon rejected!" => "¡El inicio de sesión automático fue rechazado!", "If you did not change your password recently, your account may be compromised!" => "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!", -"Please change your password to secure your account again." => "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta.", +"Please change your password to secure your account again." => "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta.", "Lost your password?" => "¿Perdiste tu contraseña?", "remember" => "recordame", -"Log in" => "Entrar", +"Log in" => "Iniciar sesión", "Alternative Logins" => "Nombre alternativos de usuarios", "Hey there,

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

Cheers!" => "Hola,

Simplemente te informo que %s compartió %s con vos.
Miralo acá:

¡Chau!", "prev" => "anterior", "next" => "siguiente", -"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede domorar un rato." +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede demorar un rato." ); diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 3b539f7fe22..81440044adb 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,4 +1,5 @@ "%s je delil »%s« z vami", "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", @@ -42,6 +43,7 @@ "years ago" => "let nazaj", "Choose" => "Izbor", "Cancel" => "Prekliči", +"Error loading file picker template" => "Napaka pri nalaganju predloge za izbor dokumenta", "Yes" => "Da", "No" => "Ne", "Ok" => "V redu", @@ -88,6 +90,8 @@ "Request failed!
Did you make sure your email/username was right?" => "Zahteva je spodletela!
Ali sta elektronski naslov oziroma uporabniško ime navedena pravilno?", "You will receive a link to reset your password via Email." => "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla.", "Username" => "Uporabniško ime", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ste prepričani, da želite nadaljevati?", +"Yes, I really want to reset my password now" => "Da, potrjujem ponastavitev gesla", "Request reset" => "Zahtevaj ponovno nastavitev", "Your password was reset" => "Geslo je ponovno nastavljeno", "To login page" => "Na prijavno stran", @@ -100,6 +104,7 @@ "Help" => "Pomoč", "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!", "web services under your control" => "spletne storitve pod vašim nadzorom", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", @@ -130,6 +135,7 @@ "remember" => "zapomni si", "Log in" => "Prijava", "Alternative Logins" => "Druge prijavne možnosti", +"Hey there,

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

Cheers!" => "Pozdravljen/a,

sporočam, da je %s delil »%s« s teboj.
Poglej vsebine!

Lep pozdrav!", "prev" => "nazaj", "next" => "naprej", "Updating ownCloud to version %s, this may take a while." => "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno." diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 41e885396d7..5db20885a18 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 00:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 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" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Instellings" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index d0aaba84772..f224d863f24 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index cafbf8b0d93..31bdca83b3d 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "لم يتم اختيار فئة للحذف" msgid "Error removing %s from favorites." msgstr "خطأ في حذف %s من المفضلة" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "الاحد" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "الأثنين" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "الثلاثاء" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "الاربعاء" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "الخميس" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "الجمعه" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "السبت" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "كانون الثاني" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "شباط" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "آذار" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "نيسان" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "أيار" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "حزيران" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "تموز" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "آب" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "أيلول" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "تشرين الاول" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "تشرين الثاني" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "كانون الاول" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "إعدادات" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "اليوم" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index f3cafe7a6e7..9b01c579b9e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 6f517e7c90a..05b06fab6dd 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 3f47cdeda06..34e761cae76 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 1b87c576798..988d5ebebfa 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 5d21c869ed6..437b69629bd 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index f19133fabb0..bd2b457e792 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 12b60c39728..867f49d2b70 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index df6f19e4e53..ddca1e6ae99 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Няма избрани категории за изтриване" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Неделя" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понеделник" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Сряда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четвъртък" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Петък" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Събота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Януари" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Февруари" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Април" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Май" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Юни" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Юли" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Септември" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октомври" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Ноември" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Декември" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Настройки" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "днес" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчера" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "последният месец" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "последната година" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 00812512505..011fc25e13c 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 40ddac8dbdd..00d87b41f43 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index f024808d5a6..ddb538244d5 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 63b2b436ea8..2b08f0d6677 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index e195eb4ba19..192efb5851f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 eb25bb66484..f29ac6635eb 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index e500fe54fd7..ad7c0357d02 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 0a3a474d3e2..f2b3fc22318 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "মুছে ফেলার জন্য কনো ক্যাটে msgid "Error removing %s from favorites." msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "রবিবার" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "সোমবার" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "বুধবার" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "শুক্রবার" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "শনিবার" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "জানুয়ারি" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ফেব্রুয়ারি" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "মার্চ" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "এপ্রিল" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "মে" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "জুন" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "জুলাই" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "অগাষ্ট" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "সেপ্টেম্বর" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "অক্টোবর" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "নভেম্বর" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "আজ" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "গত মাস" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "গত বছর" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 81d1cf99871..07ee317ad85 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 25bef73f5e7..cfe1b9b844c 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 0b17a43cbaf..d853a61f334 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index b7d203caa12..09707722e7a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 78a9b05024a..803e8d9d963 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index bf61fd2004b..69260fef1d6 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index b934bec3990..128c7d3fcd4 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index a56fe6475db..46532b31658 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index bc87fa7673a..29f58f4aa81 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index baa1264b2f4..bb4f2b7d283 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 74b3246d057..20ccb5b258a 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "No hi ha categories per eliminar." msgid "Error removing %s from favorites." msgstr "Error en eliminar %s dels preferits." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Diumenge" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Dilluns" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dimarts" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Dimecres" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Dijous" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Divendres" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Dissabte" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Gener" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febrer" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Març" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maig" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juny" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juliol" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agost" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Setembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octubre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configuració" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "avui" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ahir" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "el mes passat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "l'any passat" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 3848fb765d1..3fd75c89a06 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 380d2ad0e62..254cc340b58 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 32b91213c24..ff1381a5e73 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index f4c82a2a13c..3b8a0cc2eea 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 21e1e2b42bd..2414446f6b5 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 f3d1dacbdb8..cc8ccc0c43d 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 095ed8b8723..82ea2ba8316 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index f914ae46947..8eeec23519e 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Žádné kategorie nebyly vybrány ke smazání." msgid "Error removing %s from favorites." msgstr "Chyba při odebírání %s z oblíbených." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Neděle" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pondělí" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Úterý" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Středa" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Čtvrtek" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Pátek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Leden" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Únor" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Březen" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Duben" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Květen" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Červen" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Červenec" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Srpen" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Září" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Říjen" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Listopad" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Prosinec" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nastavení" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "dnes" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "včera" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "před měsíci" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "minulý rok" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8e82ebd7f83..fb5a03244ea 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 e3716085af2..c9b5668a947 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 7ca1084cbab..d9f7b34e1b8 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 4c929a0feb4..68e2d992a24 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 9ce3a578284..9ee3bf82acc 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 e20ff07ce6f..e176331e715 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 9c2f882ee6f..fb5b30b2575 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 2fdd1c36335..4c961404396 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Ni ddewiswyd categorïau i'w dileu." msgid "Error removing %s from favorites." msgstr "Gwall wrth dynnu %s o ffefrynnau." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sul" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Llun" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Mawrth" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercher" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Iau" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Gwener" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sadwrn" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ionawr" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Chwefror" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mawrth" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Ebrill" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Mehefin" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Gorffennaf" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Awst" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Medi" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Hydref" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Tachwedd" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Rhagfyr" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 munud yn ôl" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} munud yn ôl" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 awr yn ôl" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} awr yn ôl" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "heddiw" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ddoe" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} diwrnod yn ôl" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} mis yn ôl" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "y llynedd" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 901b0210895..8906b9ea9ac 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 4d2a2eae5c0..76ff15a6841 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 0a57a9cde56..c58d72ff7bb 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 5788c4b356c..86db3791ede 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index d36b3089295..f546eae2f49 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 8c3ebe31740..9ea9f8090a9 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 0cafa6fa3fe..75833170a82 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index ee143650862..d7334952045 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Ingen kategorier valgt" msgid "Error removing %s from favorites." msgstr "Fejl ved fjernelse af %s fra favoritter." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Søndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Mandag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tirsdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Lørdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marts" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "December" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "sidste måned" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "måneder siden" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "sidste år" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/files.po b/l10n/da/files.po index 14ec9de6698..ee6c9080163 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 360b6a00758..704931beab4 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 63aa4bc1737..eafd16c7427 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index c0a227946da..3a22e6e795f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 3e77cbaf0d0..d23d0442e7a 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 d95f5c114dc..5e8d92bee7c 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index e6f5ed9d780..b32c7aed8bb 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 3329cb8d3ff..1f342949878 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -65,135 +65,135 @@ msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." msgid "Error removing %s from favorites." msgstr "Fehler beim Entfernen von %s von den Favoriten." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sonntag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Montag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dienstag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mittwoch" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Donnerstag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Freitag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samstag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "März" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "Heute" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "Gestern" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/files.po b/l10n/de/files.po index ee99969b612..35c67d411d4 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 36c2eaf3742..7c3e231b420 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 47a0b7c931b..882763d90bc 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 0febaa69c38..e90bd78c68b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 8694bc30450..5e3dfd1d6df 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 b193c6a20d7..3ec1822e0a5 100644 --- a/l10n/de/settings.po +++ b/l10n/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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 81d2d4aaa21..39c8ba7b09b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 b3b252cecb7..49668527613 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -66,135 +66,135 @@ msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." msgid "Error removing %s from favorites." msgstr "Fehler beim Entfernen von %s von den Favoriten." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sonntag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Montag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dienstag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mittwoch" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Donnerstag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Freitag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samstag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "März" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "Heute" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "Gestern" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index d1dd4477eb4..b5047217be9 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 36c187ac1f2..4705bfd661c 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 10fc41ca5d1..d7c7aeb4841 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 af00f22b582..1498082f98c 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index d150c9ea1f2..bd5e4d7211a 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 518f1aa7485..c58c3385354 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 393a83e49f5..2925095e774 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 7522d7cf10c..081b5b96b20 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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" @@ -68,135 +68,135 @@ msgstr "Δεν επιλέχτηκαν κατηγορίες για διαγραφ msgid "Error removing %s from favorites." msgstr "Σφάλμα αφαίρεσης %s από τα αγαπημένα." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Κυριακή" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Δευτέρα" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Τρίτη" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Τετάρτη" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Πέμπτη" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Παρασκευή" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Σάββατο" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ιανουάριος" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Φεβρουάριος" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Μάρτιος" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Απρίλιος" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Μάϊος" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Ιούνιος" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Ιούλιος" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Αύγουστος" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Σεπτέμβριος" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Οκτώβριος" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Νοέμβριος" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "σήμερα" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "χτες" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/files.po b/l10n/el/files.po index b6072df48b8..a20ea258718 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 b06796c7f85..fb3093c73ce 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index d6cfe458552..afcc88c4679 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index d15ee15a56b..ccc9acb85ef 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 6098e170aa9..4196cfc39b9 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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/settings.po b/l10n/el/settings.po index f8360c568f8..10f6a92df0d 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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/user_ldap.po b/l10n/el/user_ldap.po index d1fbba123f7..ef64fb25bcd 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 309bf275953..a61540a499b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 7ceb81b1df6..73f08aaeaf2 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 38371de9a25..b781a694c4f 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Neniu kategorio elektiĝis por forigo." msgid "Error removing %s from favorites." msgstr "Eraro dum forigo de %s el favoratoj." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "dimanĉo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "lundo" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "mardo" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "merkredo" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "ĵaŭdo" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "vendredo" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "sabato" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januaro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februaro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marto" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprilo" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Majo" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Aŭgusto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktobro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Agordo" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hodiaŭ" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "lastamonate" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "lastajare" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 55a57eb0438..f713dc9520a 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mariano \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 b19e65069ec..499fe7a5ab0 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index e55df6f34d8..f4c97b1fb39 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 9889535bc5a..894fdd59e1b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 80a9c4ce8c4..452fc983624 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Mariano \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 d3fc64da1d9..2334a6d7046 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 6b8a1a6a30c..bb60932db44 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3a028120c63..3c175bf08b1 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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" @@ -67,135 +67,135 @@ msgstr "No hay categorías seleccionadas para borrar." msgid "Error removing %s from favorites." msgstr "Error eliminando %s de los favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunes" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miércoles" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jueves" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Viernes" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Enero" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febrero" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mayo" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septiembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octubre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Noviembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Diciembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ajustes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoy" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ayer" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "el mes pasado" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "hace meses" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "el año pasado" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/files.po b/l10n/es/files.po index eaa87e4858e..8336716d102 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 7a064fb6f37..9508abeb49c 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asaez , 2013 # gmoriello , 2013 # saskarip , 2013 # William Díaz , 2013 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 21:40+0000\n" -"Last-Translator: xhiena \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 08:10+0000\n" +"Last-Translator: asaez \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" @@ -62,17 +63,17 @@ 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 "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros" #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "El módulo OpenSSL de PHP no está instalado." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada." #: js/settings-admin.js:11 msgid "Saving..." @@ -82,15 +83,15 @@ msgstr "Guardando..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Puede desbloquear su clave privada en su" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "opciones personales" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -99,11 +100,11 @@ msgstr "Cifrado" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Contraseña de clave de recuperación" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -115,15 +116,15 @@ msgstr "Deshabilitado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Cambiar la contraseña de la clave de recuperación" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Contraseña de la antigua clave de recuperación" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Contraseña de la nueva clave de recuperación" #: templates/settings-admin.php:53 msgid "Change Password" @@ -131,29 +132,29 @@ msgstr "Cambiar contraseña" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Su contraseña de clave privada ya no coincide con su contraseña de acceso:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso." #: 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 recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Contraseña de acceso antigua" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Contraseña de acceso actual" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Actualizar Contraseña de Clave Privada" #: templates/settings-personal.php:45 msgid "Enable password recovery:" @@ -163,7 +164,7 @@ msgstr "Habilitar la recuperación de contraseña:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index b4100782eb4..3875ee70288 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index ef1b9977dce..26df699be7a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 8a72120f5d9..e05f305a345 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 9cfbcf417e3..9b39ad5bc7b 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 d4aef6810bd..c488eaa0892 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 9b35e733847..479d7d74bee 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 8fbf7359904..6822bd513bd 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -60,137 +60,137 @@ msgstr "No se seleccionaron categorías para borrar." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Error al remover %s de favoritos. " +msgstr "Error al borrar %s de favoritos. " -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunes" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miércoles" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jueves" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Viernes" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "enero" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "febrero" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mayo" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "septiembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "octubre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "noviembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "diciembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configuración" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" -msgstr "{hours} horas atrás" +msgstr "hace {hours} horas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoy" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ayer" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "el mes pasado" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "el año pasado" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "años atrás" @@ -221,7 +221,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 "El tipo de objeto no esta especificado. " +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 @@ -233,7 +233,7 @@ msgstr "Error" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "El nombre de la aplicación no esta especificado." +msgstr "El nombre de la App no está especificado." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" @@ -253,7 +253,7 @@ msgstr "Error al compartir" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Error en el procedimiento de " +msgstr "Error en al dejar de compartir" #: js/share.js:143 msgid "Error while changing permissions" @@ -273,7 +273,7 @@ msgstr "Compartir con" #: js/share.js:164 msgid "Share with link" -msgstr "Compartir con link" +msgstr "Compartir con enlace" #: js/share.js:167 msgid "Password protect" @@ -285,11 +285,11 @@ msgstr "Contraseña" #: js/share.js:173 msgid "Email link to person" -msgstr "Enviar el link por e-mail." +msgstr "Enviar el enlace por e-mail." #: js/share.js:174 msgid "Send" -msgstr "Enviar" +msgstr "Mandar" #: js/share.js:178 msgid "Set expiration date" @@ -301,7 +301,7 @@ msgstr "Fecha de vencimiento" #: js/share.js:211 msgid "Share via email:" -msgstr "compartido a través de e-mail:" +msgstr "Compartir a través de e-mail:" #: js/share.js:213 msgid "No people found" @@ -321,7 +321,7 @@ msgstr "Dejar de compartir" #: js/share.js:320 msgid "can edit" -msgstr "puede editar" +msgstr "podés editar" #: js/share.js:322 msgid "access control" @@ -349,7 +349,7 @@ msgstr "Protegido por contraseña" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Error al remover la fecha de caducidad" +msgstr "Error al remover la fecha de vencimiento" #: js/share.js:589 msgid "Error setting expiration date" @@ -357,11 +357,11 @@ msgstr "Error al asignar fecha de vencimiento" #: js/share.js:604 msgid "Sending ..." -msgstr "Enviando..." +msgstr "Mandando..." #: js/share.js:615 msgid "Email sent" -msgstr "Email enviado" +msgstr "e-mail mandado" #: js/update.js:14 msgid "" @@ -387,7 +387,7 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "El enlace para restablecer la contraseña fue enviada a tu correo electrónico.
Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
Si no está ahí, preguntale a tu administrador." +msgstr "El enlace para restablecer la contraseña fue enviada a tu e-mail.
Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
Si no está ahí, preguntale a tu administrador." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" @@ -395,7 +395,7 @@ msgstr "¡Error en el pedido!
¿Estás seguro de que tu dirección de corre #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña" +msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 @@ -408,11 +408,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?" +msgstr "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se restablezca tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a que querés continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "Sí, definitivamente quiero resetear mi contraseña ahora" +msgstr "Sí, definitivamente quiero restablecer mi contraseña ahora" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -444,7 +444,7 @@ msgstr "Usuarios" #: strings.php:7 msgid "Apps" -msgstr "Aplicaciones" +msgstr "Apps" #: strings.php:8 msgid "Admin" @@ -456,7 +456,7 @@ msgstr "Ayuda" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acceso denegado" +msgstr "Acceso prohibido" #: templates/404.php:12 msgid "Cloud not found" @@ -475,7 +475,7 @@ msgstr "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo ac #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "servicios web controlados por vos" +msgstr "servicios web que controlás" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -502,13 +502,13 @@ msgstr "Actualizá tu instalación de PHP para usar ownCloud de manera segura." msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP." +msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor, habilitá la extensión OpenSSL de PHP." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta." +msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir las pruebas de reinicio de tu contraseña y tomar control de tu cuenta." #: templates/installation.php:39 msgid "" @@ -543,7 +543,7 @@ msgstr "Configurar la base de datos" #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "se utilizarán" +msgstr "se usarán" #: templates/installation.php:137 msgid "Database user" @@ -563,7 +563,7 @@ msgstr "Espacio de tablas de la base de datos" #: templates/installation.php:166 msgid "Database host" -msgstr "Host de la base de datos" +msgstr "Huésped de la base de datos" #: templates/installation.php:172 msgid "Finish setup" @@ -590,7 +590,7 @@ msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta." +msgstr "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta." #: templates/login.php:34 msgid "Lost your password?" @@ -602,7 +602,7 @@ msgstr "recordame" #: templates/login.php:41 msgid "Log in" -msgstr "Entrar" +msgstr "Iniciar sesión" #: templates/login.php:47 msgid "Alternative Logins" @@ -626,4 +626,4 @@ msgstr "siguiente" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Actualizando ownCloud a la versión %s, puede domorar un rato." +msgstr "Actualizando ownCloud a la versión %s, puede demorar un rato." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index fec836f5f22..a849873ab45 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 924acbadc41..eaaa23e5229 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 40f68783157..4e29e09f93d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 6448c511db4..4533c27b400 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index e953455fb68..76f8ff093e6 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index e3d1016a35a..fb9e9ec5e43 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "Error al autenticar" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "El nombre mostrado fue cambiado" +msgstr "El nombre mostrado que usás fue cambiado." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -46,7 +46,7 @@ msgstr "No fue posible añadir el grupo" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "No se puede habilitar la aplicación." +msgstr "No se pudo habilitar la App." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -54,15 +54,15 @@ msgstr "e-mail guardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "el e-mail no es válido " +msgstr "El e-mail no es válido " #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "No fue posible eliminar el grupo" +msgstr "No fue posible borrar el grupo" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "No fue posible eliminar el usuario" +msgstr "No fue posible borrar el usuario" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -70,29 +70,29 @@ msgstr "Idioma cambiado" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Pedido no válido" +msgstr "Pedido inválido" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Los administradores no se pueden quitar a ellos mismos del grupo administrador. " +msgstr "Los administradores no se pueden quitar a si mismos del grupo administrador. " #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "No fue posible añadir el usuario al grupo %s" +msgstr "No fue posible agregar el usuario al grupo %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "No es posible eliminar al usuario del grupo %s" +msgstr "No es posible borrar al usuario del grupo %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "No se pudo actualizar la aplicación." +msgstr "No se pudo actualizar la App." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Actualizado a {appversion}" +msgstr "Actualizar a {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -116,7 +116,7 @@ msgstr "Actualizando...." #: js/apps.js:93 msgid "Error while updating app" -msgstr "Error al actualizar" +msgstr "Error al actualizar App" #: js/apps.js:96 msgid "Updated" @@ -136,7 +136,7 @@ msgstr "deshacer" #: js/users.js:79 msgid "Unable to remove user" -msgstr "Imposible remover usuario" +msgstr "Imposible borrar usuario" #: js/users.js:92 templates/users.php:26 templates/users.php:87 #: templates/users.php:112 @@ -153,7 +153,7 @@ msgstr "Borrar" #: js/users.js:269 msgid "add group" -msgstr "Agregar grupo" +msgstr "agregar grupo" #: js/users.js:428 msgid "A valid username must be provided" @@ -201,13 +201,13 @@ msgstr "Por favor, comprobá nuevamente la guía de instalación%s of the available %s" -msgstr "Usaste %s de los %s disponibles" +msgstr "Usás %s de los %s disponibles" #: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" @@ -431,7 +431,7 @@ msgstr "Nombre a mostrar" #: templates/personal.php:74 msgid "Email" -msgstr "Correo Electrónico" +msgstr "e-mail" #: templates/personal.php:76 msgid "Your email address" @@ -439,7 +439,7 @@ msgstr "Tu dirección de e-mail" #: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" -msgstr "Escribí una dirección de correo electrónico para restablecer la contraseña" +msgstr "Escribí una dirección de e-mail para restablecer la contraseña" #: templates/personal.php:86 templates/personal.php:87 msgid "Language" @@ -455,11 +455,11 @@ msgstr "WebDAV" #: templates/personal.php:107 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" +msgstr "Usá esta dirección para conectarte con ownCloud en tu Administrador de Archivos" #: templates/users.php:21 msgid "Login Name" -msgstr "Nombre de " +msgstr "Nombre de Usuario" #: templates/users.php:30 msgid "Create" @@ -497,7 +497,7 @@ msgstr "Almacenamiento" #: templates/users.php:102 msgid "change display name" -msgstr "Cambiar el nombre que se muestra" +msgstr "Cambiar el nombre mostrado" #: templates/users.php:106 msgid "set new password" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 6c5085952d2..42feceeb67b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index cf57d1175c9..6c08270baa7 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Kustutamiseks pole kategooriat valitud." msgid "Error removing %s from favorites." msgstr "Viga %s eemaldamisel lemmikutest." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Pühapäev" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Esmaspäev" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Teisipäev" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Kolmapäev" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Neljapäev" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Reede" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Laupäev" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Jaanuar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Veebruar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Märts" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprill" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juuni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juuli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktoober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Detsember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Seaded" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "täna" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "eile" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index c07fd0d3169..c3b6f1ba02e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index bb43b85a2f3..b0ad35f3b12 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 0ea609f1c01..5ca9cbdde30 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 1d550e0201f..4103f63f2ab 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 84997870013..a5d1e8cdd86 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 6113a81c875..0937931cf13 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 633c23e05e1..252378f443c 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 4075125d91e..360feb9330e 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Ez da ezabatzeko kategoriarik hautatu." msgid "Error removing %s from favorites." msgstr "Errorea gertatu da %s gogokoetatik ezabatzean." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Igandea" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Astelehena" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Asteartea" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Asteazkena" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Osteguna" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Ostirala" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Larunbata" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Urtarrila" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Otsaila" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Martxoa" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Apirila" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maiatza" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Ekaina" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Uztaila" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Abuztua" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Iraila" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Urria" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Azaroa" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Abendua" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundu" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "gaur" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "atzo" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "hilabete" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "joan den urtean" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "urte" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index e56b4fdfcf4..3febc63ea4b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 304cd86c002..b855eec29a2 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asaez , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 08:10+0000\n" +"Last-Translator: asaez \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -103,11 +104,11 @@ msgstr "" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Gaitua" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Ez-gaitua" #: templates/settings-admin.php:34 msgid "Change recovery key password:" @@ -123,7 +124,7 @@ msgstr "" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Aldatu Pasahitza" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 2b0ef136fa7..f7dac2f7262 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 0d033e3d96e..d28abc7639c 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 8a909233408..b6e8cb6e249 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index f5ed84b74d7..3910c3caed9 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index f1faa72a3fb..ca85f0617b1 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 56e299b9131..e6e7382d6e4 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 1cc51050faa..8d9195be01b 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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" @@ -61,135 +61,135 @@ msgstr "هیج دسته ای برای پاک شدن انتخاب نشده است msgid "Error removing %s from favorites." msgstr "خطای پاک کردن %s از علاقه مندی ها." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "یکشنبه" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "دوشنبه" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "سه شنبه" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "چهارشنبه" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "پنجشنبه" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "جمعه" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "شنبه" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ژانویه" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "فبریه" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "مارس" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "آوریل" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "می" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ژوئن" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "جولای" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "آگوست" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "سپتامبر" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "اکتبر" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "نوامبر" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "دسامبر" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "امروز" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "دیروز" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ماه قبل" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "سال قبل" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "سال‌های قبل" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 3a5b7779bd4..621c79d1475 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index a8224ed9b2d..21cf84dbff8 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 9e3677fcdd7..b046c10a83d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 54e6f844568..aac2a6e7a1a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index a9ac1b53c73..b48fee0a48c 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 9a6956a5514..89080126f20 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index c09193d7c95..713fd399852 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 509eb435e39..a6aa61f34f1 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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" @@ -62,135 +62,135 @@ msgstr "Luokkia ei valittu poistettavaksi." msgid "Error removing %s from favorites." msgstr "Virhe poistaessa kohdetta %s suosikeista." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "sunnuntai" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "maanantai" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "tiistai" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "keskiviikko" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "torstai" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "perjantai" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "lauantai" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "tammikuu" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "helmikuu" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "maaliskuu" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "huhtikuu" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "toukokuu" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "kesäkuu" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "heinäkuu" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "elokuu" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "syyskuu" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "lokakuu" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "marraskuu" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "joulukuu" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Asetukset" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "tänään" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "eilen" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "viime kuussa" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "viime vuonna" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b5f034992c5..66e663a4f39 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 14a8a6d025a..ee71e0b7b9a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 4d175ceb535..f05df1e9f7b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index b801dab5012..6530f623379 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 3bb2c74afca..0120a65d470 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 2a3545238a2..58d8433e2af 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index af5ea17cd63..299c394b225 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 38f654610fc..a2c93dd4ca3 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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" @@ -66,135 +66,135 @@ msgstr "Pas de catégorie sélectionnée pour la suppression." msgid "Error removing %s from favorites." msgstr "Erreur lors de la suppression de %s des favoris." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Dimanche" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lundi" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Mardi" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercredi" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jeudi" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Vendredi" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samedi" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "janvier" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "février" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "avril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "juin" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "juillet" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "août" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "septembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "octobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "décembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Paramètres" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "aujourd'hui" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "hier" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "le mois dernier" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "l'année dernière" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index e383782a587..449ef186a76 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 8b042476584..512b7f10e68 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 12: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,16 +28,16 @@ msgstr "Clé de récupération activée avec succès" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "Ne peut pas activer la clé de récupération. s'il vous plait vérifiez votre mot de passe de clé de récupération!" +msgstr "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "Clé de récupération désactivée avc succès" +msgstr "Clé de récupération désactivée avec succès" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "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!" +msgstr "Impossible de désactiver la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -66,13 +66,13 @@ msgstr "Votre clef privée est invalide ! Votre mot de passe a peut-être été #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "Le module OpenSSL de PHP n'est pas installé." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé." #: js/settings-admin.js:11 msgid "Saving..." @@ -99,11 +99,11 @@ msgstr "Chiffrement" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe)." #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Mot de passe de la clef de récupération" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -115,15 +115,15 @@ msgstr "Désactiver" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Modifier le mot de passe de la clef de récupération :" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Ancien mot de passe de la clef de récupération" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nouveau mot de passe de la clef de récupération" #: templates/settings-admin.php:53 msgid "Change Password" @@ -157,7 +157,7 @@ msgstr "Mettre à jour le mot de passe de votre clé privée" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "Activer la récupération du mot de passe:" +msgstr "Activer la récupération du mot de passe :" #: templates/settings-personal.php:47 msgid "" @@ -167,7 +167,7 @@ msgstr "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "Mise à jour des paramètres de récupération de fichiers " +msgstr "Paramètres de récupération de fichiers mis à jour" #: templates/settings-personal.php:64 msgid "Could not update file recovery" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index bfb9c872a9b..c425552f2cf 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 06fd8fa8cb8..d05867275af 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 7d5f29bf0a0..272e625ddb4 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index a5f08d463f6..67bb78cc0ca 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 08e7fed71fd..47dd91ddd4b 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index c4b7ee0fee8..38cef14b2ea 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 4ae5147bca8..29b7623755c 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Non se seleccionaron categorías para eliminación." msgid "Error removing %s from favorites." msgstr "Produciuse un erro ao eliminar %s dos favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Luns" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mércores" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Xoves" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Venres" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "xaneiro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "febreiro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "maio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "xuño" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "xullo" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "setembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "outubro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "decembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Axustes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Vai 1 hora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoxe" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "onte" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "último mes" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "último ano" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 684d45ae22f..1f2e545aed8 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index c03d12e2685..1f4976803d5 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 432220cf0a2..4a1ce255598 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 23c264433c8..afb40ecd577 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 750805bb5b0..cd71224bdfd 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c25f1a45148..39c66c1c09c 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 5d626e7ef43..6b49d7644b1 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 96d097adf83..af1943fa8df 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "לא נבחרו קטגוריות למחיקה" msgid "Error removing %s from favorites." msgstr "שגיאה בהסרת %s מהמועדפים." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "יום ראשון" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "יום שני" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "יום שלישי" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "יום רביעי" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "יום חמישי" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "יום שישי" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "שבת" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ינואר" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "פברואר" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "מרץ" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "אפריל" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "מאי" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "יוני" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "יולי" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "אוגוסט" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "ספטמבר" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "אוקטובר" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "נובמבר" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "דצמבר" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "הגדרות" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "שניות" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "היום" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "אתמול" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "חודשים" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/files.po b/l10n/he/files.po index 833ad6436c3..826742d7e51 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 7db359cc679..ee63494bcc8 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index e1a1fbc7809..5ee7399de82 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 3093babfb45..120eea30e35 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 5d16ab1f58e..a8fc8dbfd42 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index e9072e8a080..8c17f3c3195 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index e287c5fe8f9..8298638ee4c 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 16cd4bf3461..b4f222f17ca 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 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" @@ -62,135 +62,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "जनवरी" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "फरवरी" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "मार्च" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "अप्रैल" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "मई" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "जून" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "जुलाई" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "अगस्त" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "सितम्बर" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "अक्टूबर" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "नवंबर" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "दिसम्बर" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 118e99b7e50..6c912156a47 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index f8ac471b2ba..308868022e2 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 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/hr/core.po b/l10n/hr/core.po index fcb4fb73049..9f59d45d6b3 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Niti jedna kategorija nije odabrana za brisanje." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "nedelja" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "ponedeljak" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "utorak" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "srijeda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "četvrtak" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "petak" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "subota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Siječanj" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Veljača" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Ožujak" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Travanj" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Svibanj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Lipanj" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Srpanj" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Kolovoz" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Rujan" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Listopad" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Studeni" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Prosinac" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Postavke" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "danas" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "jučer" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mjeseci" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f2b442e6d78..2574788614f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 65a5177cdba..7952b00e05f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 7ca4969c3ba..8c9b155be94 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index fac04e71f06..3af9e1f1232 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 02db02f21fa..4528ac0305b 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index c05a173698b..c439b9bde6d 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 19364072edd..2df06277c05 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index ebc29ae86cb..0bd1775a0e2 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Nincs törlésre jelölt kategória" msgid "Error removing %s from favorites." msgstr "Nem sikerült a kedvencekből törölni ezt: %s" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "vasárnap" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "hétfő" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "kedd" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "szerda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "csütörtök" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "péntek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "szombat" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "január" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "február" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "március" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "április" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "május" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "június" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "július" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "augusztus" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "szeptember" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "október" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "november" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "december" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Beállítások" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "ma" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "tegnap" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "több hónapja" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "tavaly" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "több éve" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ea61959f14b..e60b51bc5ac 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 26b1d2e455d..002cae68a76 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index bc1e33cad00..3e952ca8b78 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 160a54c12c1..998e396cdf7 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index be74cef5361..f580f34096f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index c31be35ab08..0dda0bb1faa 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 76b57d1474f..ad37f5cf77e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 830ee08a234..75e0e76e6b6 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index b09b8cf248c..9a6213278b5 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 516a9ae1379..f660d2e85a9 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index d78ba4b31e5..3a6821a5560 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 d38be332ec5..1864e34b418 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index b4c9764d4ca..0943c5053df 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Dominica" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunedi" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martedi" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercuridi" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jovedi" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Venerdi" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabbato" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "januario" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februario" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Martio" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Augusto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configurationes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 13c98472dc3..40ef0e36887 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index f04d0346a57..8f87d09748f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 4b3ff1b6caf..22a4ec2dbf5 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index dbd84ee318f..a0d49bc7b5f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 9d6bb20c703..a1f2ce2c334 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index fe1b763855c..c9856ed3c2a 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index eca8b4b8f6e..1aa675768a7 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 2636b71dfcd..995eae2691f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Tidak ada kategori terpilih untuk dihapus." msgid "Error removing %s from favorites." msgstr "Galat ketika menghapus %s dari favorit" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Minggu" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Senin" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Selasa" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Rabu" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Kamis" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Jumat" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabtu" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Maret" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mei" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agustus" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Setelan" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hari ini" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "kemarin" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/files.po b/l10n/id/files.po index 7879939ac5a..dbe6e8158df 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 749189c5713..35a5ede8922 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index be8fb9a574f..eec98f5b5ac 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index f4afa3dfdbc..071563e748a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 9e877f02f3c..cbd68a69290 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 40f8eedd3fb..852012e9a83 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index a46f1e833ee..a053d59f283 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 330ad870c16..45f0527d041 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Enginn flokkur valinn til eyðingar." msgid "Error removing %s from favorites." msgstr "Villa við að fjarlægja %s úr eftirlæti." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sunnudagur" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Mánudagur" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Þriðjudagur" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miðvikudagur" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Fimmtudagur" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Föstudagur" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Laugardagur" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janúar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febrúar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Apríl" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maí" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Júní" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Júlí" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Ágúst" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Október" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Nóvember" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Stillingar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sek." -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "í dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "í gær" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "síðasta ári" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/files.po b/l10n/is/files.po index 34340946f1a..9b17fb7ddf6 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 573c7054e9c..8211b5cb636 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index b5018ef31a5..5f8a56defc7 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 1ab495a8a04..c5133e3f4d0 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 6ca4b051a2a..a597260cc78 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 92852949b2c..59bb25868e6 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 1d4fbf8f8d9..434621feebb 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 6a3e978763e..fda6115e7eb 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nessuna categoria selezionata per l'eliminazione." msgid "Error removing %s from favorites." msgstr "Errore durante la rimozione di %s dai preferiti." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domenica" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunedì" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martedì" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercoledì" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Giovedì" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Venerdì" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabato" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Gennaio" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febbraio" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprile" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maggio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Giugno" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Luglio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Settembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Ottobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dicembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "oggi" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ieri" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "mese scorso" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mesi fa" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "anno scorso" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/files.po b/l10n/it/files.po index fcdf9ed4491..4c08573739e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index cf8defcbfff..f6058d695de 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 579178888ec..897eaaf0474 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 a3c37675feb..e2cd88ed283 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index ef76904aae0..38c5ab889c7 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 78802e5f8aa..0d372da2de3 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 7d3a36edcd4..9f5102f776d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 486239368ec..3aa9f86baaf 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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" @@ -63,135 +63,135 @@ msgstr "削除するカテゴリが選択されていません。" msgid "Error removing %s from favorites." msgstr "お気に入りから %s の削除エラー" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "月" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "火" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "水" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "木" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "金" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "土" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "1月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "2月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "3月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "4月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "5月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "6月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "7月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "8月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "9月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "10月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "11月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "12月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "設定" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今日" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨日" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "一月前" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "一年前" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 2a02df7abff..c8f9bd471ea 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 9641d4ea4c1..0f42f27db81 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 2ed082766ac..c302f6ac225 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 929e166861b..73c55e6687e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 00e48278dd6..ff1dff50081 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 7a5ee41ff87..67458013c6d 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 f273abf31cf..1b36729b825 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 7e0a6087cb1..aed0a9b3566 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 2c43aa9d884..230ac84ddf9 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index f71135a4048..ff870b72f4a 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "სარედაქტირებელი კატეგორი msgid "Error removing %s from favorites." msgstr "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "კვირა" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "ორშაბათი" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "სამშაბათი" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "ოთხშაბათი" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "ხუთშაბათი" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "პარასკევი" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "შაბათი" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "იანვარი" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "თებერვალი" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "მარტი" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "აპრილი" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "მაისი" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ივნისი" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ივლისი" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "აგვისტო" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "სექტემბერი" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ოქტომბერი" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "ნოემბერი" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "დეკემბერი" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "დღეს" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 246c9919055..7f4cb798614 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 6b5d02a2118..f55ee1983a8 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index aee96750929..094b3063850 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index f7a8d12a954..4b6b2421e30 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index a9416312adb..bcd4dd09a6c 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index db3f481b551..97f5afb0054 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 4326c97a246..2942562fbd3 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 1a06f9ff89a..777644e2df4 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "삭제할 분류를 선택하지 않았습니다. " msgid "Error removing %s from favorites." msgstr "책갈피에서 %s을(를) 삭제할 수 없었습니다." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "일요일" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "월요일" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "화요일" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "수요일" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "목요일" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "금요일" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "토요일" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "1월" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "2월" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "3월" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "4월" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "5월" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "6월" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "7월" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "8월" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "9월" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "10월" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "11월" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "12월" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "설정" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "초 전" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "오늘" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "어제" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "지난 달" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "개월 전" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "작년" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index a74387a3f44..101547c6d36 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 0606fb0befd..db446f07e9b 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index b9ed8f63e2b..f2cd849e917 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 2ae1c30a58a..89d32881abf 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 8702193d425..b3159431ec0 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 640e2b716b8..f9015599556 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b8c1652f407..b0692cbf360 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 6f028252c5f..ddd67a16e74 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 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" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 7e56ad50b9f..6f4ed03b7d2 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 59c485719c6..42851dabc81 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 430deabcf51..6c3873f36de 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 91e8e03ad68..1eee07fc309 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 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 42d84255765..f6eafc5ae43 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index bf2b259100d..2138146dd7b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 6ed7a21be02..5e78967b48d 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Keng Kategorien ausgewielt fir ze läschen." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sonndes" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Méindes" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dënschdes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mëttwoch" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Donneschdes" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Freides" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samschdes" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mäerz" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abrëll" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mee" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Astellungen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "Läschte Mount" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "vru {months} Méint" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "Méint hier" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "Läscht Joer" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "Joren hier" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 87834dbf1b7..6db17d8f18b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 8a0f12b4a8e..98135761975 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index a9c0f94523c..5198dfd7605 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index ba8b049e877..da8c67e6f95 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 60fc60b4e98..fdb483bf4e4 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 47f293f5bbf..0a62206af80 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 898ef2e3a59..d48f11b626f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index acf0e28b8af..1285323cfd9 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Trynimui nepasirinkta jokia kategorija." msgid "Error removing %s from favorites." msgstr "Klaida ištrinant %s iš jūsų mėgstamiausius." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sekmadienis" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pirmadienis" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Antradienis" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Trečiadienis" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Penktadienis" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Šeštadienis" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Sausis" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Vasaris" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Kovas" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Balandis" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Gegužė" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Birželis" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Liepa" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Rugpjūtis" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Rugsėjis" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Spalis" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Lapkritis" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Gruodis" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "prieš 1 valandą" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "prieš {hours} valandas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "šiandien" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "vakar" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "prieš {months} mėnesių" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "praeitais metais" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 2028ee0aced..fdf516c6c23 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index ba74135ddaf..fdee5ab7ab1 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 1bc412436fe..fbc351386a0 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 195fdcf27ed..2ba0fea6f89 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 939a04910b2..b6b0c94cbae 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 f609ccc3801..86f5331f263 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index d9934d3d7cb..6c8cee48df2 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index d89c0e2266c..e070da099fc 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Neviena kategorija nav izvēlēta dzēšanai." msgid "Error removing %s from favorites." msgstr "Kļūda, izņemot %s no izlases." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Svētdiena" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pirmdiena" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Otrdiena" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Trešdiena" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Ceturtdiena" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Piektdiena" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sestdiena" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janvāris" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februāris" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marts" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprīlis" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maijs" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jūnijs" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Jūlijs" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Augusts" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembris" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktobris" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembris" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembris" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "šodien" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "vakar" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 5b5938acad3..8bdb9ef091a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index e5edb12e983..41198053845 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 8575c230061..c567f174ac4 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 6533f9f9e21..36ea3e28a50 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 25b9d7cae55..8e64fadde2e 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index ad414f1eba4..a0498618511 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 4bf9f4e471c..91f99d2acdd 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 6a84676919d..35955ca29e8 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Не е одбрана категорија за бришење." msgid "Error removing %s from favorites." msgstr "Грешка при бришење на %s од омилени." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Недела" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понеделник" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Среда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четврток" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Петок" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Сабота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Јануари" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Февруари" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Април" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Мај" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Јуни" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Јули" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Септември" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октомври" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Ноември" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Декември" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Подесувања" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "денеска" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчера" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "минатиот месец" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "пред месеци" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "минатата година" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index f77534ce047..574f121b314 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 6bb215dc2fb..62377577733 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index d1af7482439..592f9d06fd5 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index a0b4bc4a155..86cc58c0ec2 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 4cd7f8ed54c..00599e9e7d9 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 8391e49a28f..e0fc10d0eec 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 97a0b85713c..95bb08e798b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 843daf97d54..f36b1e91976 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Tiada kategori dipilih untuk dibuang." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Ahad" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Isnin" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Selasa" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Rabu" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Khamis" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Jumaat" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabtu" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mac" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mei" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jun" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julai" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Ogos" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Disember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Tetapan" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 17c0d30f7a7..5266e5cc80d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index adf2524588b..c1e3cd3bdbf 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 235ff893169..05e585c9a36 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 5fdf6338aa6..b9f47dbf7de 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 2eb4f60fc04..502cd25d58c 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index a6041e01c60..f23c096f23b 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 3d198f9dd9f..ceebe7b2529 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 516852def2f..af3f8ea6c24 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "ဖျက်ရန်အတွက်ခေါင်းစဉ်မရွ msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ဇန်နဝါရီ" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ဖေဖော်ဝါရီ" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "မတ်" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "ဧပြီ" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "မေ" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ဇွန်" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ဇူလိုင်" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "ဩဂုတ်" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "စက်တင်ဘာ" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "အောက်တိုဘာ" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "နိုဝင်ဘာ" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "ယနေ့" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 950211e9b2d..a0e26c4841f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index a2fd69ceacf..0816d473959 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 78a5dd6e1d4..12afb279374 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index b44d52211e6..ecaebb67fb6 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Ingen kategorier merket for sletting." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Søndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Mandag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tirsdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Lørdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "forrige måned" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "måneder siden" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "forrige år" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 36898ad1be3..1f1f3d9e985 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 61769ee279e..9130e69d5d4 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index fe4c94e896f..0f2caee682d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 51f52b419bc..9d9071a4f94 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 0b6240bd983..8da002ac16e 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index b1d3711727e..3d289468880 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 07f39f2fbe4..782167167c4 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index acf73fb8fdb..14971bf7759 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: Jorcee \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Geen categorie geselecteerd voor verwijdering." msgid "Error removing %s from favorites." msgstr "Verwijderen %s van favorieten is mislukt." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "zondag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "maandag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "dinsdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "woensdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "donderdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "vrijdag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "zaterdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "maart" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "april" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mei" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "augustus" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "september" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "november" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "december" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Instellingen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "vandaag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "gisteren" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "vorige maand" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "vorig jaar" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 63ab584db3c..0bec5342004 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 22b31b7cb68..91a850de16e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 3030a7ff093..8597b94eab0 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 5ca2b42dbdc..c4b6c4b8721 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 63a62f4fc18..3966005977e 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 1d99995b01c..ff9e9d61010 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index ab687b7d61d..9ac83f42a96 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 6f2f75d30a3..5237506960e 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Ingen kategoriar valt for sletting." msgid "Error removing %s from favorites." msgstr "Klarte ikkje fjerna %s frå favorittar." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Søndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Måndag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tysdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Laurdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutt sidan" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutt sidan" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 time sidan" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timar sidan" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagar sidan" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "førre månad" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} månadar sidan" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "i fjor" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index d01efdeb832..e929f213a8a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 cda028d5e38..eb80bb06321 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 372ed6d6c18..c45647d741e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 6d56f2fd622..34a18f63354 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 7c40ad0267f..75ccb8b5363 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 916a72b757f..acef0336875 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index ebfd177d97b..23434cff917 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 4b2117cfc89..1a906d0e017 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Pas de categorias seleccionadas per escafar." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Dimenge" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Diluns" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dimarç" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Dimecres" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Dijòus" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Divendres" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Dissabte" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "genièr" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "febrièr" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "març" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junh" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julhet" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agost" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "septembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "octobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configuracion" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "uèi" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ièr" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "mes passat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses a" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "an passat" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 8af162e48ab..606b5e7a283 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 60201730b47..c5a0091ed2b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index f1a7e52a4a4..e53e22d20be 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 2fb04aa5672..3544bc2f32d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index a5c02474d03..dfcb460322f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 78869cc489a..e76743dc031 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 0885215d87f..bccb46b3ffc 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 0fd55c50939..822e8910224 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nie zaznaczono kategorii do usunięcia." msgid "Error removing %s from favorites." msgstr "Błąd podczas usuwania %s z ulubionych." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Niedziela" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Poniedziałek" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Wtorek" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Środa" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Czwartek" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Piątek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Styczeń" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Luty" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marzec" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Kwiecień" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Czerwiec" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Lipiec" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Sierpień" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Wrzesień" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Październik" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Listopad" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Grudzień" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "dziś" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index b5f3a722169..2bc03db43df 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 b990d3c0a44..0a4ae17db37 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index dfcc243b6a1..f566ac2dfff 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 08717d2bdff..d55214a3737 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index cc92491605f..e3db7a3be3f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 082c0cc5bf2..6b4e97d60e3 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 0ff7668ea88..569064633f0 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 94b3ebe752c..7329b189f12 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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" @@ -63,135 +63,135 @@ msgstr "Nenhuma categoria selecionada para remoção." msgid "Error removing %s from favorites." msgstr "Erro ao remover %s dos favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Segunda-feira" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Terça-feira" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Quarta-feira" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Quinta-feira" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Sexta-feira" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "janeiro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "fevereiro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "março" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "maio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junho" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julho" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "setembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "outubro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "dezembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ajustes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoje" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ontem" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "último mês" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "último ano" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 0ac745ad1d1..c66a6e7950a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index cd1675f0031..0104342fa48 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 2efb9557a97..593b11afc40 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 2edfad3f0dc..219dd6254a9 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index b4a3db18b80..7eb4bf92d9a 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 414a167813a..ba19ac94872 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 89992c98c99..adb52d63869 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index b8860022ff1..707ab0fcb5f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nenhuma categoria seleccionada para eliminar." msgid "Error removing %s from favorites." msgstr "Erro a remover %s dos favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Segunda" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Terça" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Quarta" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Quinta" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Sexta" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janeiro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Fevereiro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Março" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junho" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julho" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Setembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Outubro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configurações" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Há 1 horas" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoje" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ontem" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ultímo mês" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ano passado" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 4fa324ebddb..0796b5b7648 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 44332f4b485..e1b84fb835f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 17f46670277..10fc28ff5ac 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 596e24663d7..258e0ca6135 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index d6de5ad4d99..c8b4c62d962 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 58ef49215bc..6c433390b3a 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 9044a8477d5..7d9027e2e1e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index cf70fffebd1..2dfd6158cfd 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: dimaursu16 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nici o categorie selectată pentru ștergere." msgid "Error removing %s from favorites." msgstr "Eroare la ștergerea %s din favorite" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Duminică" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Luni" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Marți" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miercuri" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Joi" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Vineri" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sâmbătă" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ianuarie" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februarie" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Martie" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprilie" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Iunie" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Iulie" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembrie" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octombrie" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Noiembrie" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembrie" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Setări" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "astăzi" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ieri" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ultima lună" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ultimul an" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index da1208a7e0e..262df3a32cf 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: dimaursu16 \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 ed306efb07f..c07e031ff18 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 51f776e22f2..b273ef97b00 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 634a5214ee9..a868777969d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index de27c52e960..ff8cdb0cc82 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 2e425be1a89..c5c31e0c000 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index efa83ef2e69..19890db8649 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 85820493c4d..844cdecf99f 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -65,135 +65,135 @@ msgstr "Нет категорий для удаления." msgid "Error removing %s from favorites." msgstr "Ошибка удаления %s из избранного" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Воскресенье" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понедельник" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Среда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четверг" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Пятница" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Суббота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Январь" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Февраль" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Апрель" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Май" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Июнь" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Июль" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Сентябрь" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октябрь" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Ноябрь" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Декабрь" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "сегодня" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчера" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "в прошлом году" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index ff958e37045..50cff7a85a7 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 577f1c2213e..1292fc35b59 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 7e9d5b98c8d..519ff461ddf 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index c5626e33fcb..5ea1ae6326a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f9e070170a2..3346f4eb04c 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 2ea3ed59461..926dbd1f5ce 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index aa89e80f4a2..2c494200e6f 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index d90c370aac3..cb6e479e7b7 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "මකා දැමීම සඳහා ප්‍රවර්ගයන් msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "ඉරිදා" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "සඳුදා" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "අඟහරුවාදා" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "බදාදා" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "සිකුරාදා" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "සෙනසුරාදා" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ජනවාරි" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "පෙබරවාරි" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "මාර්තු" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "අප්‍රේල්" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "මැයි" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ජූනි" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ජූලි" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "අගෝස්තු" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "සැප්තැම්බර්" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ඔක්තෝබර" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "නොවැම්බර්" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "අද" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index da362147611..0ffd20f6c50 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index c8a65d793df..e42f60061d8 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index c692d99227a..bf2da10b208 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index ffdf208d5b3..67d76afd011 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 1ee104b8966..826709a596f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 34cfc0f75db..1cf2f14659d 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 0fd859b2036..cdb6eb94a0f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 79e8f21840f..c8a0a6b1d10 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Neboli vybrané žiadne kategórie pre odstránenie." msgid "Error removing %s from favorites." msgstr "Chyba pri odstraňovaní %s z obľúbených položiek." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Nedeľa" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pondelok" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Utorok" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Streda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Štvrtok" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Piatok" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Január" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Február" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marec" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Apríl" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Máj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jún" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Júl" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Október" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "December" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "dnes" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "včera" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "minulý rok" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 031de089cfc..d7fa858d400 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 1e74ef99333..dfca533bff5 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 0292e541077..2047192b5b2 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 3a8a680f289..9a68d496632 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 10e0f7ec21a..31cd3e6f862 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 3b296582a89..6260c0901e7 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 20c80449a9c..be3e79faa0f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 3bde3a9618a..e788a357456 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak , 2013 # mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s je delil »%s« z vami" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -62,135 +63,135 @@ msgstr "Za izbris ni izbrana nobena kategorija." msgid "Error removing %s from favorites." msgstr "Napaka odstranjevanja %s iz priljubljenih predmetov." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "nedelja" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "ponedeljek" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "torek" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "sreda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "četrtek" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "petek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "marec" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "april" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junij" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julij" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "avgust" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "september" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "november" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "december" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Pred 1 uro" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "danes" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "včeraj" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "lansko leto" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "let nazaj" @@ -204,7 +205,7 @@ msgstr "Prekliči" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Napaka pri nalaganju predloge za izbor dokumenta" #: js/oc-dialogs.js:164 msgid "Yes" @@ -408,11 +409,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ste prepričani, da želite nadaljevati?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Da, potrjujem ponastavitev gesla" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +614,7 @@ msgstr "Druge prijavne možnosti" msgid "" "Hey there,

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

Cheers!" -msgstr "" +msgstr "Pozdravljen/a,

sporočam, da je %s delil »%s« s teboj.
Poglej vsebine!

Lep pozdrav!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 5c3ee02506c..9c70d103097 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -217,7 +218,7 @@ msgstr "{count} datotek" #: lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud" #: lib/app.php:73 msgid "Unable to rename file" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 1a077ab4058..c254087ec94 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index ddf9328eb3f..e835f2b4aa4 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 58a0639be39..254395350c3 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 8ce3264d144..d1ea66c7486 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,7 +124,7 @@ msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." #: setup.php:152 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Povezava z bazo Oracle ni uspela." #: setup.php:234 msgid "MySQL username and/or password not valid" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index a25daf32280..cb7a8b2f14a 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak , 2013 # mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -466,13 +467,13 @@ msgstr "Ustvari" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "Obnovitev administratorjevega gesla" #: 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 "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index fb976fa8eda..48866f92c67 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index c859d4089bb..1173aa9e396 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Nuk selektuar për tu eliminuar asnjë kategori." msgid "Error removing %s from favorites." msgstr "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "E djelë" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "E hënë" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "E martë" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "E mërkurë" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "E enjte" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "E premte" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "E shtunë" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Shkurt" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Prill" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Qershor" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Korrik" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Gusht" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Shtator" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Tetor" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Nëntor" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dhjetor" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Parametra" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "sot" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "dje" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 0bb091ddfe1..b59e1672ea5 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 97bd48d0f4a..673b9345b6d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 0f78a0428ca..990851e3f2b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 9c51d0d918a..843f87b4b14 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index bdce0babf2c..671cee2907a 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 2ddb2f8fb2d..7f40175fe3f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 3e9e25c799f..f3737be676d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 6f7fe3054fa..9563b6a581d 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Ни једна категорија није означена за бр msgid "Error removing %s from favorites." msgstr "Грешка приликом уклањања %s из омиљених" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Недеља" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понедељак" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Уторак" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Среда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четвртак" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Петак" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Субота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Јануар" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Фебруар" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Април" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Мај" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Јун" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Јул" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Септембар" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октобар" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Новембар" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Децембар" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Поставке" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "данас" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "јуче" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "месеци раније" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "прошле године" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 27b206e3b30..acc93a4f25e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 4fc8bfe2210..99d25bee2e7 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 7b6b712ad79..e405815f7cb 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index efab4ba7df8..fd2119406b7 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 94ce49629ec..6791e29139f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 0edacd55f88..d3f477f7929 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 8f6660299ba..f04371d52ff 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 7f2cbe42947..ea161b9e374 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Nedelja" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Ponedeljak" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Utorak" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Sreda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Četvrtak" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Petak" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Subota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mart" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jun" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Jul" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Avgust" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembar" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktobar" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembar" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembar" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index e1dfef82c02..23d50dfc234 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index d4d6757e284..a43f58cbd82 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index f10e3f4586c..dd214946ecb 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 9563c8558ca..7d36543ab6c 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index fb70bae00ab..c522bfd38af 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index a03d4492b05..6466456e106 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index eb44e4ddb96..25a5e0d6562 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -64,135 +64,135 @@ msgstr "Inga kategorier valda för radering." msgid "Error removing %s from favorites." msgstr "Fel vid borttagning av %s från favoriter." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Söndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Måndag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tisdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Lördag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Augusti" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "December" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Inställningar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "förra månaden" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "månader sedan" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "förra året" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index e3ab3a8b0fa..0d3f39e3eeb 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+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 8293e77ee14..0710b6acb0d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index bbbe8d804af..0f47f362854 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index c06663ba391..01862e82814 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 507f7fe2be2..244414adf05 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 6a21f615f47..7b767bdd60e 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 2ec1cd88767..a84c4d0a0a8 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index de4b95d8dfc..5344ba5c51f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "நீக்குவதற்கு எந்தப் பிரிவ msgid "Error removing %s from favorites." msgstr "விருப்பத்திலிருந்து %s ஐ அகற்றுவதில் வழு.உஇஇ" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "ஞாயிற்றுக்கிழமை" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "திங்கட்கிழமை" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "செவ்வாய்க்கிழமை" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "புதன்கிழமை" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "வியாழக்கிழமை" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "வெள்ளிக்கிழமை" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "சனிக்கிழமை" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "தை" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "மாசி" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "பங்குனி" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "சித்திரை" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "வைகாசி" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ஆனி" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ஆடி" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "ஆவணி" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "புரட்டாசி" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ஐப்பசி" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "கார்த்திகை" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "மார்கழி" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "இன்று" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index fcf558d7b33..4424fa23e53 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 91c73433118..df8be782a30 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index fa992fcda39..594c124bcfd 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index e9dbed5ce59..2d054b1c465 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index f3723f122f2..b10ad83d2d9 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 0e962dc0c4f..511fe56c307 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 20cebcc8404..f7be70cdd6f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index ca0b7c1279a..fa019447a56 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 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" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "ఆదివారం" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "సోమవారం" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "మంగళవారం" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "బుధవారం" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "గురువారం" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "శుక్రవారం" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "శనివారం" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "జనవరి" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ఫిబ్రవరి" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "మార్చి" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "ఏప్రిల్" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "మే" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "జూన్" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "జూలై" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "ఆగస్ట్" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "సెప్టెంబర్" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "అక్టోబర్" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "నవంబర్" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "డిసెంబర్" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "ఈరోజు" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/files.po b/l10n/te/files.po index e9399d377c9..70f7eeefed2 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index e23bc5a06a2..ab82f9532bb 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 183a3b5af12..1fcc1b13f7d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index b0d30e54b9b..1d928317ce7 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 00:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 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 3645b758858..5b573e7250e 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 5795cb7c3d3..16fc4f7ddba 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d0440871c34..e3bb913d358 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-26 02:00+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 0e29168897c..3137d0afdcf 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 db3121dbd31..315a63e26ca 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 7007062249f..1e22f4b7da9 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 12b381fd721..c8c62564276 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 31bfae35d98..71106f11536 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 13326efe046..9300ffc6d0a 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 7b9eb60885a..7ecd830f540 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-26 02:00+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 177a75f01e1..28360882ec3 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-26 02:00+0200\n" +"POT-Creation-Date: 2013-06-27 02:05+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 9479b50b68c..6476759c262 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 e6d1550b779..7e5ca80be67 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-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-27 02:04+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 3a3393804f6..39bb66e5d38 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "ยังไม่ได้เลือกหมวดหมู่ที msgid "Error removing %s from favorites." msgstr "เกิดข้อผิดพลาดในการลบ %s ออกจากรายการโปรด" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "วันอาทิตย์" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "วันจันทร์" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "วันอังคาร" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "วันพุธ" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "วันพฤหัสบดี" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "วันศุกร์" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "วันเสาร์" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "มกราคม" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "กุมภาพันธ์" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "มีนาคม" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "เมษายน" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "พฤษภาคม" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "มิถุนายน" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "กรกฏาคม" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "สิงหาคม" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "กันยายน" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ตุลาคม" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "พฤศจิกายน" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "ธันวาคม" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "วันนี้" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 61815d1e936..e1f44e0ec7e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 4341cd5cf42..7b152eddd66 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index cf172ba893e..121e631d1b9 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 39875c6c052..5c2df225b20 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 9ffcadec3d6..8329473e3af 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 0ab25361c6a..cbba1f41792 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 93493763a77..ae682aa4560 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 4e66cbc4cfd..2ae9532843c 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Silmek için bir kategori seçilmedi" msgid "Error removing %s from favorites." msgstr "%s favorilere çıkarılırken hata oluştu" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Pazar" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pazartesi" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Salı" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Çarşamba" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Perşembe" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Cuma" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Cumartesi" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ocak" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Şubat" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mart" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Nisan" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mayıs" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Haziran" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Temmuz" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Ağustos" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Eylül" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Ekim" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Kasım" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Aralık" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "bugün" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "dün" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "geçen ay" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "ay önce" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "geçen yıl" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index cc38053168b..741556483fb 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 418f0a3bcd7..b4e85d7f7b5 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index e2294c4feda..28253762688 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 188c11017a2..6326f7139f5 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index f21d2dd4370..fb2e2e216d5 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 6a3b63dc046..b96cc4683b3 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 7ba36267212..0fd94367879 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 6089b3606d8..15d2e5c62b8 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "يەكشەنبە" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "دۈشەنبە" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "چارشەنبە" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "پەيشەنبە" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "جۈمە" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "شەنبە" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "قەھرىتان" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ھۇت" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "نەۋرۇز" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "ئۇمۇت" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "باھار" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "سەپەر" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "چىللە" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "تومۇز" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "مىزان" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ئوغۇز" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "ئوغلاق" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "كۆنەك" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 مىنۇت ئىلگىرى" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 سائەت ئىلگىرى" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "بۈگۈن" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index a73cbb01acd..b9efc62b015 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index bd5ffff3a22..03a2c47e099 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 28bc0bfd755..c23bb2e315e 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 0684a53b3fb..53f052cae33 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 2aceb7019ec..842844cd401 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 d8b3c96b2b7..a355eb4626a 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index a6fb13c8f0c..738b5839ff2 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 4dea6f8b180..d5b5d319433 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Жодної категорії не обрано для видален msgid "Error removing %s from favorites." msgstr "Помилка при видалені %s із обраного." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Неділя" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понеділок" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вівторок" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Середа" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четвер" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "П'ятниця" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Субота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Січень" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Лютий" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Березень" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Квітень" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Травень" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Червень" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Липень" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Серпень" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Вересень" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Жовтень" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Листопад" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Грудень" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Налаштування" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "сьогодні" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчора" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "минулого місяця" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "місяці тому" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "минулого року" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 008c0f85f18..16a90863243 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 1b5e6a3f234..b5011acb944 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 6232d2ee417..811aca80f66 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 50805230f8d..370a8806022 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index ea816a426dc..4b24b992c73 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 370bbb936f3..610914ea2a1 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index b70c1e42374..bfe36ecf30f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 6cbc956d8cb..bc6342b1da0 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 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" @@ -61,135 +61,135 @@ msgstr "ختم کرنے کے لیے کسی زمرہ جات کا انتخاب ن msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "جنوری" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "فرورئ" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "مارچ" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "اپریل" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "مئی" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "جون" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "جولائی" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "اگست" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "ستمبر" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "اکتوبر" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "نومبر" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "دسمبر" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 18bde9e30a2..d72ea3f5edb 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index a15724fbb66..888a3128af5 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 1d699bc38a6..52b8565ddfb 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 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 6d887cd7d19..3c3cf8b34d8 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 8da1c6a159f..cd94e8a4144 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index ab937a595ee..df35efcde29 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Bạn chưa chọn mục để xóa" msgid "Error removing %s from favorites." msgstr "Lỗi xóa %s từ mục yêu thích." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Chủ nhật" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Thứ 2" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Thứ 3" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Thứ 4" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Thứ 5" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Thứ " -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Thứ 7" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Tháng 1" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Tháng 2" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Tháng 3" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Tháng 4" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Tháng 5" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Tháng 6" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Tháng 7" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Tháng 8" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Tháng 9" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Tháng 10" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Tháng 11" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Tháng 12" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hôm nay" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "tháng trước" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "tháng trước" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "năm trước" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 9087c7d8efc..d1dce1da9f7 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index e7b6e40ae3b..15469440b0d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 921957dacd5..a6fc9419931 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 89cefe5b3b9..4b130127740 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 6f3be6d060d..a4c8d129fdb 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 665ca3aff96..f67e5874d21 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index d41ff5365af..4ff03f14066 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index cabc3fa2cf7..c414ac1915e 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "没有选中要删除的分类。" msgid "Error removing %s from favorites." msgstr "在移除收藏夹中的 %s 时发生错误。" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "星期天" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "星期一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "星期二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "星期三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "星期四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "星期五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "星期六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "设置" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今天" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨天" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "上个月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "去年" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 7ea290bef6e..a653b79dacf 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 27e3bb2f033..da1bb9271ae 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 5ddada9bda5..f5180756957 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 03a068568de..57dba764c2a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 5f575f56efd..591ce747f93 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 6ec7f7cff76..ae024660770 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 4c6b07207df..7c48040ec57 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 7b713baa214..2d579363b8b 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "没有选择要删除的类别" msgid "Error removing %s from favorites." msgstr "从收藏夹中移除%s时出错。" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "星期日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "星期一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "星期二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "星期三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "星期四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "星期五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "星期六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "设置" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今天" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨天" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "上月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "去年" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 1c792153cd3..881aea33635 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:14+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 94375cf1b8a..abe654c88b1 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 111e094460e..0560ca69980 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 74bc91c661e..1e3ca9bbcc9 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index e8e6179f197..9a08aea77ac 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+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 976de08fc87..4c2e9855d9b 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 315a0ac33ab..c54990d151a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index c3282eca957..e2853f2f35f 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "星期日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "星期一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "星期二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "星期三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "星期四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "星期五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "星期六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "設定" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今日" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨日" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "前一月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "個月之前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 8b9823ccea1..4d537e89661 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index a180f2b4568..c87bca5396b 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index d8f8f0bcc2b..8cd3b5d5538 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 9a5d074e4d7..c1476ad923f 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 5e3b13ad018..e9161ca7520 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 787dfe4975d..04b5de8a9e1 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 055359846a7..a8ba2430a2d 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index c2abc1a16f7..466c0f853b5 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "沒有選擇要刪除的分類。" msgid "Error removing %s from favorites." msgstr "從最愛移除 %s 時發生錯誤。" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "週日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "週一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "週二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "週三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "週四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "週五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "週六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "設定" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 小時之前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今天" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨天" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "上個月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "幾個月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "去年" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 4896947e1dd..cdaa641ec8a 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 1aca2dcbc34..105b73d51de 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 6c75be8ce99..e45bdeb4317 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 86ccf90cda6..6bcfdab8fca 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 246177c3609..f4b86ca7514 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index f1377e02810..05300a3ee5c 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-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:05+0200\n" +"PO-Revision-Date: 2013-06-26 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 9932a5abb00..f9a6bb35499 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-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 23:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 7f8827d17f3..2073f545232 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -24,6 +24,7 @@ "%s set the database host." => "%s - vnos gostitelja podatkovne zbirke.", "PostgreSQL username and/or password not valid" => "Uporabniško ime ali geslo PostgreSQL ni veljavno", "You need to enter either an existing account or the administrator." => "Prijaviti se je treba v obstoječi ali pa skrbniški račun.", +"Oracle connection could not be established" => "Povezava z bazo Oracle ni uspela.", "MySQL username and/or password not valid" => "Uporabniško ime ali geslo MySQL ni veljavno", "DB Error: \"%s\"" => "Napaka podatkovne zbirke: \"%s\"", "Offending command was: \"%s\"" => "Napačni ukaz je: \"%s\"", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index f8876ca7046..9f147f8f2d8 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,37 +1,37 @@ "Imposible cargar la lista desde el App Store", "Authentication error" => "Error al autenticar", -"Your display name has been changed." => "El nombre mostrado fue cambiado", +"Your display name has been changed." => "El nombre mostrado que usás fue cambiado.", "Unable to change display name" => "No fue posible cambiar el nombre mostrado", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", -"Could not enable app. " => "No se puede habilitar la aplicación.", +"Could not enable app. " => "No se pudo habilitar la App.", "Email saved" => "e-mail guardado", -"Invalid email" => "el e-mail no es válido ", -"Unable to delete group" => "No fue posible eliminar el grupo", -"Unable to delete user" => "No fue posible eliminar el usuario", +"Invalid email" => "El e-mail no es válido ", +"Unable to delete group" => "No fue posible borrar el grupo", +"Unable to delete user" => "No fue posible borrar el usuario", "Language changed" => "Idioma cambiado", -"Invalid request" => "Pedido no válido", -"Admins can't remove themself from the admin group" => "Los administradores no se pueden quitar a ellos mismos del grupo administrador. ", -"Unable to add user to group %s" => "No fue posible añadir el usuario al grupo %s", -"Unable to remove user from group %s" => "No es posible eliminar al usuario del grupo %s", -"Couldn't update app." => "No se pudo actualizar la aplicación.", -"Update to {appversion}" => "Actualizado a {appversion}", +"Invalid request" => "Pedido inválido", +"Admins can't remove themself from the admin group" => "Los administradores no se pueden quitar a si mismos del grupo administrador. ", +"Unable to add user to group %s" => "No fue posible agregar el usuario al grupo %s", +"Unable to remove user from group %s" => "No es posible borrar al usuario del grupo %s", +"Couldn't update app." => "No se pudo actualizar la App.", +"Update to {appversion}" => "Actualizar a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Por favor, esperá....", "Error" => "Error", "Updating...." => "Actualizando....", -"Error while updating app" => "Error al actualizar", +"Error while updating app" => "Error al actualizar App", "Updated" => "Actualizado", "Saving..." => "Guardando...", "deleted" => "borrado", "undo" => "deshacer", -"Unable to remove user" => "Imposible remover usuario", +"Unable to remove user" => "Imposible borrar usuario", "Groups" => "Grupos", "Group Admin" => "Grupo Administrador", "Delete" => "Borrar", -"add group" => "Agregar grupo", +"add group" => "agregar grupo", "A valid username must be provided" => "Debe ingresar un nombre de usuario válido", "Error creating user" => "Error creando usuario", "A valid password must be provided" => "Debe ingresar una contraseña válida", @@ -41,38 +41,38 @@ "Setup Warning" => "Alerta de Configuración", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the installation guides." => "Por favor, comprobá nuevamente la guía de instalación.", -"Module 'fileinfo' missing" => "Modulo 'fileinfo' no existe", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El modulo PHP 'fileinfo' no existe. Es muy recomendable que active este modulo para obtener mejores resultados con la detección mime-type", +"Module 'fileinfo' missing" => "El módulo 'fileinfo' no existe", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", "Locale not working" => "\"Locale\" no está funcionando", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "El servidor ownCloud no pude asignar la localización de sistema a %s. Esto puede hacer que hayan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s.", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "El servidor ownCloud no puede asignar la localización de sistema a %s. Esto puede provocar que existan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s.", "Internet connection not working" => "La conexión a Internet no esta funcionando. ", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios como montar dispositivos externos, notificaciones de actualizaciones o instalar aplicaciones de otros desarrolladores no funcionan. Acceder a archivos remotos y mandar e-mails puede ser que tampoco funcione. Te sugerimos que actives una conexión a internet si querés estas características de ownCloud.", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios, tales como montar dispositivos externos, notificación de actualizaciones o instalar Apps de otros desarrolladores no funcionan. Puede ser que tampoco puedas acceder a archivos remotos y mandar e-mails. Te sugerimos que actives una conexión a internet si querés estas características en ownCloud.", "Cron" => "Cron", -"Execute one task with each page loaded" => "Ejecute una tarea con cada pagina cargada.", +"Execute one task with each page loaded" => "Ejecutá una tarea con cada pagina cargada.", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio webcron. Llamar la página cron.php en la raíz de ownCloud una vez al minuto sobre http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto.", "Sharing" => "Compartiendo", "Enable Share API" => "Habilitar Share API", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la Share API", "Allow links" => "Permitir enlaces", "Allow users to share items to the public with links" => "Permitir a los usuarios compartir enlaces públicos", "Allow resharing" => "Permitir Re-Compartir", -"Allow users to share items shared with them again" => "Permite a los usuarios volver a compartir items que le han compartido", -"Allow users to share with anyone" => "Permitir a los usuarios compartir con todos.", -"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir solo con los de su propio grupo", +"Allow users to share items shared with them again" => "Permite a los usuarios volver a compartir items que les fueron compartidos", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", +"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forzar a los clientes conectar a ownCloud vía conexión encriptada", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor conectese a este ownCloud vía HTTPS para habilitar o des-habilitar el forzado de SSL", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forzar a los clientes conectar a ownCloud vía conexión encriptada.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor conectate a este ownCloud vía HTTPS para habilitar o deshabilitar el SSL.", "Log" => "Log", "Log level" => "Nivel de Log", "More" => "Más", "Less" => "Menos", "Version" => "Versión", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", -"Add your App" => "Añadí tu aplicación", -"More Apps" => "Más aplicaciones", -"Select an App" => "Seleccionar una aplicación", +"Add your App" => "Añadí tu App", +"More Apps" => "Más Apps", +"Select an App" => "Elegí una App", "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", "Update" => "Actualizar", @@ -82,9 +82,9 @@ "Forum" => "Foro", "Bugtracker" => "Informar errores", "Commercial Support" => "Soporte comercial", -"Get the apps to sync your files" => "Obtené aplicaciones para sincronizar tus archivos", +"Get the apps to sync your files" => "Obtené Apps para sincronizar tus archivos", "Show First Run Wizard again" => "Mostrar de nuevo el asistente de primera ejecución", -"You have used %s of the available %s" => "Usaste %s de los %s disponibles", +"You have used %s of the available %s" => "Usás %s de los %s disponibles", "Password" => "Contraseña", "Your password was changed" => "Tu contraseña fue cambiada", "Unable to change your password" => "No fue posible cambiar tu contraseña", @@ -92,14 +92,14 @@ "New password" => "Nueva contraseña:", "Change password" => "Cambiar contraseña", "Display Name" => "Nombre a mostrar", -"Email" => "Correo Electrónico", +"Email" => "e-mail", "Your email address" => "Tu dirección de e-mail", -"Fill in an email address to enable password recovery" => "Escribí una dirección de correo electrónico para restablecer la contraseña", +"Fill in an email address to enable password recovery" => "Escribí una dirección de e-mail para restablecer la contraseña", "Language" => "Idioma", "Help translate" => "Ayudanos a traducir", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos", -"Login Name" => "Nombre de ", +"Use this address to connect to your ownCloud in your file manager" => "Usá esta dirección para conectarte con ownCloud en tu Administrador de Archivos", +"Login Name" => "Nombre de Usuario", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de contraseña de administrador", "Enter the recovery password in order to recover the users files during password change" => "Ingresá la contraseña de recuperación para recuperar los archivos de usuario al cambiar contraseña", @@ -108,7 +108,7 @@ "Other" => "Otros", "Username" => "Nombre de usuario", "Storage" => "Almacenamiento", -"change display name" => "Cambiar el nombre que se muestra", +"change display name" => "Cambiar el nombre mostrado", "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 21c10abf0fe..63fb86485c9 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -101,6 +101,8 @@ "Use this address to connect to your ownCloud in your file manager" => "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud.", "Login Name" => "Prijavno ime", "Create" => "Ustvari", +"Admin Recovery Password" => "Obnovitev administratorjevega gesla", +"Enter the recovery password in order to recover the users files during password change" => "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla", "Default Storage" => "Privzeta shramba", "Unlimited" => "Neomejeno", "Other" => "Drugo", -- cgit v1.2.3