From 507e48ee5605826067293deaa169e8e0d90d9f35 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Fri, 9 Aug 2013 22:13:31 +0200 Subject: don't call xcache_clear_cache on clearOpcodeCache() in case admin auth is enabled for xcache in php.ini --- lib/util.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index b7dc2207e6c..53ebe024724 100755 --- a/lib/util.php +++ b/lib/util.php @@ -869,7 +869,11 @@ class OC_Util { } // XCache if (function_exists('xcache_clear_cache')) { - xcache_clear_cache(XC_TYPE_VAR, 0); + if (ini_get('xcache.admin.enable_auth')) { + OC_Log::write('core', 'XCache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.', \OC_Log::WARN); + } else { + xcache_clear_cache(XC_TYPE_VAR, 0); + } } // Opcache (PHP >= 5.5) if (function_exists('opcache_reset')) { -- cgit v1.2.3 From c84171cec0669dbe459ea2b5daf573a50f20e314 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Fri, 9 Aug 2013 22:14:28 +0200 Subject: don't use xcache in case admin auth is enabled in php.ini - this can cause issues --- lib/memcache/xcache.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/memcache/xcache.php b/lib/memcache/xcache.php index 33de30562f9..7880518fd9f 100644 --- a/lib/memcache/xcache.php +++ b/lib/memcache/xcache.php @@ -10,7 +10,7 @@ namespace OC\Memcache; class XCache extends Cache { /** - * entries in XCache gets namespaced to prevent collisions between owncloud instances and users + * entries in XCache gets namespaced to prevent collisions between ownCloud instances and users */ protected function getNameSpace() { return $this->prefix; @@ -44,11 +44,16 @@ class XCache extends Cache { static public function isAvailable(){ if (!extension_loaded('xcache')) { return false; - } elseif (\OC::$CLI) { + } + if (\OC::$CLI) { + return false; + } + // as soon as admin auth is enabled we can run into issues with admin ops like xcache_clear_cache + if (ini_get('xcache.admin.enable_auth')) { return false; - }else{ - return true; } + + return true; } } -- cgit v1.2.3 From fb2761a2034ed3ae786145418a6ca0b0262ef393 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:31:42 +0200 Subject: Do not define xcache_unset_by_prefix() if it does not exist. The defined function is not compatible with the function provided by xcache because it does not honor the prefix parameter. Thus defining it like this is a bad idea. --- lib/memcache/xcache.php | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/lib/memcache/xcache.php b/lib/memcache/xcache.php index 7880518fd9f..e0acb11b054 100644 --- a/lib/memcache/xcache.php +++ b/lib/memcache/xcache.php @@ -37,7 +37,12 @@ class XCache extends Cache { } public function clear($prefix='') { - xcache_unset_by_prefix($this->getNamespace().$prefix); + if (function_exists('xcache_unset_by_prefix')) { + xcache_unset_by_prefix($this->getNamespace().$prefix); + } else { + // Since we can not clear by prefix, we just clear the whole cache. + xcache_clear_cache(\XC_TYPE_VAR, 0); + } return true; } @@ -56,10 +61,3 @@ class XCache extends Cache { return true; } } - -if(!function_exists('xcache_unset_by_prefix')) { - function xcache_unset_by_prefix($prefix) { - // Since we can't clear targetted cache, we'll clear all. :( - xcache_clear_cache(\XC_TYPE_VAR, 0); - } -} -- cgit v1.2.3 From 8d762f659a24a6b133d6bd4ca1cc2030bdce5ab0 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:34:43 +0200 Subject: Allow usage of xCache variable cache if xcache_unset_by_prefix() is present. --- lib/memcache/xcache.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/memcache/xcache.php b/lib/memcache/xcache.php index e0acb11b054..91b9810cc6b 100644 --- a/lib/memcache/xcache.php +++ b/lib/memcache/xcache.php @@ -53,8 +53,10 @@ class XCache extends Cache { if (\OC::$CLI) { return false; } - // as soon as admin auth is enabled we can run into issues with admin ops like xcache_clear_cache - if (ini_get('xcache.admin.enable_auth')) { + if (!function_exists('xcache_unset_by_prefix') && ini_get('xcache.admin.enable_auth')) { + // We do not want to use xCache if we can not clear it without + // using the administration function xcache_clear_cache() + // AND administration functions are password-protected. return false; } -- cgit v1.2.3 From 799106db811c432a6eea4d15b57339e980ab8cf7 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:35:52 +0200 Subject: Clear xCache OpCode cache instead of variable cache in clearOpcodeCache(). --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 53ebe024724..e9360b44f9e 100755 --- a/lib/util.php +++ b/lib/util.php @@ -872,7 +872,7 @@ class OC_Util { if (ini_get('xcache.admin.enable_auth')) { OC_Log::write('core', 'XCache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.', \OC_Log::WARN); } else { - xcache_clear_cache(XC_TYPE_VAR, 0); + xcache_clear_cache(XC_TYPE_PHP, 0); } } // Opcache (PHP >= 5.5) -- cgit v1.2.3 From 341d9caf79531b636e6db37a18e46df8c0eadbb4 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:36:42 +0200 Subject: xcache_unset_by_prefix() returns feedback, return it. --- lib/memcache/xcache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/memcache/xcache.php b/lib/memcache/xcache.php index 91b9810cc6b..115603109c9 100644 --- a/lib/memcache/xcache.php +++ b/lib/memcache/xcache.php @@ -38,7 +38,7 @@ class XCache extends Cache { public function clear($prefix='') { if (function_exists('xcache_unset_by_prefix')) { - xcache_unset_by_prefix($this->getNamespace().$prefix); + return xcache_unset_by_prefix($this->getNamespace().$prefix); } else { // Since we can not clear by prefix, we just clear the whole cache. xcache_clear_cache(\XC_TYPE_VAR, 0); -- cgit v1.2.3 From 49cfd08f08d6c0f0174b47f1cc69bc48b63064f3 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:37:59 +0200 Subject: Add link to XCache API in class documentation. --- lib/memcache/xcache.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') diff --git a/lib/memcache/xcache.php b/lib/memcache/xcache.php index 115603109c9..7e721313c5d 100644 --- a/lib/memcache/xcache.php +++ b/lib/memcache/xcache.php @@ -8,6 +8,10 @@ namespace OC\Memcache; +/** + * See http://xcache.lighttpd.net/wiki/XcacheApi for provided constants and + * functions etc. + */ class XCache extends Cache { /** * entries in XCache gets namespaced to prevent collisions between ownCloud instances and users -- cgit v1.2.3 From 9770f52da6cb4445344c3e3641376d36a2c996a9 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:40:02 +0200 Subject: xCache -> XCache --- lib/memcache/xcache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/memcache/xcache.php b/lib/memcache/xcache.php index 7e721313c5d..2dc4a3a6016 100644 --- a/lib/memcache/xcache.php +++ b/lib/memcache/xcache.php @@ -58,7 +58,7 @@ class XCache extends Cache { return false; } if (!function_exists('xcache_unset_by_prefix') && ini_get('xcache.admin.enable_auth')) { - // We do not want to use xCache if we can not clear it without + // We do not want to use XCache if we can not clear it without // using the administration function xcache_clear_cache() // AND administration functions are password-protected. return false; -- cgit v1.2.3 From 7fa53eae7fffcb517f56c96a9f2f67db5ef0d643 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:40:57 +0200 Subject: Make it clear that log message is about the XCache opcode cache. --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index e9360b44f9e..525a8d9d5d3 100755 --- a/lib/util.php +++ b/lib/util.php @@ -870,7 +870,7 @@ class OC_Util { // XCache if (function_exists('xcache_clear_cache')) { if (ini_get('xcache.admin.enable_auth')) { - OC_Log::write('core', 'XCache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.', \OC_Log::WARN); + OC_Log::write('core', 'XCache opcode cache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.', \OC_Log::WARN); } else { xcache_clear_cache(XC_TYPE_PHP, 0); } -- cgit v1.2.3 From d73285c1869591da74c148b577d780a73313fe90 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:41:33 +0200 Subject: Do not mention php.ini, it may be defined in xcache.ini or so. --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 525a8d9d5d3..b9d678dced8 100755 --- a/lib/util.php +++ b/lib/util.php @@ -870,7 +870,7 @@ class OC_Util { // XCache if (function_exists('xcache_clear_cache')) { if (ini_get('xcache.admin.enable_auth')) { - OC_Log::write('core', 'XCache opcode cache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.', \OC_Log::WARN); + OC_Log::write('core', 'XCache opcode cache will not be cleared because "xcache.admin.enable_auth" is enabled.', \OC_Log::WARN); } else { xcache_clear_cache(XC_TYPE_PHP, 0); } -- cgit v1.2.3 From 81db59cda0d40b5a786e7ca65461f31b1d4569cb Mon Sep 17 00:00:00 2001 From: elchi Date: Mon, 30 Sep 2013 20:26:00 +0200 Subject: Added support for extra backends Somebody had forgotten "OC_User::setupBackends();"... --- lib/connector/sabre/auth.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/connector/sabre/auth.php b/lib/connector/sabre/auth.php index bf3a49593cb..72ca1f80853 100644 --- a/lib/connector/sabre/auth.php +++ b/lib/connector/sabre/auth.php @@ -36,6 +36,8 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { return true; } else { OC_Util::setUpFS();//login hooks may need early access to the filesystem + //setup extra user backends + OC_User::setupBackends();//if you do not want to use Owncloud's integrated login if(OC_User::login($username, $password)) { OC_Util::setUpFS(OC_User::getUser()); return true; -- cgit v1.2.3 From 243f3f0c4c2831f4cf27c33f1d4cc748843d24da Mon Sep 17 00:00:00 2001 From: Simon Könnecke Date: Mon, 25 Nov 2013 12:26:03 +0100 Subject: No decimal points for Kilobyte and Byte #5371. --- core/js/js.js | 5 ++++- lib/private/helper.php | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/core/js/js.js b/core/js/js.js index f5991cfc9dd..b838e9578e7 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -825,7 +825,10 @@ function humanFileSize(size) { order = Math.min(humanList.length - 1, order); var readableFormat = humanList[order]; var relativeSize = (size / Math.pow(1024, order)).toFixed(1); - if(relativeSize.substr(relativeSize.length-2,2)=='.0'){ + if(order < 2){ + relativeSize = parseFloat(relativeSize).toFixed(0); + } + else if(relativeSize.substr(relativeSize.length-2,2)==='.0'){ relativeSize=relativeSize.substr(0,relativeSize.length-2); } return relativeSize + ' ' + readableFormat; diff --git a/lib/private/helper.php b/lib/private/helper.php index c82d3bd4ef4..4fe3097af26 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -252,7 +252,7 @@ class OC_Helper { if ($bytes < 1024) { return "$bytes B"; } - $bytes = round($bytes / 1024, 1); + $bytes = round($bytes / 1024, 0); if ($bytes < 1024) { return "$bytes kB"; } -- cgit v1.2.3 From 301d469813763cc28d82986f906eb29a45102294 Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Wed, 4 Dec 2013 18:01:51 +0100 Subject: Symfonys addCollection() with multiple arguments is deprecated, fix deprecation warning --- lib/private/router.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/private/router.php b/lib/private/router.php index dbaca9e0d5d..19c1e4473ec 100644 --- a/lib/private/router.php +++ b/lib/private/router.php @@ -67,7 +67,8 @@ class OC_Router { $this->useCollection($app); require_once $file; $collection = $this->getCollection($app); - $this->root->addCollection($collection, '/apps/'.$app); + $collection->addPrefix('/apps/'.$app); + $this->root->addCollection($collection); } $this->useCollection('root'); require_once 'settings/routes.php'; @@ -76,7 +77,8 @@ class OC_Router { // include ocs routes require_once 'ocs/routes.php'; $collection = $this->getCollection('ocs'); - $this->root->addCollection($collection, '/ocs'); + $collection->addPrefix('/ocs'); + $this->root->addCollection($collection); } protected function getCollection($name) { -- cgit v1.2.3 From 4c4c9096c4e3653ddd44aa299d34367e243dd257 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sat, 7 Dec 2013 11:38:01 +0100 Subject: fix plural translation - fixes #6226 --- core/js/js.js | 2 +- lib/private/l10n.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/core/js/js.js b/core/js/js.js index f5991cfc9dd..d9b3b54e0a1 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -115,7 +115,7 @@ t.cache = {}; */ function n(app, text_singular, text_plural, count, vars) { initL10N(app); - var identifier = '_' + text_singular + '__' + text_plural + '_'; + var identifier = '_' + text_singular + '_::_' + text_plural + '_'; if( typeof( t.cache[app][identifier] ) !== 'undefined' ){ var translation = t.cache[app][identifier]; if ($.isArray(translation)) { diff --git a/lib/private/l10n.php b/lib/private/l10n.php index 2d440850459..98665c84c55 100644 --- a/lib/private/l10n.php +++ b/lib/private/l10n.php @@ -262,7 +262,7 @@ class OC_L10N implements \OCP\IL10N { */ public function n($text_singular, $text_plural, $count, $parameters = array()) { $this->init(); - $identifier = "_${text_singular}__${text_plural}_"; + $identifier = "_${text_singular}_::_${text_plural}_"; if( array_key_exists($identifier, $this->translations)) { return new OC_L10N_String( $this, $identifier, $parameters, $count ); } -- cgit v1.2.3 From a36bf5c2b5430eb4bcbabead92c9d2c1a669b035 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 9 Dec 2013 12:38:27 +0100 Subject: preserve 3rd party values in in the Session destructor --- lib/private/session/internal.php | 11 ++++++++++- lib/private/session/memory.php | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/private/session/internal.php b/lib/private/session/internal.php index 60aecccc8aa..49b52b5c796 100644 --- a/lib/private/session/internal.php +++ b/lib/private/session/internal.php @@ -26,10 +26,19 @@ class Internal extends Memory { } public function __destruct() { - $_SESSION = $this->data; + $_SESSION = array_merge($_SESSION, $this->data); session_write_close(); } + /** + * @param string $key + */ + public function remove($key) { + // also remove it from $_SESSION to prevent re-setting the old value during the merge + unset($_SESSION[$key]); + parent::remove($key); + } + public function clear() { session_unset(); @session_regenerate_id(true); diff --git a/lib/private/session/memory.php b/lib/private/session/memory.php index c148ff4b9b9..134cee582ed 100644 --- a/lib/private/session/memory.php +++ b/lib/private/session/memory.php @@ -11,7 +11,7 @@ namespace OC\Session; /** * Class Internal * - * store session data in an in-memory array, not persistance + * store session data in an in-memory array, not persistent * * @package OC\Session */ -- cgit v1.2.3 From 6aab1ebf446790ee31a306d55ce2747a56a66f1c Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 9 Dec 2013 06:40:22 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/az.php | 7 + apps/files_encryption/l10n/hu_HU.php | 22 +- apps/user_ldap/l10n/az.php | 6 + apps/user_ldap/l10n/hu_HU.php | 3 + core/l10n/az.php | 9 + core/l10n/de.php | 1 + core/l10n/de_DE.php | 1 + core/l10n/fi_FI.php | 1 + core/l10n/gl.php | 1 + core/l10n/it.php | 1 + core/l10n/pt_BR.php | 1 + core/l10n/tr.php | 1 + l10n/az/core.po | 770 +++++++++++++++++++++++++++++++++++ l10n/az/files.po | 401 ++++++++++++++++++ l10n/az/files_encryption.po | 201 +++++++++ l10n/az/files_external.po | 123 ++++++ l10n/az/files_sharing.po | 84 ++++ l10n/az/files_trashbin.po | 60 +++ l10n/az/files_versions.po | 43 ++ l10n/az/lib.po | 333 +++++++++++++++ l10n/az/settings.po | 668 ++++++++++++++++++++++++++++++ l10n/az/user_ldap.po | 511 +++++++++++++++++++++++ l10n/az/user_webdavauth.po | 33 ++ l10n/de/core.po | 8 +- l10n/de_DE/core.po | 8 +- l10n/fi_FI/core.po | 8 +- l10n/gl/core.po | 8 +- l10n/hu_HU/files_encryption.po | 49 +-- l10n/hu_HU/settings.po | 12 +- l10n/hu_HU/user_ldap.po | 42 +- l10n/it/core.po | 8 +- l10n/pt_BR/core.po | 8 +- 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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 8 +- lib/l10n/az.php | 8 + 46 files changed, 3380 insertions(+), 92 deletions(-) create mode 100644 apps/files/l10n/az.php create mode 100644 apps/user_ldap/l10n/az.php create mode 100644 core/l10n/az.php create mode 100644 l10n/az/core.po create mode 100644 l10n/az/files.po create mode 100644 l10n/az/files_encryption.po create mode 100644 l10n/az/files_external.po create mode 100644 l10n/az/files_sharing.po create mode 100644 l10n/az/files_trashbin.po create mode 100644 l10n/az/files_versions.po create mode 100644 l10n/az/lib.po create mode 100644 l10n/az/settings.po create mode 100644 l10n/az/user_ldap.po create mode 100644 l10n/az/user_webdavauth.po create mode 100644 lib/l10n/az.php (limited to 'lib') diff --git a/apps/files/l10n/az.php b/apps/files/l10n/az.php new file mode 100644 index 00000000000..70ab6572ba4 --- /dev/null +++ b/apps/files/l10n/az.php @@ -0,0 +1,7 @@ + array(""), +"_%n file_::_%n files_" => array(""), +"_Uploading %n file_::_Uploading %n files_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index 323291bbfbe..a8e5a009539 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -1,18 +1,38 @@ "Visszaállítási kulcs sikeresen bekapcsolva", +"Could not enable recovery key. Please check your recovery key password!" => "Visszaállítási kulcsot nem lehetett engedélyezni. Ellenörizd a visszaállítási kulcsod jelszavát!", "Recovery key successfully disabled" => "Visszaállítási kulcs sikeresen kikapcsolva", +"Could not disable recovery key. Please check your recovery key password!" => "Visszaállítási kulcsot nem lehetett kikapcsolni. Ellenörizd a visszaállítási kulcsod jelszavát!", "Password successfully changed." => "Jelszó sikeresen megváltoztatva.", "Could not change the password. Maybe the old password was not correct." => "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó.", +"Private key password successfully updated." => "Privát kulcs jelszava sikeresen frissült.", +"Could not update the private key password. Maybe the old password was not correct." => "A privát kulcs jelszavát nem lehetet frissiteni. Lehet, hogy hibás volt a régi jelszó.", +"Unknown error please check your system settings or contact your administrator" => "Ismeretlen hiba. Ellenörizd a rendszer beállításokat vagy keresd meg az adminisztrátort", +"Missing requirements." => "Hiányzó követelmények.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás.", +"Following users are not set up for encryption:" => "A következő felhasználók nem állították be a titkosítást:", +"Initial encryption started... This can take some time. Please wait." => "Első titkosítás elkezdődött... Ez eltarhat hosszabb ideig. Kérlek várj.", "Saving..." => "Mentés...", +"Go directly to your " => "Rövid úton a dolgaidhoz", "personal settings" => "személyes beállítások", "Encryption" => "Titkosítás", +"Recovery key password" => "A helyreállítási kulcs jelszava", +"Repeat Recovery key password" => "Ismételd a Helyreállítási kulcs jelszavát", "Enabled" => "Bekapcsolva", "Disabled" => "Kikapcsolva", +"Change recovery key password:" => "A helyreállítási kulcs jelszavának módosítása:", +"Old Recovery key password" => "Régi Helyreállítási Kulcs Jelszava", +"New Recovery key password" => "Új Helyreállítási kulcs jelszava", +"Repeat New Recovery key password" => "Ismételd az Új Helyreállítási kulcs jelszavát", "Change Password" => "Jelszó megváltoztatása", +"Your private key password no longer match your log-in password:" => "A privát kulcs jelszavad mostantól nem azonos a belépési jelszavaddal:", +"Set your old private key password to your current log-in password." => "Állítsd vissza a régi privát kulcs jelszavát a jelenlegi bejelentkezési jelszavadra.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Ha nem emlékszel a régi jelszavadra akkor keresed meg a rendszeradminisztátort a file-jaid visszaállításával kapcsolatban.", "Old log-in password" => "Régi bejelentkezési jelszó", "Current log-in password" => "Jelenlegi bejelentkezési jelszó", "Update Private Key Password" => "Privát kulcs jelszó frissítése", -"Enable password recovery:" => "Jelszó-visszaállítás bekapcsolása" +"Enable password recovery:" => "Jelszó-visszaállítás bekapcsolása", +"File recovery settings updated" => "File helyreállítási beállításai frissültek" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/az.php b/apps/user_ldap/l10n/az.php new file mode 100644 index 00000000000..bba52d53a1a --- /dev/null +++ b/apps/user_ldap/l10n/az.php @@ -0,0 +1,6 @@ + array(""), +"_%s user found_::_%s users found_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 34f626c8c24..2799d0407c4 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "Töröltük a hozzárendeléseket", "Success" => "Sikeres végrehajtás", "Error" => "Hiba", +"Configuration OK" => "Konfiguráció OK", +"Configuration incorrect" => "Konfiguráió hibás", +"Configuration incomplete" => "Konfiguráció nincs befejezve", "Select groups" => "Csoportok kiválasztása", "Select object classes" => "Objektumosztályok kiválasztása", "Select attributes" => "Attribútumok kiválasztása", diff --git a/core/l10n/az.php b/core/l10n/az.php new file mode 100644 index 00000000000..dbedde7e637 --- /dev/null +++ b/core/l10n/az.php @@ -0,0 +1,9 @@ + array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array(""), +"_{count} file conflict_::_{count} file conflicts_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/de.php b/core/l10n/de.php index 2d2e1ecdd76..9904aeb803c 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "Finishing …" => "Abschließen ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Diese Anwendung benötigt ein aktiviertes JavaScript zum korrekten Betrieb. Bitte aktiviere JavaScript und lade diese Schnittstelle neu.", "%s is available. Get more information on how to update." => "%s ist verfügbar. Hole weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index e950653dc59..b25d465c3ec 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "Finishing …" => "Abschließen ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Diese Anwendung benötigt ein aktiviertes JavaScript zum korrekten Betrieb. Bitte aktivieren Sie JavaScript und laden Sie diese Schnittstelle neu.", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index b187c5689fa..4109ea8e895 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -143,6 +143,7 @@ $TRANSLATIONS = array( "Database host" => "Tietokantapalvelin", "Finish setup" => "Viimeistele asennus", "Finishing …" => "Valmistellaan…", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Tämä sovellus vaatii toimiakseen JavaScriptin käyttöä. Ota JavaScript käyttöön ja päivitä tämä käyttöliittymä.", "%s is available. Get more information on how to update." => "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan.", "Log out" => "Kirjaudu ulos", "Automatic logon rejected!" => "Automaattinen sisäänkirjautuminen hylättiin!", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 449ffad03f4..7303807e519 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Servidor da base de datos", "Finish setup" => "Rematar a configuración", "Finishing …" => "Rematado ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Este aplicativo require que o JavaScript estea activado para unha operativa correcta. Active o JavaScript e volva a cargar a interface.", "%s is available. Get more information on how to update." => "%s está dispoñíbel. Obteña máis información sobre como actualizar.", "Log out" => "Desconectar", "Automatic logon rejected!" => "Rexeitouse a entrada automática", diff --git a/core/l10n/it.php b/core/l10n/it.php index 135ce9ebe57..444d7ed250d 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Host del database", "Finish setup" => "Termina la configurazione", "Finishing …" => "Completamento...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "L'applicazione richiede che JavaScript sia abilitato per un corretto funzionamento. Abilita JavaScript e ricarica questa interfaccia.", "%s is available. Get more information on how to update." => "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento.", "Log out" => "Esci", "Automatic logon rejected!" => "Accesso automatico rifiutato.", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 4571b9f2386..e4dd68b99d1 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Host do banco de dados", "Finish setup" => "Concluir configuração", "Finishing …" => "Finalizando ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Esta aplicação reque JavaScript habilidado para correta operação.\nPor favor habilite JavaScript e recarregue esta esta interface.", "%s is available. Get more information on how to update." => "%s está disponível. Obtenha mais informações sobre como atualizar.", "Log out" => "Sair", "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 86156b9574f..2245f0714ba 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Veritabanı sunucusu", "Finish setup" => "Kurulumu tamamla", "Finishing …" => "Tamamlanıyor ..", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Uygulama, doğru çalışabilmesi için JavaScript'in etkinleştirilmesini gerektiriyor. Lütfen JavaScript'i etkinleştirin ve bu arayüzü yeniden yükleyin.", "%s is available. Get more information on how to update." => "%s mevcut. Güncelleştirme hakkında daha fazla bilgi alın.", "Log out" => "Çıkış yap", "Automatic logon rejected!" => "Otomatik oturum açma reddedildi!", diff --git a/l10n/az/core.po b/l10n/az/core.po new file mode 100644 index 00000000000..2b88a23c466 --- /dev/null +++ b/l10n/az/core.po @@ -0,0 +1,770 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:858 +msgid "seconds ago" +msgstr "" + +#: js/js.js:859 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" + +#: js/js.js:860 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" + +#: js/js.js:861 +msgid "today" +msgstr "" + +#: js/js.js:862 +msgid "yesterday" +msgstr "" + +#: js/js.js:863 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" + +#: js/js.js:864 +msgid "last month" +msgstr "" + +#: js/js.js:865 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" + +#: js/js.js:866 +msgid "months ago" +msgstr "" + +#: js/js.js:867 +msgid "last year" +msgstr "" + +#: js/js.js:868 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:72 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/az/files.po b/l10n/az/files.po new file mode 100644 index 00000000000..af916514557 --- /dev/null +++ b/l10n/az/files.po @@ -0,0 +1,401 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:94 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:128 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/az/files_encryption.po b/l10n/az/files_encryption.po new file mode 100644 index 00000000000..c145df966c7 --- /dev/null +++ b/l10n/az/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:278 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/az/files_external.po b/l10n/az/files_external.po new file mode 100644 index 00000000000..020c2fbc41f --- /dev/null +++ b/l10n/az/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:474 +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 "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/az/files_sharing.po b/l10n/az/files_sharing.po new file mode 100644 index 00000000000..d4965ff8371 --- /dev/null +++ b/l10n/az/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/az/files_trashbin.po b/l10n/az/files_trashbin.po new file mode 100644 index 00000000000..539bb5a6f2e --- /dev/null +++ b/l10n/az/files_trashbin.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/az/files_versions.po b/l10n/az/files_versions.po new file mode 100644 index 00000000000..be77dcb54c4 --- /dev/null +++ b/l10n/az/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po new file mode 100644 index 00000000000..635b44ff208 --- /dev/null +++ b/l10n/az/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" + +#: private/template.php:297 public/util.php:108 +msgid "Caused by:" +msgstr "" diff --git a/l10n/az/settings.po b/l10n/az/settings.po new file mode 100644 index 00000000000..e54d4e5a613 --- /dev/null +++ b/l10n/az/settings.po @@ -0,0 +1,668 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:39 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/az/user_ldap.po b/l10n/az/user_ldap.po new file mode 100644 index 00000000000..c3dc07d7251 --- /dev/null +++ b/l10n/az/user_ldap.po @@ -0,0 +1,511 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/az/user_webdavauth.po b/l10n/az/user_webdavauth.po new file mode 100644 index 00000000000..0def6b1cb3d --- /dev/null +++ b/l10n/az/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/de/core.po b/l10n/de/core.po index e367f6607e3..29dffaf01dd 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 20:42+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -695,7 +695,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Diese Anwendung benötigt ein aktiviertes JavaScript zum korrekten Betrieb. Bitte aktiviere JavaScript und lade diese Schnittstelle neu." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 99c263560f3..158948bb400 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 20:42+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -694,7 +694,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Diese Anwendung benötigt ein aktiviertes JavaScript zum korrekten Betrieb. Bitte aktivieren Sie JavaScript und laden Sie diese Schnittstelle neu." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 07e389974c3..5493ad0c175 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 20:35+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -688,7 +688,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Tämä sovellus vaatii toimiakseen JavaScriptin käyttöä. Ota JavaScript käyttöön ja päivitä tämä käyttöliittymä." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/gl/core.po b/l10n/gl/core.po index ea2af6c59dc..e75f70eb006 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 20:42+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -687,7 +687,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Este aplicativo require que o JavaScript estea activado para unha operativa correcta. Active o JavaScript e volva a cargar a interface." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 62d18e42e07..c152bfcc19d 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # blackc0de , 2013 +# ebela , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 22:10+0000\n" +"Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,12 +21,12 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Visszaállítási kulcs sikeresen bekapcsolva" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Visszaállítási kulcsot nem lehetett engedélyezni. Ellenörizd a visszaállítási kulcsod jelszavát!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" @@ -34,7 +35,7 @@ msgstr "Visszaállítási kulcs sikeresen kikapcsolva" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Visszaállítási kulcsot nem lehetett kikapcsolni. Ellenörizd a visszaállítási kulcsod jelszavát!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -46,13 +47,13 @@ msgstr "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi je #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Privát kulcs jelszava sikeresen frissült." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "A privát kulcs jelszavát nem lehetet frissiteni. Lehet, hogy hibás volt a régi jelszó." #: files/error.php:12 msgid "" @@ -79,11 +80,11 @@ msgstr "" msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Ismeretlen hiba. Ellenörizd a rendszer beállításokat vagy keresd meg az adminisztrátort" #: hooks/hooks.php:59 msgid "Missing requirements." -msgstr "" +msgstr "Hiányzó követelmények." #: hooks/hooks.php:60 msgid "" @@ -92,13 +93,13 @@ msgid "" " the encryption app has been disabled." msgstr "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás." -#: hooks/hooks.php:273 +#: hooks/hooks.php:278 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "A következő felhasználók nem állították be a titkosítást:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Első titkosítás elkezdődött... Ez eltarhat hosszabb ideig. Kérlek várj." #: js/settings-admin.js:13 msgid "Saving..." @@ -106,7 +107,7 @@ msgstr "Mentés..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Rövid úton a dolgaidhoz" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -123,11 +124,11 @@ msgstr "" #: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "A helyreállítási kulcs jelszava" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Ismételd a Helyreállítási kulcs jelszavát" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -139,19 +140,19 @@ msgstr "Kikapcsolva" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "A helyreállítási kulcs jelszavának módosítása:" #: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Régi Helyreállítási Kulcs Jelszava" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "Új Helyreállítási kulcs jelszava" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Ismételd az Új Helyreállítási kulcs jelszavát" #: templates/settings-admin.php:58 msgid "Change Password" @@ -159,17 +160,17 @@ msgstr "Jelszó megváltoztatása" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "A privát kulcs jelszavad mostantól nem azonos a belépési jelszavaddal:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Állítsd vissza a régi privát kulcs jelszavát a jelenlegi bejelentkezési jelszavadra." #: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Ha nem emlékszel a régi jelszavadra akkor keresed meg a rendszeradminisztátort a file-jaid visszaállításával kapcsolatban." #: templates/settings-personal.php:22 msgid "Old log-in password" @@ -195,7 +196,7 @@ msgstr "" #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "File helyreállítási beállításai frissültek" #: templates/settings-personal.php:61 msgid "Could not update file recovery" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index c2b21ecb31d..8af48a7dbdf 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 21:50+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" @@ -202,19 +202,19 @@ msgstr "Törlés" msgid "add group" msgstr "csoport hozzáadása" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "A felhasználó nem hozható létre" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 3fd08d7f3df..eb99aabc890 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 22:10+0000\n" +"Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,17 +27,17 @@ msgstr "Nem sikerült törölni a hozzárendeléseket." msgid "Failed to delete the server configuration" msgstr "Nem sikerült törölni a kiszolgáló konfigurációját" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "A konfiguráció érvényes, és a kapcsolat létrehozható!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A konfiguráció érvényes, de a kapcsolat nem hozható létre. Kérem ellenőrizze a kiszolgáló beállításait, és az elérési adatokat." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -88,43 +88,43 @@ msgstr "Sikeres végrehajtás" msgid "Error" msgstr "Hiba" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" -msgstr "" +msgstr "Konfiguráció OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" -msgstr "" +msgstr "Konfiguráió hibás" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" -msgstr "" +msgstr "Konfiguráció nincs befejezve" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Csoportok kiválasztása" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Objektumosztályok kiválasztása" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Attribútumok kiválasztása" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "A kapcsolatellenőrzés eredménye: sikerült" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "A kapcsolatellenőrzés eredménye: nem sikerült" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Tényleg törölni szeretné a kiszolgáló beállításait?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "A törlés megerősítése" @@ -142,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "%s felhasználó van" msgstr[1] "%s felhasználó van" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Érvénytelen gépnév" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "A kívánt funkció nem található" diff --git a/l10n/it/core.po b/l10n/it/core.po index f1e0eb5c6af..ec1dbafc655 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 20:35+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" @@ -690,7 +690,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "L'applicazione richiede che JavaScript sia abilitato per un corretto funzionamento. Abilita JavaScript e ricarica questa interfaccia." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index c775f4f5cd5..8905788359e 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 21:30+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -688,7 +688,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Esta aplicação reque JavaScript habilidado para correta operação.\nPor favor habilite JavaScript e recarregue esta esta interface." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 3efa2a26dc8..cce42ca55f5 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 9b27d55bb2b..38e56636820 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 152ecd1e4a3..941ab8fe532 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 ac518be1eba..c4a05bf5083 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 dcadb5acc2d..93d2e80b237 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 836529da0dc..deea2c5c6a1 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 8d7feea2bda..a7b38dac9e0 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 c74dd41155e..455058b6676 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index ae29a79c317..c554bf4ec11 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 9993b23815f..45e1bf4a8aa 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 d65f732d9f6..7e48238acf6 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\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 1a36f8a873a..3cc393d4ea0 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index b7bd2dcf496..6ba1c1951db 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-08 20:42+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -690,7 +690,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Uygulama, doğru çalışabilmesi için JavaScript'in etkinleştirilmesini gerektiriyor. Lütfen JavaScript'i etkinleştirin ve bu arayüzü yeniden yükleyin." #: templates/layout.user.php:44 #, php-format diff --git a/lib/l10n/az.php b/lib/l10n/az.php new file mode 100644 index 00000000000..e7b09649a24 --- /dev/null +++ b/lib/l10n/az.php @@ -0,0 +1,8 @@ + array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day go_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; -- cgit v1.2.3 From 009e25788f3ad3118e2c72935ffee6591c0bc17b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 9 Dec 2013 15:47:51 +0100 Subject: correctly mark app management active --- core/templates/layout.user.php | 2 +- lib/private/templatelayout.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 9e1d8022ecb..717edf28243 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -104,7 +104,7 @@
  • class="active"> + class="active"> t('Apps')); ?> diff --git a/lib/private/templatelayout.php b/lib/private/templatelayout.php index 625f3424a04..d5cd5039753 100644 --- a/lib/private/templatelayout.php +++ b/lib/private/templatelayout.php @@ -46,6 +46,7 @@ class OC_TemplateLayout extends OC_Template { $user_displayname = OC_User::getDisplayName(); $this->assign( 'user_displayname', $user_displayname ); $this->assign( 'user_uid', OC_User::getUser() ); + $this->assign( 'appsmanagement_active', strpos(OC_Request::requestUri(), OC_Helper::linkToRoute('settings_apps')) === 0 ); $this->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true)); } else if ($renderas == 'guest' || $renderas == 'error') { parent::__construct('core', 'layout.guest'); -- cgit v1.2.3 From 409b5108896edda9adf916cd566dbce2d2b00351 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 10 Dec 2013 12:05:39 +0100 Subject: Moved content disposition code+workarounds to OCP\Response Added new OC\Response API called setContentDispositionHeader() that contains the needed workarounds for UTF8 and IE. Refactored download code to use the new API. Removed unused trashbin download file. --- apps/files/download.php | 7 +----- apps/files_trashbin/download.php | 51 ---------------------------------------- apps/files_versions/download.php | 7 +----- lib/private/files.php | 7 +----- lib/private/response.php | 14 +++++++++++ lib/public/response.php | 9 +++++++ 6 files changed, 26 insertions(+), 69 deletions(-) delete mode 100644 apps/files_trashbin/download.php (limited to 'lib') diff --git a/apps/files/download.php b/apps/files/download.php index e3fe24e45d7..6b055e99a53 100644 --- a/apps/files/download.php +++ b/apps/files/download.php @@ -37,12 +37,7 @@ if(!\OC\Files\Filesystem::file_exists($filename)) { $ftype=\OC\Files\Filesystem::getMimeType( $filename ); header('Content-Type:'.$ftype); -if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { - header( 'Content-Disposition: attachment; filename="' . rawurlencode( basename($filename) ) . '"' ); -} else { - header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode( basename($filename) ) - . '; filename="' . rawurlencode( basename($filename) ) . '"' ); -} +OCP\Response::setContentDispositionHeader(basename($filename), 'attachment'); OCP\Response::disableCaching(); header('Content-Length: '.\OC\Files\Filesystem::filesize($filename)); diff --git a/apps/files_trashbin/download.php b/apps/files_trashbin/download.php deleted file mode 100644 index 60328e1dddb..00000000000 --- a/apps/files_trashbin/download.php +++ /dev/null @@ -1,51 +0,0 @@ -. -* -*/ - -// Check if we are a user -OCP\User::checkLoggedIn(); - -$filename = $_GET["file"]; - -$view = new OC_FilesystemView('/'.\OCP\User::getUser().'/files_trashbin/files'); - -if(!$view->file_exists($filename)) { - header("HTTP/1.0 404 Not Found"); - $tmpl = new OCP\Template( '', '404', 'guest' ); - $tmpl->assign('file', $filename); - $tmpl->printPage(); - exit; -} - -$ftype=$view->getMimeType( $filename ); - -header('Content-Type:'.$ftype);if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { - header( 'Content-Disposition: attachment; filename="' . rawurlencode( basename($filename) ) . '"' ); -} else { - header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode( basename($filename) ) - . '; filename="' . rawurlencode( basename($filename) ) . '"' ); -} -OCP\Response::disableCaching(); -header('Content-Length: '. $view->filesize($filename)); - -OC_Util::obEnd(); -$view->readfile( $filename ); diff --git a/apps/files_versions/download.php b/apps/files_versions/download.php index 040a662e61b..2fe56d2e638 100644 --- a/apps/files_versions/download.php +++ b/apps/files_versions/download.php @@ -36,12 +36,7 @@ $view = new OC\Files\View('/'); $ftype = $view->getMimeType('/'.$uid.'/files/'.$filename); header('Content-Type:'.$ftype); -if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { - header( 'Content-Disposition: attachment; filename="' . rawurlencode( basename($filename) ) . '"' ); -} else { - header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode( basename($filename) ) - . '; filename="' . rawurlencode( basename($filename) ) . '"' ); -} +OCP\Response::setContentDispositionHeader(basename($filename), 'attachment'); OCP\Response::disableCaching(); header('Content-Length: '.$view->filesize($versionName)); diff --git a/lib/private/files.php b/lib/private/files.php index 6ffa14c0d91..e6c81d58bd2 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -115,12 +115,7 @@ class OC_Files { } OC_Util::obEnd(); if ($zip or \OC\Files\Filesystem::isReadable($filename)) { - if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { - header( 'Content-Disposition: attachment; filename="' . rawurlencode($name) . '"' ); - } else { - header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode($name) - . '; filename="' . rawurlencode($name) . '"' ); - } + OC_Response::setContentDispositionHeader($name, 'attachment'); header('Content-Transfer-Encoding: binary'); OC_Response::disableCaching(); if ($zip) { diff --git a/lib/private/response.php b/lib/private/response.php index 674176d078b..1b9cb473d67 100644 --- a/lib/private/response.php +++ b/lib/private/response.php @@ -147,6 +147,20 @@ class OC_Response { header('Last-Modified: '.$lastModified); } + /** + * Sets the content disposition header (with possible workarounds) + * @param string $filename file name + * @param string $type disposition type, either 'attachment' or 'inline' + */ + static public function setContentDispositionHeader( $filename, $type = 'attachment' ) { + if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { + header( 'Content-Disposition: ' . rawurlencode($type) . '; filename="' . rawurlencode( $filename ) . '"' ); + } else { + header( 'Content-Disposition: ' . rawurlencode($type) . '; filename*=UTF-8\'\'' . rawurlencode( $filename ) + . '; filename="' . rawurlencode( $filename ) . '"' ); + } + } + /** * @brief Send file as response, checking and setting caching headers * @param $filepath of file to send diff --git a/lib/public/response.php b/lib/public/response.php index 2ca0a0c9fa4..24d3c81d628 100644 --- a/lib/public/response.php +++ b/lib/public/response.php @@ -54,6 +54,15 @@ class Response { \OC_Response::setLastModifiedHeader( $lastModified ); } + /** + * Sets the content disposition header (with possible workarounds) + * @param string $filename file name + * @param string $type disposition type, either 'attachment' or 'inline' + */ + static public function setContentDispositionHeader( $filename, $type = 'attachment' ) { + \OC_Response::setContentDispositionHeader( $filename, $type ); + } + /** * Disable browser caching * @see enableCaching with cache_time = 0 -- cgit v1.2.3 From 82bf1f9c8ccbfed39790d22b2fbea2c5286122dc Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 10 Dec 2013 12:40:59 +0100 Subject: Added workaround for Android content disposition Fixes #5807 --- lib/private/response.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/response.php b/lib/private/response.php index 1b9cb473d67..c6edda0f949 100644 --- a/lib/private/response.php +++ b/lib/private/response.php @@ -153,7 +153,8 @@ class OC_Response { * @param string $type disposition type, either 'attachment' or 'inline' */ static public function setContentDispositionHeader( $filename, $type = 'attachment' ) { - if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { + // Android Chrome user agent: https://developers.google.com/chrome/mobile/docs/user-agent + if ( preg_match( '/MSIE/', $_SERVER['HTTP_USER_AGENT'] ) or preg_match( '#Android.*Chrome/[.0-9]*#', $_SERVER['HTTP_USER_AGENT'] ) ) { header( 'Content-Disposition: ' . rawurlencode($type) . '; filename="' . rawurlencode( $filename ) . '"' ); } else { header( 'Content-Disposition: ' . rawurlencode($type) . '; filename*=UTF-8\'\'' . rawurlencode( $filename ) -- cgit v1.2.3 From cdd182ce356b697d0c1d029c1f7fe64277d8410f Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Wed, 11 Dec 2013 00:13:40 +0100 Subject: Send "SET NAMES utf8" to MySQL for PHP below 5.3.6 --- lib/private/db.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/private/db.php b/lib/private/db.php index 1e5d12649df..562065259fa 100644 --- a/lib/private/db.php +++ b/lib/private/db.php @@ -101,6 +101,9 @@ class OC_DB { ); $connectionParams['adapter'] = '\OC\DB\Adapter'; $connectionParams['wrapperClass'] = 'OC\DB\Connection'; + // Send "SET NAMES utf8". Only required on PHP 5.3 below 5.3.6. + // See http://stackoverflow.com/questions/4361459/php-pdo-charset-set-names#4361485 + $eventManager->addEventSubscriber(new \Doctrine\DBAL\Event\Listeners\MysqlSessionInit); break; case 'pgsql': $connectionParams = array( -- cgit v1.2.3 From 5c7a08aab45a7f24086066549e1992f3dc2fdde6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 11 Dec 2013 12:59:48 +0100 Subject: check if a $_SESSION entry exists before we try to remove it --- lib/private/session/internal.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/session/internal.php b/lib/private/session/internal.php index 49b52b5c796..a7c9e2fdefd 100644 --- a/lib/private/session/internal.php +++ b/lib/private/session/internal.php @@ -35,7 +35,9 @@ class Internal extends Memory { */ public function remove($key) { // also remove it from $_SESSION to prevent re-setting the old value during the merge - unset($_SESSION[$key]); + if (isset($_SESSION[$key])) { + unset($_SESSION[$key]); + } parent::remove($key); } -- cgit v1.2.3 From b126374780c7364da13b89f000e09467732a3cec Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 11 Dec 2013 15:47:36 +0100 Subject: cache the result from inGroup --- lib/private/group/group.php | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/lib/private/group/group.php b/lib/private/group/group.php index bcd2419b309..694827d100e 100644 --- a/lib/private/group/group.php +++ b/lib/private/group/group.php @@ -18,7 +18,12 @@ class Group { /** * @var \OC\User\User[] $users */ - private $users; + private $users = array(); + + /** + * @var bool $usersLoaded + */ + private $usersLoaded; /** * @var \OC_Group_Backend[] | \OC_Group_Database[] $backend @@ -26,7 +31,7 @@ class Group { private $backends; /** - * @var \OC\Hooks\PublicEmitter $emitter; + * @var \OC\Hooks\PublicEmitter $emitter ; */ private $emitter; @@ -58,7 +63,7 @@ class Group { * @return \OC\User\User[] */ public function getUsers() { - if ($this->users) { + if ($this->usersLoaded) { return $this->users; } @@ -74,6 +79,7 @@ class Group { } $this->users = $this->getVerifiedUsers($userIds); + $this->usersLoaded = true; return $this->users; } @@ -84,8 +90,14 @@ class Group { * @return bool */ public function inGroup($user) { + foreach ($this->users as $cachedUser) { + if ($user->getUID() === $cachedUser->getUID()) { + return true; + } + } foreach ($this->backends as $backend) { if ($backend->inGroup($user->getUID(), $this->gid)) { + $this->users[] = $user; return true; } } @@ -185,6 +197,7 @@ class Group { * @return \OC\User\User[] */ public function searchDisplayName($search, $limit = null, $offset = null) { + $users = array(); foreach ($this->backends as $backend) { if ($backend->implementsActions(OC_GROUP_BACKEND_GET_DISPLAYNAME)) { $userIds = array_keys($backend->displayNamesInGroup($this->gid, $search, $limit, $offset)); @@ -229,17 +242,17 @@ class Group { /** * @brief returns all the Users from an array that really exists - * @param $userIds an array containing user IDs - * @return an Array with the userId as Key and \OC\User\User as value + * @param string[] $userIds an array containing user IDs + * @return \OC\User\User[] an Array with the userId as Key and \OC\User\User as value */ private function getVerifiedUsers($userIds) { - if(!is_array($userIds)) { + if (!is_array($userIds)) { return array(); } $users = array(); foreach ($userIds as $userId) { $user = $this->userManager->get($userId); - if(!is_null($user)) { + if (!is_null($user)) { $users[$userId] = $user; } } -- cgit v1.2.3 From 366d75e9479b1ac2b52b6a37389a4aa107b059e3 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 11 Dec 2013 16:22:26 +0100 Subject: cache the home folder of a User --- lib/private/user/database.php | 124 +++++++++++++++++++++--------------------- lib/private/user/user.php | 16 ++++-- 2 files changed, 73 insertions(+), 67 deletions(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 3db770f9898..c99db3b27ca 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -42,13 +42,13 @@ class OC_User_Database extends OC_User_Backend { /** * @var PasswordHash */ - static private $hasher=null; + static private $hasher = null; private function getHasher() { - if(!self::$hasher) { + if (!self::$hasher) { //we don't want to use DES based crypt(), since it doesn't return a hash with a recognisable prefix - $forcePortable=(CRYPT_BLOWFISH!=1); - self::$hasher=new PasswordHash(8, $forcePortable); + $forcePortable = (CRYPT_BLOWFISH != 1); + self::$hasher = new PasswordHash(8, $forcePortable); } return self::$hasher; @@ -63,14 +63,14 @@ class OC_User_Database extends OC_User_Backend { * Creates a new user. Basic checking of username is done in OC_User * itself, not in its subclasses. */ - public function createUser( $uid, $password ) { - if( $this->userExists($uid) ) { + public function createUser($uid, $password) { + if ($this->userExists($uid)) { return false; - }else{ - $hasher=$this->getHasher(); - $hash = $hasher->HashPassword($password.OC_Config::getValue('passwordsalt', '')); - $query = OC_DB::prepare( 'INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )' ); - $result = $query->execute( array( $uid, $hash)); + } else { + $hasher = $this->getHasher(); + $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); + $query = OC_DB::prepare('INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )'); + $result = $query->execute(array($uid, $hash)); return $result ? true : false; } @@ -83,10 +83,10 @@ class OC_User_Database extends OC_User_Backend { * * Deletes a user */ - public function deleteUser( $uid ) { + public function deleteUser($uid) { // Delete user-group-relation - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*users` WHERE `uid` = ?' ); - $query->execute( array( $uid )); + $query = OC_DB::prepare('DELETE FROM `*PREFIX*users` WHERE `uid` = ?'); + $query->execute(array($uid)); return true; } @@ -98,15 +98,15 @@ class OC_User_Database extends OC_User_Backend { * * Change the password of a user */ - public function setPassword( $uid, $password ) { - if( $this->userExists($uid) ) { - $hasher=$this->getHasher(); - $hash = $hasher->HashPassword($password.OC_Config::getValue('passwordsalt', '')); - $query = OC_DB::prepare( 'UPDATE `*PREFIX*users` SET `password` = ? WHERE `uid` = ?' ); - $query->execute( array( $hash, $uid )); + public function setPassword($uid, $password) { + if ($this->userExists($uid)) { + $hasher = $this->getHasher(); + $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); + $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `password` = ? WHERE `uid` = ?'); + $query->execute(array($hash, $uid)); return true; - }else{ + } else { return false; } } @@ -119,12 +119,12 @@ class OC_User_Database extends OC_User_Backend { * * Change the display name of a user */ - public function setDisplayName( $uid, $displayName ) { - if( $this->userExists($uid) ) { - $query = OC_DB::prepare( 'UPDATE `*PREFIX*users` SET `displayname` = ? WHERE `uid` = ?' ); - $query->execute( array( $displayName, $uid )); + public function setDisplayName($uid, $displayName) { + if ($this->userExists($uid)) { + $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `displayname` = ? WHERE LOWER(`uid`) = ?'); + $query->execute(array($displayName, $uid)); return true; - }else{ + } else { return false; } } @@ -132,18 +132,16 @@ class OC_User_Database extends OC_User_Backend { /** * @brief get display name of the user * @param $uid user ID of the user - * @return display name + * @return string display name */ public function getDisplayName($uid) { - if( $this->userExists($uid) ) { - $query = OC_DB::prepare( 'SELECT `displayname` FROM `*PREFIX*users` WHERE `uid` = ?' ); - $result = $query->execute( array( $uid ))->fetchAll(); - $displayName = trim($result[0]['displayname'], ' '); - if ( !empty($displayName) ) { - return $displayName; - } else { - return $uid; - } + $query = OC_DB::prepare('SELECT `displayname` FROM `*PREFIX*users` WHERE `uid` = ?'); + $result = $query->execute(array($uid))->fetchAll(); + $displayName = trim($result[0]['displayname'], ' '); + if (!empty($displayName)) { + return $displayName; + } else { + return $uid; } } @@ -156,9 +154,9 @@ class OC_User_Database extends OC_User_Backend { public function getDisplayNames($search = '', $limit = null, $offset = null) { $displayNames = array(); $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`' - .' WHERE LOWER(`displayname`) LIKE LOWER(?) OR ' - .'LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); - $result = $query->execute(array($search.'%', $search.'%')); + . ' WHERE LOWER(`displayname`) LIKE LOWER(?) OR ' + . 'LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + $result = $query->execute(array($search . '%', $search . '%')); $users = array(); while ($row = $result->fetchRow()) { $displayNames[$row['uid']] = $row['displayname']; @@ -176,30 +174,30 @@ class OC_User_Database extends OC_User_Backend { * Check if the password is correct without logging in the user * returns the user id or false */ - public function checkPassword( $uid, $password ) { - $query = OC_DB::prepare( 'SELECT `uid`, `password` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); - $result = $query->execute( array( $uid)); + public function checkPassword($uid, $password) { + $query = OC_DB::prepare('SELECT `uid`, `password` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); + $result = $query->execute(array($uid)); - $row=$result->fetchRow(); - if($row) { - $storedHash=$row['password']; - if ($storedHash[0]=='$') {//the new phpass based hashing - $hasher=$this->getHasher(); - if($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $storedHash)) { + $row = $result->fetchRow(); + if ($row) { + $storedHash = $row['password']; + if ($storedHash[0] == '$') { //the new phpass based hashing + $hasher = $this->getHasher(); + if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) { return $row['uid']; - }else{ + } else { return false; } - }else{//old sha1 based hashing - if(sha1($password)==$storedHash) { + } else { //old sha1 based hashing + if (sha1($password) == $storedHash) { //upgrade to new hashing $this->setPassword($row['uid'], $password); return $row['uid']; - }else{ + } else { return false; } } - }else{ + } else { return false; } } @@ -212,7 +210,7 @@ class OC_User_Database extends OC_User_Backend { */ public function getUsers($search = '', $limit = null, $offset = null) { $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); - $result = $query->execute(array($search.'%')); + $result = $query->execute(array($search . '%')); $users = array(); while ($row = $result->fetchRow()) { $users[] = $row['uid']; @@ -226,8 +224,8 @@ class OC_User_Database extends OC_User_Backend { * @return boolean */ public function userExists($uid) { - $query = OC_DB::prepare( 'SELECT COUNT(*) FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); - $result = $query->execute( array( $uid )); + $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); + $result = $query->execute(array($uid)); if (OC_DB::isError($result)) { OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; @@ -236,14 +234,14 @@ class OC_User_Database extends OC_User_Backend { } /** - * @brief get the user's home directory - * @param string $uid the username - * @return boolean - */ + * @brief get the user's home directory + * @param string $uid the username + * @return boolean + */ public function getHome($uid) { - if($this->userExists($uid)) { - return OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ) . '/' . $uid; - }else{ + if ($this->userExists($uid)) { + return OC_Config::getValue("datadirectory", OC::$SERVERROOT . "/data") . '/' . $uid; + } else { return false; } } diff --git a/lib/private/user/user.php b/lib/private/user/user.php index e773473ec41..a9e32b5d597 100644 --- a/lib/private/user/user.php +++ b/lib/private/user/user.php @@ -37,6 +37,11 @@ class User { */ private $emitter; + /** + * @var string $home + */ + private $home; + /** * @param string $uid * @param \OC_User_Backend $backend @@ -133,10 +138,13 @@ class User { * @return string */ public function getHome() { - if ($this->backend->implementsActions(\OC_USER_BACKEND_GET_HOME) and $home = $this->backend->getHome($this->uid)) { - return $home; + if (!$this->home) { + if ($this->backend->implementsActions(\OC_USER_BACKEND_GET_HOME) and $home = $this->backend->getHome($this->uid)) { + $this->home = $home; + } + $this->home = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/' . $this->uid; //TODO switch to Config object once implemented } - return \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/' . $this->uid; //TODO switch to Config object once implemented + return $this->home; } /** @@ -145,7 +153,7 @@ class User { * @return bool */ public function canChangeAvatar() { - if($this->backend->implementsActions(\OC_USER_BACKEND_PROVIDE_AVATAR)) { + if ($this->backend->implementsActions(\OC_USER_BACKEND_PROVIDE_AVATAR)) { return $this->backend->canChangeAvatar($this->uid); } return true; -- cgit v1.2.3 From 3d299923786aa818aafeef1cb4dc3778b6fc1692 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 11 Dec 2013 16:25:41 +0100 Subject: user Group->users as assosiative array --- lib/private/group/group.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/private/group/group.php b/lib/private/group/group.php index 694827d100e..97f1cb8d960 100644 --- a/lib/private/group/group.php +++ b/lib/private/group/group.php @@ -90,14 +90,12 @@ class Group { * @return bool */ public function inGroup($user) { - foreach ($this->users as $cachedUser) { - if ($user->getUID() === $cachedUser->getUID()) { - return true; - } + if (isset($this->users[$user->getUID()])) { + return true; } foreach ($this->backends as $backend) { if ($backend->inGroup($user->getUID(), $this->gid)) { - $this->users[] = $user; + $this->users[$user->getUID()] = $user; return true; } } -- cgit v1.2.3 From 335b2f40a631f7188ab921d69289acaf31908c6e Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 10 Dec 2013 15:32:48 +0100 Subject: Fixed download file from URL error messages - L10N now converted to string to make them work with json_encode - Added specific error message when server doesn't allow fopen on URLs - Fixed client side to correctly show error message in a notification - Added OCP\JSON::encode() method to encode JSON with support for the OC_L10N_String values --- apps/files/ajax/newfile.php | 28 ++++++++++++++++++++-------- apps/files/js/file-upload.js | 7 ++++++- lib/private/eventsource.php | 6 +++--- lib/private/json.php | 9 ++++++++- lib/public/json.php | 8 ++++++++ 5 files changed, 45 insertions(+), 13 deletions(-) (limited to 'lib') diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index c327d2b9f94..ec5b716fb2a 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -53,13 +53,13 @@ $result = array( ); if(trim($filename) === '') { - $result['data'] = array('message' => $l10n->t('File name cannot be empty.')); + $result['data'] = array('message' => (string)$l10n->t('File name cannot be empty.')); OCP\JSON::error($result); exit(); } if(strpos($filename, '/') !== false) { - $result['data'] = array('message' => $l10n->t('File name must not contain "/". Please choose a different name.')); + $result['data'] = array('message' => (string)$l10n->t('File name must not contain "/". Please choose a different name.')); OCP\JSON::error($result); exit(); } @@ -68,7 +68,7 @@ if(strpos($filename, '/') !== false) { $target = $dir.'/'.$filename; if (\OC\Files\Filesystem::file_exists($target)) { - $result['data'] = array('message' => $l10n->t( + $result['data'] = array('message' => (string)$l10n->t( 'The name %s is already used in the folder %s. Please choose a different name.', array($filename, $dir)) ); @@ -78,20 +78,32 @@ if (\OC\Files\Filesystem::file_exists($target)) { if($source) { if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') { - OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Not a valid source') ))); + OCP\JSON::error(array('data' => array('message' => $l10n->t('Not a valid source')))); + exit(); + } + + if (!ini_get('allow_url_fopen')) { + $eventSource->send('error', array('message' => $l10n->t('Server is not allowed to open URLs, please check the server configuration'))); + $eventSource->close(); exit(); } $ctx = stream_context_create(null, array('notification' =>'progress')); - $sourceStream=fopen($source, 'rb', false, $ctx); - $result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); + $sourceStream=@fopen($source, 'rb', false, $ctx); + $result = 0; + if (is_resource($sourceStream)) { + $result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); + } if($result) { $meta = \OC\Files\Filesystem::getFileInfo($target); $mime=$meta['mimetype']; $id = $meta['fileid']; - $eventSource->send('success', array('mime'=>$mime, 'size'=>\OC\Files\Filesystem::filesize($target), 'id' => $id, 'etag' => $meta['etag'])); + $eventSource->send('success', array('mime' => $mime, 'size' => \OC\Files\Filesystem::filesize($target), 'id' => $id, 'etag' => $meta['etag'])); } else { - $eventSource->send('error', $l10n->t('Error while downloading %s to %s', array($source, $target))); + $eventSource->send('error', array('message' => $l10n->t('Error while downloading %s to %s', array($source, $target)))); + } + if (is_resource($sourceStream)) { + fclose($sourceStream); } $eventSource->close(); exit(); diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index e9663353f74..196817432d5 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -658,7 +658,12 @@ $(document).ready(function() { }); eventSource.listen('error',function(error) { $('#uploadprogressbar').fadeOut(); - alert(error); + var message = (error && error.message) || t('core', 'Error fetching URL'); + OC.Notification.show(message); + //hide notification after 10 sec + setTimeout(function() { + OC.Notification.hide(); + }, 10000); }); break; } diff --git a/lib/private/eventsource.php b/lib/private/eventsource.php index a83084d9251..4df0bc2e7cd 100644 --- a/lib/private/eventsource.php +++ b/lib/private/eventsource.php @@ -64,13 +64,13 @@ class OC_EventSource{ } if($this->fallback) { $response=''.PHP_EOL; + .$this->fallBackId.',"' . $type . '",' . OCP\JSON::encode($data) . ')' . PHP_EOL; echo $response; }else{ if($type) { - echo 'event: '.$type.PHP_EOL; + echo 'event: ' . $type.PHP_EOL; } - echo 'data: '.json_encode($data).PHP_EOL; + echo 'data: ' . OCP\JSON::encode($data) . PHP_EOL; } echo PHP_EOL; flush(); diff --git a/lib/private/json.php b/lib/private/json.php index 6ba0b13806b..8401f7c3a12 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -109,7 +109,14 @@ class OC_JSON{ if($setContentType) { self::setContentTypeHeader(); } + echo self::encode($data); + } + + /** + * Encode JSON + */ + public static function encode($data) { array_walk_recursive($data, array('OC_JSON', 'to_string')); - echo json_encode($data); + return json_encode($data); } } diff --git a/lib/public/json.php b/lib/public/json.php index 134f724b0e6..831e3ef1cf6 100644 --- a/lib/public/json.php +++ b/lib/public/json.php @@ -169,4 +169,12 @@ class JSON { public static function checkAdminUser() { return(\OC_JSON::checkAdminUser()); } + + /** + * Encode JSON + * @param array $data + */ + public static function encode($data) { + return(\OC_JSON::encode($data)); + } } -- cgit v1.2.3 From f23b7a262fe4582baf75f9fb968b716c2da3071c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 12 Dec 2013 12:57:25 +0100 Subject: fix fallback overwriting result of getHome --- lib/private/user/user.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/user/user.php b/lib/private/user/user.php index a9e32b5d597..b4f33fa73cc 100644 --- a/lib/private/user/user.php +++ b/lib/private/user/user.php @@ -141,8 +141,9 @@ class User { if (!$this->home) { if ($this->backend->implementsActions(\OC_USER_BACKEND_GET_HOME) and $home = $this->backend->getHome($this->uid)) { $this->home = $home; + } else { + $this->home = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/' . $this->uid; //TODO switch to Config object once implemented } - $this->home = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/' . $this->uid; //TODO switch to Config object once implemented } return $this->home; } -- cgit v1.2.3 From 8a86837eac8da8beaa225e339902cab94c46e675 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 12 Dec 2013 13:59:00 +0100 Subject: remove unneeded ; in comment --- lib/private/group/group.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/group/group.php b/lib/private/group/group.php index 97f1cb8d960..8d2aa87a788 100644 --- a/lib/private/group/group.php +++ b/lib/private/group/group.php @@ -31,7 +31,7 @@ class Group { private $backends; /** - * @var \OC\Hooks\PublicEmitter $emitter ; + * @var \OC\Hooks\PublicEmitter $emitter */ private $emitter; -- cgit v1.2.3 From df1a404466340700cfe16d4a57c2bd964290d35a Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 13 Dec 2013 12:54:08 +0100 Subject: Fix webroot for update page On the update page, config.js was missing which caused oc_webroot to not be available. That would trigger the faulty oc_webroot fallback that didn't take URLs like "/owncloud/index.php/files/apps" into account. This fix adds config.js in the update page and also a fix for the oc_webroot fallback, in case it is used elsewhere. --- core/js/js.js | 9 ++++++++- lib/base.php | 1 + 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/core/js/js.js b/core/js/js.js index d9b3b54e0a1..5442039c294 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -12,7 +12,14 @@ var oc_current_user = document.getElementsByTagName('head')[0].getAttribute('dat var oc_requesttoken = document.getElementsByTagName('head')[0].getAttribute('data-requesttoken'); if (typeof oc_webroot === "undefined") { - oc_webroot = location.pathname.substr(0, location.pathname.lastIndexOf('/')); + oc_webroot = location.pathname; + var pos = oc_webroot.indexOf('/index.php/'); + if (pos !== -1) { + oc_webroot = oc_webroot.substr(0, pos); + } + else { + oc_webroot = oc_webroot.substr(0, oc_webroot.lastIndexOf('/')); + } } if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") { if (!window.console) { diff --git a/lib/base.php b/lib/base.php index baf73b2fb9f..a6033f03f8c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -265,6 +265,7 @@ class OC { $minimizerCSS->clearCache(); $minimizerJS = new OC_Minimizer_JS(); $minimizerJS->clearCache(); + OC_Util::addScript('config'); // needed for web root OC_Util::addScript('update'); $tmpl = new OC_Template('', 'update.admin', 'guest'); $tmpl->assign('version', OC_Util::getVersionString()); -- cgit v1.2.3 From 6408125edcb648661f4dd42e8fa1233dcbdf262b Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Thu, 12 Dec 2013 19:09:21 +0100 Subject: rely only on php DateTime to parse the db datetime string --- lib/public/share.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index 6b3397c85c6..f0fd8e1ab1b 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -850,9 +850,8 @@ class Share { protected static function expireItem(array $item) { if (!empty($item['expiration'])) { $now = new \DateTime(); - $expirationDate = \Doctrine\DBAL\Types\Type::getType('datetime') - ->convertToPhpValue($item['expiration'], \OC_DB::getConnection()->getDatabasePlatform()); - if ($now > $expirationDate) { + $expires = new \DateTime($item['expiration']); + if ($now > $expires) { self::unshareItem($item); return true; } -- cgit v1.2.3 From 91d6a6dd7c350c5ab6e879089a1b7b1be3e82b0f Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 11 Dec 2013 13:56:45 +0100 Subject: On webdav sesssions, loginname was compared to username which does not need to match necessarily --- lib/base.php | 7 +++---- lib/private/user/session.php | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index a6033f03f8c..473be9da4b3 100644 --- a/lib/base.php +++ b/lib/base.php @@ -527,10 +527,9 @@ class OC { OC_User::useBackend(new OC_User_Database()); OC_Group::useBackend(new OC_Group_Database()); - if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('user_id') - && $_SERVER['PHP_AUTH_USER'] != self::$session->get('user_id')) { - $sessionUser = self::$session->get('user_id'); + && $_SERVER['PHP_AUTH_USER'] != self::$session->get('loginname')) { + $sessionUser = self::$session->get('loginname'); $serverUser = $_SERVER['PHP_AUTH_USER']; OC_Log::write('core', "Session user-id ($sessionUser) doesn't match SERVER[PHP_AUTH_USER] ($serverUser).", @@ -805,7 +804,7 @@ class OC { if ( OC_Config::getValue('log_authfailip', false) ) { OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], OC_Log::WARN); - } else { + } else { OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:set log_authfailip=true in conf', OC_Log::WARN); } diff --git a/lib/private/user/session.php b/lib/private/user/session.php index 9c9bee3da25..c2885d00413 100644 --- a/lib/private/user/session.php +++ b/lib/private/user/session.php @@ -112,6 +112,38 @@ class Session implements Emitter, \OCP\IUserSession { } } + /** + * set the login name + * + * @param string login name for the logged in user + */ + public function setLoginname($loginname) { + if (is_null($loginname)) { + $this->session->remove('loginname'); + } else { + $this->session->set('loginname', $loginname); + } + } + + /** + * get the login name of the current user + * + * @return string + */ + public function getLoginname() { + if ($this->activeUser) { + return $this->session->get('loginname'); + } else { + $uid = $this->session->get('user_id'); + if ($uid) { + $this->activeUser = $this->manager->get($uid); + return $this->session->get('loginname'); + } else { + return null; + } + } + } + /** * try to login with the provided credentials * @@ -126,6 +158,7 @@ class Session implements Emitter, \OCP\IUserSession { if (!is_null($user)) { if ($user->isEnabled()) { $this->setUser($user); + $this->setLoginname($uid); $this->manager->emit('\OC\User', 'postLogin', array($user, $password)); return true; } else { @@ -143,6 +176,7 @@ class Session implements Emitter, \OCP\IUserSession { public function logout() { $this->manager->emit('\OC\User', 'logout'); $this->setUser(null); + $this->setLoginname(null); $this->unsetMagicInCookie(); } -- cgit v1.2.3 From dcfda5c2a9e4877af106b484783b2e676ecdee07 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 11 Dec 2013 13:57:02 +0100 Subject: coding style --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 473be9da4b3..c2a07e47889 100644 --- a/lib/base.php +++ b/lib/base.php @@ -528,7 +528,7 @@ class OC { OC_User::useBackend(new OC_User_Database()); OC_Group::useBackend(new OC_Group_Database()); if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('user_id') - && $_SERVER['PHP_AUTH_USER'] != self::$session->get('loginname')) { + && $_SERVER['PHP_AUTH_USER'] !== self::$session->get('loginname')) { $sessionUser = self::$session->get('loginname'); $serverUser = $_SERVER['PHP_AUTH_USER']; OC_Log::write('core', -- cgit v1.2.3 From f26ba5846d6859714e2f32f8f3625e57855ea703 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 11 Dec 2013 14:01:48 +0100 Subject: coding style --- lib/base.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index c2a07e47889..d361b7768f9 100644 --- a/lib/base.php +++ b/lib/base.php @@ -527,6 +527,7 @@ class OC { OC_User::useBackend(new OC_User_Database()); OC_Group::useBackend(new OC_Group_Database()); + if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('user_id') && $_SERVER['PHP_AUTH_USER'] !== self::$session->get('loginname')) { $sessionUser = self::$session->get('loginname'); -- cgit v1.2.3 From 4c45c6f4180b8d087f58e4fec2b3839ded988cf3 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 13 Dec 2013 13:30:29 +0100 Subject: dont try to register background jobs if we haven't upgraded yet --- lib/base.php | 89 ++++++++++++++++++++++---------------------- lib/public/backgroundjob.php | 8 +++- 2 files changed, 51 insertions(+), 46 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index d361b7768f9..d3e483f4948 100644 --- a/lib/base.php +++ b/lib/base.php @@ -131,8 +131,8 @@ class OC { OC::$THIRDPARTYROOT = rtrim(dirname(OC::$SERVERROOT), '/'); } else { throw new Exception('3rdparty directory not found! Please put the ownCloud 3rdparty' - .' folder in the ownCloud folder or the folder above.' - .' You can also configure the location in the config.php file.'); + . ' folder in the ownCloud folder or the folder above.' + . ' You can also configure the location in the config.php file.'); } // search the apps folder $config_paths = OC_Config::getValue('apps_paths', array()); @@ -156,7 +156,7 @@ class OC { if (empty(OC::$APPSROOTS)) { throw new Exception('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder' - .' or the folder above. You can also configure the location in the config.php file.'); + . ' or the folder above. You can also configure the location in the config.php file.'); } $paths = array(); foreach (OC::$APPSROOTS as $path) { @@ -176,7 +176,8 @@ class OC { public static function checkConfig() { if (file_exists(OC::$SERVERROOT . "/config/config.php") - and !is_writable(OC::$SERVERROOT . "/config/config.php")) { + and !is_writable(OC::$SERVERROOT . "/config/config.php") + ) { $defaults = new OC_Defaults(); if (self::$CLI) { echo "Can't write into config directory!\n"; @@ -188,7 +189,7 @@ class OC { OC_Template::printErrorPage( "Can't write into config directory!", 'This can usually be fixed by ' - .'giving the webserver write access to the config directory.' + . 'giving the webserver write access to the config directory.' ); } } @@ -254,31 +255,42 @@ class OC { } } - public static function checkUpgrade($showTemplate = true) { + /** + * check if the instance needs to preform an upgrade + * + * @return bool + */ + public static function needUpgrade() { if (OC_Config::getValue('installed', false)) { $installedVersion = OC_Config::getValue('version', '0.0.0'); $currentVersion = implode('.', OC_Util::getVersion()); - if (version_compare($currentVersion, $installedVersion, '>')) { - if ($showTemplate && !OC_Config::getValue('maintenance', false)) { - OC_Config::setValue('theme', ''); - $minimizerCSS = new OC_Minimizer_CSS(); - $minimizerCSS->clearCache(); - $minimizerJS = new OC_Minimizer_JS(); - $minimizerJS->clearCache(); - OC_Util::addScript('config'); // needed for web root - OC_Util::addScript('update'); - $tmpl = new OC_Template('', 'update.admin', 'guest'); - $tmpl->assign('version', OC_Util::getVersionString()); - $tmpl->printPage(); - exit(); - } else { - return true; - } - } + return version_compare($currentVersion, $installedVersion, '>'); + } else { return false; } } + public static function checkUpgrade($showTemplate = true) { + if (self::needUpgrade()) { + if ($showTemplate && !OC_Config::getValue('maintenance', false)) { + OC_Config::setValue('theme', ''); + $minimizerCSS = new OC_Minimizer_CSS(); + $minimizerCSS->clearCache(); + $minimizerJS = new OC_Minimizer_JS(); + $minimizerJS->clearCache(); + OC_Util::addScript('config'); // needed for web root + OC_Util::addScript('update'); + $tmpl = new OC_Template('', 'update.admin', 'guest'); + $tmpl->assign('version', OC_Util::getVersionString()); + $tmpl->printPage(); + exit(); + } else { + return true; + } + } + return false; + } + public static function initTemplateEngine() { // Add the stuff we need always OC_Util::addScript("jquery-1.10.0.min"); @@ -462,7 +474,7 @@ class OC { // OC_Util::getInstanceId() for namespacing. See #5409. try { self::$loader->setMemoryCache(\OC\Memcache\Factory::createLowLatency('Autoloader')); - } catch(\Exception $ex) { + } catch (\Exception $ex) { } } OC_Util::isSetLocaleWorking(); @@ -507,7 +519,7 @@ class OC { if (count($errors) > 0) { if (self::$CLI) { foreach ($errors as $error) { - echo $error['error']."\n"; + echo $error['error'] . "\n"; echo $error['hint'] . "\n\n"; } } else { @@ -602,13 +614,9 @@ class OC { * register hooks for the cache */ public static function registerCacheHooks() { - if (OC_Config::getValue('installed', false)) { //don't try to do this before we are properly setup - // register cache cleanup jobs - try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception - \OCP\BackgroundJob::registerJob('OC\Cache\FileGlobalGC'); - } catch (Exception $e) { + if (OC_Config::getValue('installed', false) && !self::needUpgrade()) { //don't try to do this before we are properly setup + \OCP\BackgroundJob::registerJob('OC\Cache\FileGlobalGC'); - } // NOTE: This will be replaced to use OCP $userSession = \OC_User::getUserSession(); $userSession->listen('postLogin', '\OC\Cache\File', 'loginListener'); @@ -619,14 +627,9 @@ class OC { * register hooks for the cache */ public static function registerLogRotate() { - if (OC_Config::getValue('installed', false) && OC_Config::getValue('log_rotate_size', false)) { + if (OC_Config::getValue('installed', false) && OC_Config::getValue('log_rotate_size', false) && !self::needUpgrade()) { //don't try to do this before we are properly setup - // register cache cleanup jobs - try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception - \OCP\BackgroundJob::registerJob('OC\Log\Rotate', OC_Config::getValue("datadirectory", OC::$SERVERROOT.'/data').'/owncloud.log'); - } catch (Exception $e) { - - } + \OCP\BackgroundJob::registerJob('OC\Log\Rotate', OC_Config::getValue("datadirectory", OC::$SERVERROOT . '/data') . '/owncloud.log'); } } @@ -653,7 +656,7 @@ class OC { * register hooks for sharing */ public static function registerShareHooks() { - if(\OC_Config::getValue('installed')) { + if (\OC_Config::getValue('installed')) { OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser'); OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup'); OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup'); @@ -676,7 +679,7 @@ class OC { } $request = OC_Request::getPathInfo(); - if(substr($request, -3) !== '.js') {// we need these files during the upgrade + if (substr($request, -3) !== '.js') { // we need these files during the upgrade self::checkMaintenanceMode(); self::checkUpgrade(); } @@ -794,12 +797,10 @@ class OC { // auth possible via apache module? if (OC::tryApacheAuth()) { $error[] = 'apacheauthfailed'; - } - // remember was checked after last login + } // remember was checked after last login elseif (OC::tryRememberLogin()) { $error[] = 'invalidcookie'; - } - // logon via web form + } // logon via web form elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; if ( OC_Config::getValue('log_authfailip', false) ) { diff --git a/lib/public/backgroundjob.php b/lib/public/backgroundjob.php index 1788c4e293d..a7f54491dfa 100644 --- a/lib/public/backgroundjob.php +++ b/lib/public/backgroundjob.php @@ -45,6 +45,7 @@ use \OC\BackgroundJob\JobList; class BackgroundJob { /** * get the execution type of background jobs + * * @return string * * This method returns the type how background jobs are executed. If the user @@ -56,6 +57,7 @@ class BackgroundJob { /** * sets the background jobs execution type + * * @param string $type execution type * @return boolean * @@ -83,8 +85,10 @@ class BackgroundJob { * @return true */ public static function addRegularTask($klass, $method) { - self::registerJob('OC\BackgroundJob\Legacy\RegularJob', array($klass, $method)); - return true; + if (!\OC::needUpgrade()) { + self::registerJob('OC\BackgroundJob\Legacy\RegularJob', array($klass, $method)); + return true; + } } /** -- cgit v1.2.3 From 77b68505c2164330803ce5d5dcbb9fd07438e18d Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 13 Dec 2013 14:44:31 -0500 Subject: [tx-robot] updated from transifex --- 3rdparty | 2 +- apps/files/l10n/id.php | 35 ++++++++++++++++-- apps/files/l10n/pl.php | 4 ++- apps/files_encryption/l10n/pl.php | 1 + apps/files_versions/l10n/id.php | 3 ++ apps/user_ldap/l10n/ia.php | 1 + core/l10n/de_DE.php | 2 +- core/l10n/es.php | 1 + core/l10n/et_EE.php | 1 + core/l10n/ia.php | 3 ++ core/l10n/nl.php | 1 + core/l10n/pl.php | 21 ++++++++++- core/l10n/pt_PT.php | 7 ++++ l10n/de_DE/core.po | 32 ++++++++--------- l10n/es/core.po | 32 ++++++++--------- l10n/et_EE/core.po | 32 ++++++++--------- l10n/et_EE/settings.po | 18 +++++----- l10n/ia/core.po | 34 +++++++++--------- l10n/ia/user_ldap.po | 36 +++++++++---------- l10n/id/core.po | 28 +++++++-------- l10n/id/files.po | 71 +++++++++++++++++++------------------ l10n/id/files_versions.po | 25 ++++++------- l10n/nl/core.po | 32 ++++++++--------- l10n/pl/core.po | 69 +++++++++++++++++------------------ l10n/pl/files.po | 14 ++++---- l10n/pl/files_encryption.po | 11 +++--- l10n/pl/lib.po | 51 +++++++++++++------------- l10n/pt_PT/core.po | 44 +++++++++++------------ l10n/pt_PT/settings.po | 18 +++++----- l10n/templates/core.pot | 26 +++++++------- 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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/files.po | 4 +-- l10n/tr/files_sharing.po | 4 +-- lib/l10n/pl.php | 1 + settings/l10n/et_EE.php | 2 ++ settings/l10n/pt_PT.php | 2 ++ 46 files changed, 385 insertions(+), 305 deletions(-) (limited to 'lib') diff --git a/3rdparty b/3rdparty index 3ee304749dd..42efd966284 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 3ee304749dd1e7e22b35109aeafa14d296b0b191 +Subproject commit 42efd966284debadf83b761367e529bc45f806d6 diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 719b092f3f9..4e254ff6f60 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -3,6 +3,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada", "Could not move %s" => "Tidak dapat memindahkan %s", "File name cannot be empty." => "Nama berkas tidak boleh kosong.", +"File name must not contain \"/\". Please choose a different name." => "Nama berkas tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda.", +"The name %s is already used in the folder %s. Please choose a different name." => "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda.", +"Not a valid source" => "Sumber tidak sah", +"Error while downloading %s to %s" => "Galat saat mengunduh %s ke %s", +"Error when creating the file" => "Galat saat membuat berkas", +"Folder name cannot be empty." => "Nama folder tidak bolh kosong.", +"Folder name must not contain \"/\". Please choose a different name." => "Nama folder tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda.", +"Error when creating the folder" => "Galat saat membuat folder", +"Unable to set upload directory." => "Tidak dapat mengatur folder unggah", +"Invalid Token" => "Token tidak sah", "No file was uploaded. Unknown error" => "Tidak ada berkas yang diunggah. Galat tidak dikenal.", "There is no error, the file uploaded with success" => "Tidak ada galat, berkas sukses diunggah", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini", @@ -12,30 +22,47 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Folder sementara tidak ada", "Failed to write to disk" => "Gagal menulis ke disk", "Not enough storage available" => "Ruang penyimpanan tidak mencukupi", +"Upload failed. Could not get file info." => "Unggah gagal. Tidak mendapatkan informasi berkas.", +"Upload failed. Could not find uploaded file" => "Unggah gagal. Tidak menemukan berkas yang akan diunggah", "Invalid directory." => "Direktori tidak valid.", "Files" => "Berkas", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Tidak dapat mengunggah {filename} karena ini sebuah direktori atau memiliki ukuran 0 byte", "Not enough space available" => "Ruang penyimpanan tidak mencukupi", "Upload cancelled." => "Pengunggahan dibatalkan.", +"Could not get result from server." => "Tidak mendapatkan hasil dari server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses.", +"URL cannot be empty" => "URL tidak boleh kosong", +"In the home folder 'Shared' is a reserved filename" => "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan", "{new_name} already exists" => "{new_name} sudah ada", +"Could not create file" => "Tidak dapat membuat berkas", +"Could not create folder" => "Tidak dapat membuat folder", "Share" => "Bagikan", "Delete permanently" => "Hapus secara permanen", "Rename" => "Ubah nama", "Pending" => "Menunggu", +"Could not rename file" => "Tidak dapat mengubah nama berkas", "replaced {new_name} with {old_name}" => "mengganti {new_name} dengan {old_name}", "undo" => "urungkan", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), -"_Uploading %n file_::_Uploading %n files_" => array(""), +"Error deleting file." => "Galat saat menghapus berkas.", +"_%n folder_::_%n folders_" => array("%n folder"), +"_%n file_::_%n files_" => array("%n berkas"), +"{dirs} and {files}" => "{dirs} dan {files}", +"_Uploading %n file_::_Uploading %n files_" => array("Mengunggah %n berkas"), "'.' is an invalid file name." => "'.' bukan nama berkas yang valid.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan.", "Your storage is full, files can not be updated or synced anymore!" => "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!", "Your storage is almost full ({usedSpacePercent}%)" => "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Enskripi telah dinonaktifkan tetapi berkas anda tetap dienskripsi. Silakan menuju ke pengaturan pribadi untuk deskrip berkas anda.", "Your download is being prepared. This might take some time if the files are big." => "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar.", +"Error moving file" => "Galat saat memindahkan berkas", "Error" => "Galat", "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan.", +"%s could not be renamed" => "%s tidak dapat diubah nama", "Upload" => "Unggah", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", @@ -46,12 +73,14 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Ukuran masukan maksimum untuk berkas ZIP", "Save" => "Simpan", "New" => "Baru", +"New text file" => "Berkas teks baru", "Text file" => "Berkas teks", "New folder" => "Map baru", "Folder" => "Folder", "From link" => "Dari tautan", "Deleted files" => "Berkas yang dihapus", "Cancel upload" => "Batal pengunggahan", +"You don’t have permission to upload or create files here" => "Anda tidak memiliki akses untuk mengunggah atau membuat berkas disini", "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", "Download" => "Unduh", "Delete" => "Hapus", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 5a26904e0ae..0ebae8f45c8 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -43,9 +43,10 @@ $TRANSLATIONS = array( "Could not rename file" => "Nie można zmienić nazwy pliku", "replaced {new_name} with {old_name}" => "zastąpiono {new_name} przez {old_name}", "undo" => "cofnij", +"Error deleting file." => "Błąd podczas usuwania pliku", "_%n folder_::_%n folders_" => array("%n katalog","%n katalogi","%n katalogów"), "_%n file_::_%n files_" => array("%n plik","%n pliki","%n plików"), -"{dirs} and {files}" => "{katalogi} and {pliki}", +"{dirs} and {files}" => "{dirs} and {files}", "_Uploading %n file_::_Uploading %n files_" => array("Wysyłanie %n pliku","Wysyłanie %n plików","Wysyłanie %n plików"), "'.' is an invalid file name." => "„.” jest nieprawidłową nazwą pliku.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone.", @@ -72,6 +73,7 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maksymalna wielkość pliku wejściowego ZIP ", "Save" => "Zapisz", "New" => "Nowy", +"New text file" => "Nowy plik tekstowy", "Text file" => "Plik tekstowy", "New folder" => "Nowy folder", "Folder" => "Folder", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 5d1a48d1246..b768bd46f8c 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Missing requirements." => "Brak wymagań.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", "Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", +"Initial encryption started... This can take some time. Please wait." => "Rozpoczęto szyfrowanie... To może chwilę potrwać. Proszę czekać.", "Saving..." => "Zapisywanie...", "Go directly to your " => "Przejdź bezpośrednio do", "personal settings" => "Ustawienia osobiste", diff --git a/apps/files_versions/l10n/id.php b/apps/files_versions/l10n/id.php index ee7061805ba..14920cc52fd 100644 --- a/apps/files_versions/l10n/id.php +++ b/apps/files_versions/l10n/id.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "Tidak dapat mengembalikan: %s", "Versions" => "Versi", +"Failed to revert {file} to revision {timestamp}." => "Gagal mengembalikan {file} ke revisi {timestamp}.", +"More versions..." => "Versi lebih...", +"No other versions available" => "Tidak ada versi lain yang tersedia", "Restore" => "Pulihkan" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ia.php b/apps/user_ldap/l10n/ia.php index 4a23d5860c4..e138fd835f1 100644 --- a/apps/user_ldap/l10n/ia.php +++ b/apps/user_ldap/l10n/ia.php @@ -1,5 +1,6 @@ "Il falleva deler", "Error" => "Error", "_%s group found_::_%s groups found_" => array("",""), "_%s user found_::_%s users found_" => array("",""), diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index b25d465c3ec..e9abf57a007 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,6 +1,6 @@ "%s geteilt »%s« mit Ihnen", +"%s shared »%s« with you" => "%s hat »%s« mit Ihnen geteilt", "Couldn't send mail to following users: %s " => "An folgende Benutzer konnte keine E-Mail gesendet werden: %s", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet ", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", diff --git a/core/l10n/es.php b/core/l10n/es.php index 72450ec4568..6bee4fabaf3 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", "Finishing …" => "Finalizando...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Esta aplicación requiere que se habilite JavaScript para su correcta operación. Por favor habilite JavaScript y vuelva a cargar esta interfaz.", "%s is available. Get more information on how to update." => "%s esta disponible. Obtener mas información de como actualizar.", "Log out" => "Salir", "Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index a019124d092..53928510e1d 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Andmebaasi host", "Finish setup" => "Lõpeta seadistamine", "Finishing …" => "Lõpetamine ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "See rakendus vajab toimimiseks JavaScripti. Palun luba JavaScript ning laadi see leht uuesti.", "%s is available. Get more information on how to update." => "%s on saadaval. Vaata lähemalt kuidas uuendada.", "Log out" => "Logi välja", "Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 301bb132827..de929650f02 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -30,6 +30,9 @@ $TRANSLATIONS = array( "Error" => "Error", "Password" => "Contrasigno", "Send" => "Invia", +"group" => "gruppo", +"Unshare" => "Leva compartir", +"can edit" => "pote modificar", "Delete" => "Deler", "Add" => "Adder", "Username" => "Nomine de usator", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 029ad4ab2ce..3c413010608 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Databaseserver", "Finish setup" => "Installatie afronden", "Finishing …" => "Afronden ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Deze applicatie heeft een werkend JavaScript nodig. activeer JavaScript en herlaad deze interface.", "%s is available. Get more information on how to update." => "%s is beschikbaar. Verkrijg meer informatie over het bijwerken.", "Log out" => "Afmelden", "Automatic logon rejected!" => "Automatische aanmelding geweigerd!", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 93a256bd7ff..711ebcebe29 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -1,6 +1,7 @@ "%s Współdzielone »%s« z tobą", +"Couldn't send mail to following users: %s " => "Nie można było wysłać wiadomości do następujących użytkowników: %s", "Turned on maintenance mode" => "Włączony tryb konserwacji", "Turned off maintenance mode" => "Wyłączony tryb konserwacji", "Updated database" => "Zaktualizuj bazę", @@ -10,6 +11,8 @@ $TRANSLATIONS = array( "No image or file provided" => "Brak obrazu lub pliku dostarczonego", "Unknown filetype" => "Nieznany typ pliku", "Invalid image" => "Nieprawidłowe zdjęcie", +"No temporary profile picture available, try again" => "Brak obrazka profilu tymczasowego, spróbuj ponownie", +"No crop data provided" => "Brak danych do przycięcia", "Sunday" => "Niedziela", "Monday" => "Poniedziałek", "Tuesday" => "Wtorek", @@ -46,13 +49,16 @@ $TRANSLATIONS = array( "Yes" => "Tak", "No" => "Nie", "Ok" => "OK", +"Error loading message template: {error}" => "Błąd podczas ładowania szablonu wiadomości: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("{count} konfliktów plików","{count} konfliktów plików","{count} konfliktów plików"), "One file conflict" => "Konflikt pliku", "Which files do you want to keep?" => "Które pliki chcesz zachować?", +"If you select both versions, the copied file will have a number added to its name." => "Jeśli wybierzesz obie wersje, skopiowany plik będzie miał dodany numerek w nazwie", "Cancel" => "Anuluj", "Continue" => "Kontynuuj ", "(all selected)" => "(wszystkie zaznaczone)", "({count} selected)" => "({count} zaznaczonych)", +"Error loading file exists template" => "Błąd podczas ładowania szablonu istniejącego pliku", "Shared" => "Udostępniono", "Share" => "Udostępnij", "Error" => "Błąd", @@ -61,6 +67,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Błąd przy zmianie uprawnień", "Shared with you and the group {group} by {owner}" => "Udostępnione tobie i grupie {group} przez {owner}", "Shared with you by {owner}" => "Udostępnione tobie przez {owner}", +"Share with user or group …" => "Współdziel z użytkownikiem lub grupą ...", "Share link" => "Udostępnij link", "Password protect" => "Zabezpiecz hasłem", "Password" => "Hasło", @@ -93,7 +100,9 @@ $TRANSLATIONS = array( "Delete" => "Usuń", "Add" => "Dodaj", "Edit tags" => "Edytuj tagi", +"Error loading dialog template: {error}" => "Błąd podczas ładowania szablonu dialogu: {error}", "No tags selected for deletion." => "Nie zaznaczono tagów do usunięcia.", +"Please reload the page." => "Proszę przeładować stronę", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem spoleczności ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud.", "%s password reset" => "%s reset hasła", @@ -119,8 +128,12 @@ $TRANSLATIONS = array( "Error deleting tag(s)" => "Błąd przy osuwaniu tag(ów)", "Error tagging" => "Błąd tagowania", "Error untagging" => "Błąd odtagowania", +"Error favoriting" => "Błąd podczas dodawania do ulubionch", +"Error unfavoriting" => "Błąd przy usuwaniu z ulubionych", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Witaj,\n\ntylko informuję, że %s współdzieli z Tobą %s.\nZobacz tutaj: %s\n\n", +"The share will expire on %s." => "Ten zasób wygaśnie %s", "Cheers!" => "Pozdrawiam!", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)", @@ -141,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Komputer bazy danych", "Finish setup" => "Zakończ konfigurowanie", "Finishing …" => "Kończę ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Ta aplikacja wymaga włączenia JavaScript do poprawnego działania. Proszę włączyć JavaScript i przeładować stronę.", "%s is available. Get more information on how to update." => "%s jest dostępna. Dowiedz się więcej na temat aktualizacji.", "Log out" => "Wyloguj", "Automatic logon rejected!" => "Automatyczne logowanie odrzucone!", @@ -153,7 +167,12 @@ $TRANSLATIONS = array( "Log in" => "Zaloguj", "Alternative Logins" => "Alternatywne loginy", "Hey there,

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

    " => "Cześć,

    Informuję cię że %s udostępnia ci »%s«.\n
    Zobacz!

    ", +"This ownCloud instance is currently in single user mode." => "Ta instalacja ownCloud działa obecnie w trybie pojedynczego użytkownika.", +"This means only administrators can use the instance." => "To oznacza, że tylko administratorzy mogą w tej chwili używać aplikacji.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Skontaktuj się z administratorem, jeśli ten komunikat pojawił się nieoczekiwanie lub wyświetla się ciągle.", "Thank you for your patience." => "Dziękuję za cierpliwość.", -"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." +"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać.", +"This ownCloud instance is currently being updated, which may take a while." => "Ta instalacja ownCloud jest w tej chwili aktualizowana, co może chwilę potrwać", +"Please reload this page after a short time to continue using ownCloud." => "Proszę przeładować tę stronę za chwilę, aby kontynuować pracę w ownCloud" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 69b431190a0..1d6429ddf2b 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -48,6 +48,7 @@ $TRANSLATIONS = array( "Ok" => "Ok", "Error loading message template: {error}" => "Erro ao carregar o template: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Which files do you want to keep?" => "Quais os ficheiros que pretende manter?", "Cancel" => "Cancelar", "Continue" => "Continuar", "(all selected)" => "(todos seleccionados)", @@ -60,6 +61,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Erro ao mudar permissões", "Shared with you and the group {group} by {owner}" => "Partilhado consigo e com o grupo {group} por {owner}", "Shared with you by {owner}" => "Partilhado consigo por {owner}", +"Share link" => "Partilhar o link", "Password protect" => "Proteger com palavra-passe", "Password" => "Password", "Allow Public Upload" => "Permitir Envios Públicos", @@ -73,6 +75,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Não é permitido partilhar de novo", "Shared in {item} with {user}" => "Partilhado em {item} com {user}", "Unshare" => "Deixar de partilhar", +"notify by email" => "Notificar por email", "can edit" => "pode editar", "access control" => "Controlo de acesso", "create" => "criar", @@ -98,6 +101,7 @@ $TRANSLATIONS = array( "Username" => "Nome de utilizador", "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?" => "Os seus ficheiros estão encriptados. Se não activou a chave de recuperação, não vai ser possível recuperar os seus dados no caso da sua password ser reinicializada. Se não tem a certeza do que precisa de fazer, por favor contacte o seu administrador antes de continuar. Tem a certeza que quer continuar?", "Yes, I really want to reset my password now" => "Sim, tenho a certeza que pretendo redefinir a minha palavra-passe agora.", +"Reset" => "Repor", "Your password was reset" => "A sua password foi reposta", "To login page" => "Para a página de entrada", "New password" => "Nova palavra-chave", @@ -109,6 +113,7 @@ $TRANSLATIONS = array( "Help" => "Ajuda", "Access forbidden" => "Acesso interdito", "Cloud not found" => "Cloud nao encontrada", +"The share will expire on %s." => "Esta partilha vai expirar em %s.", "Security Warning" => "Aviso de Segurança", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A sua versão do PHP é vulnerável ao ataque Byte Null (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Por favor atualize a sua versão PHP instalada para usar o %s com segurança.", @@ -133,10 +138,12 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Login automático rejeitado!", "If you did not change your password recently, your account may be compromised!" => "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sido comprometida!", "Please change your password to secure your account again." => "Por favor mude a sua palavra-passe para assegurar a sua conta de novo.", +"Please contact your administrator." => "Por favor contacte o administrador.", "Lost your password?" => "Esqueceu-se da sua password?", "remember" => "lembrar", "Log in" => "Entrar", "Alternative Logins" => "Contas de acesso alternativas", +"Thank you for your patience." => "Obrigado pela sua paciência.", "Updating ownCloud to version %s, this may take a while." => "A actualizar o ownCloud para a versão %s, esta operação pode demorar." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 158948bb400..e7bfc4dff90 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 20:42+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-12 21:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "" #: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "%s geteilt »%s« mit Ihnen" +msgstr "%s hat »%s« mit Ihnen geteilt" #: ajax/share.php:169 #, php-format @@ -156,59 +156,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "Heute" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "Gestern" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/es/core.po b/l10n/es/core.po index 548f665860c..d51e07b4b9e 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-11 21:40+0000\n" +"Last-Translator: juanman \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" @@ -160,59 +160,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Ajustes" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "hoy" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "ayer" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "el mes pasado" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "meses antes" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "el año pasado" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "años antes" @@ -698,7 +698,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Esta aplicación requiere que se habilite JavaScript para su correcta operación. Por favor habilite JavaScript y vuelva a cargar esta interfaz." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index bc98b619b15..ea06561788e 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 10:10+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,59 +150,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Seaded" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "täna" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "eile" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "aastat tagasi" @@ -688,7 +688,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "See rakendus vajab toimimiseks JavaScripti. Palun luba JavaScript ning laadi see leht uuesti." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 05af019f64f..e8e52f6d3dc 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 10:10+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -200,19 +200,19 @@ msgstr "Kustuta" msgid "add group" msgstr "lisa grupp" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Viga kasutaja loomisel" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Hoiatus: kasutaja \"{user}\" kodukataloog on juba olemas" @@ -287,14 +287,14 @@ msgstr "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "PHP versioon on aegunud" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3.8 või uuemale, kuna varasemad versioonid on teadaolevalt vigased. On võimalik, et see käesolev paigaldus ei toimi korrektselt." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index f377dd637af..3e5144889af 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 18:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Configurationes" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "" @@ -347,7 +347,7 @@ msgstr "" #: js/share.js:322 js/share.js:359 msgid "group" -msgstr "" +msgstr "gruppo" #: js/share.js:333 msgid "Resharing is not allowed" @@ -359,7 +359,7 @@ msgstr "" #: js/share.js:397 msgid "Unshare" -msgstr "" +msgstr "Leva compartir" #: js/share.js:405 msgid "notify by email" @@ -367,7 +367,7 @@ msgstr "" #: js/share.js:408 msgid "can edit" -msgstr "" +msgstr "pote modificar" #: js/share.js:410 msgid "access control" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 9aa30e42c3b..eaeb0ee6349 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 18:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -60,7 +60,7 @@ msgstr "" #: js/settings.js:67 msgid "Deletion failed" -msgstr "" +msgstr "Il falleva deler" #: js/settings.js:83 msgid "Take over settings from recent server configuration?" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index daf5d4ec217..5b253b0cd46 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-12 02:50+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" @@ -148,55 +148,55 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Setelan" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "hari ini" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "kemarin" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/files.po b/l10n/id/files.po index 3e5c2e0d19d..876f7423d22 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arifpedia , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-12 03:30+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,47 +34,47 @@ msgstr "Nama berkas tidak boleh kosong." #: ajax/newfile.php:62 msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Nama berkas tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda." #: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." -msgstr "" +msgstr "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda." #: ajax/newfile.php:81 msgid "Not a valid source" -msgstr "" +msgstr "Sumber tidak sah" #: ajax/newfile.php:94 #, php-format msgid "Error while downloading %s to %s" -msgstr "" +msgstr "Galat saat mengunduh %s ke %s" #: ajax/newfile.php:128 msgid "Error when creating the file" -msgstr "" +msgstr "Galat saat membuat berkas" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." -msgstr "" +msgstr "Nama folder tidak bolh kosong." #: ajax/newfolder.php:27 msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Nama folder tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda." #: ajax/newfolder.php:56 msgid "Error when creating the folder" -msgstr "" +msgstr "Galat saat membuat folder" #: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." -msgstr "" +msgstr "Tidak dapat mengatur folder unggah" #: ajax/upload.php:27 msgid "Invalid Token" -msgstr "" +msgstr "Token tidak sah" #: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" @@ -116,11 +117,11 @@ msgstr "Ruang penyimpanan tidak mencukupi" #: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." #: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Unggah gagal. Tidak menemukan berkas yang akan diunggah" #: ajax/upload.php:172 msgid "Invalid directory." @@ -132,7 +133,7 @@ msgstr "Berkas" #: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Tidak dapat mengunggah {filename} karena ini sebuah direktori atau memiliki ukuran 0 byte" #: js/file-upload.js:239 msgid "Not enough space available" @@ -144,7 +145,7 @@ msgstr "Pengunggahan dibatalkan." #: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Tidak mendapatkan hasil dari server." #: js/file-upload.js:436 msgid "" @@ -153,11 +154,11 @@ msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses #: js/file-upload.js:523 msgid "URL cannot be empty" -msgstr "" +msgstr "URL tidak boleh kosong" #: js/file-upload.js:527 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" +msgstr "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan" #: js/file-upload.js:529 js/filelist.js:379 msgid "{new_name} already exists" @@ -165,11 +166,11 @@ msgstr "{new_name} sudah ada" #: js/file-upload.js:595 msgid "Could not create file" -msgstr "" +msgstr "Tidak dapat membuat berkas" #: js/file-upload.js:611 msgid "Could not create folder" -msgstr "" +msgstr "Tidak dapat membuat folder" #: js/fileactions.js:125 msgid "Share" @@ -189,7 +190,7 @@ msgstr "Menunggu" #: js/filelist.js:405 msgid "Could not rename file" -msgstr "" +msgstr "Tidak dapat mengubah nama berkas" #: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" @@ -201,26 +202,26 @@ msgstr "urungkan" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "Galat saat menghapus berkas." #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" +msgstr[0] "%n folder" #: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" +msgstr[0] "%n berkas" #: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} dan {files}" #: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" +msgstr[0] "Mengunggah %n berkas" #: js/files.js:72 msgid "'.' is an invalid file name." @@ -244,20 +245,20 @@ msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi" #: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi." #: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "Enskripi telah dinonaktifkan tetapi berkas anda tetap dienskripsi. Silakan menuju ke pengaturan pribadi untuk deskrip berkas anda." #: js/files.js:349 msgid "" @@ -267,7 +268,7 @@ msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jik #: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Galat saat memindahkan berkas" #: js/files.js:558 js/files.js:596 msgid "Error" @@ -287,12 +288,12 @@ msgstr "Dimodifikasi" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan." #: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s tidak dapat diubah nama" #: lib/helper.php:11 templates/index.php:16 msgid "Upload" @@ -336,7 +337,7 @@ msgstr "Baru" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Berkas teks baru" #: templates/index.php:8 msgid "Text file" @@ -364,7 +365,7 @@ msgstr "Batal pengunggahan" #: templates/index.php:40 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "Anda tidak memiliki akses untuk mengunggah atau membuat berkas disini" #: templates/index.php:45 msgid "Nothing in here. Upload something!" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 7cc75c5495f..5cde8bc5e41 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arifpedia , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 07:40+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +23,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "Tidak dapat mengembalikan: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Versi" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Gagal mengembalikan {file} ke revisi {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Versi lebih..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "Tidak ada versi lain yang tersedia" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Pulihkan" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 38e74d204c1..0ebbcac08df 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-12 20:30+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -151,59 +151,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Instellingen" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "vandaag" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "gisteren" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "vorige maand" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "vorig jaar" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "jaar geleden" @@ -689,7 +689,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Deze applicatie heeft een werkend JavaScript nodig. activeer JavaScript en herlaad deze interface." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 8e9d6e0c339..9a6174900d5 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,14 +4,15 @@ # # Translators: # Cyryl Sochacki , 2013 +# bobie , 2013 # adbrand , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 14:20+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +28,7 @@ msgstr "%s Współdzielone »%s« z tobą" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Nie można było wysłać wiadomości do następujących użytkowników: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -68,11 +69,11 @@ msgstr "Nieprawidłowe zdjęcie" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Brak obrazka profilu tymczasowego, spróbuj ponownie" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Brak danych do przycięcia" #: js/config.php:32 msgid "Sunday" @@ -150,63 +151,63 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "dziś" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "lat temu" @@ -232,7 +233,7 @@ msgstr "OK" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Błąd podczas ładowania szablonu wiadomości: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" @@ -253,7 +254,7 @@ msgstr "Które pliki chcesz zachować?" msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Jeśli wybierzesz obie wersje, skopiowany plik będzie miał dodany numerek w nazwie" #: js/oc-dialogs.js:376 msgid "Cancel" @@ -273,7 +274,7 @@ msgstr "({count} zaznaczonych)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Błąd podczas ładowania szablonu istniejącego pliku" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -310,7 +311,7 @@ msgstr "Udostępnione tobie przez {owner}" #: js/share.js:213 msgid "Share with user or group …" -msgstr "" +msgstr "Współdziel z użytkownikiem lub grupą ..." #: js/share.js:219 msgid "Share link" @@ -442,7 +443,7 @@ msgstr "Edytuj tagi" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Błąd podczas ładowania szablonu dialogu: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." @@ -450,7 +451,7 @@ msgstr "Nie zaznaczono tagów do usunięcia." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Proszę przeładować stronę" #: js/update.js:17 msgid "" @@ -566,11 +567,11 @@ msgstr "Błąd odtagowania" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Błąd podczas dodawania do ulubionch" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Błąd przy usuwaniu z ulubionych" #: templates/403.php:12 msgid "Access forbidden" @@ -588,12 +589,12 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Witaj,\n\ntylko informuję, że %s współdzieli z Tobą %s.\nZobacz tutaj: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Ten zasób wygaśnie %s" #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" @@ -693,7 +694,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Ta aplikacja wymaga włączenia JavaScript do poprawnego działania. Proszę włączyć JavaScript i przeładować stronę." #: templates/layout.user.php:44 #, php-format @@ -751,17 +752,17 @@ msgstr "Cześć,

    Informuję cię że %s udostępnia ci »%s«.\n
    , 2013 +# I Robot , 2013 +# bobie , 2013 # Mariusz Fik , 2013 # Michal Plichta , 2013 # adbrand , 2013 @@ -11,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 14:46+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -205,7 +207,7 @@ msgstr "cofnij" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "Błąd podczas usuwania pliku" #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" @@ -223,7 +225,7 @@ msgstr[2] "%n plików" #: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "{katalogi} and {pliki}" +msgstr "{dirs} and {files}" #: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" @@ -346,7 +348,7 @@ msgstr "Nowy" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Nowy plik tekstowy" #: templates/index.php:8 msgid "Text file" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 1e908a2bbfe..268225af9be 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki , 2013 +# bobie , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 14:46+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,13 +93,13 @@ msgid "" " the encryption app has been disabled." msgstr "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone." -#: hooks/hooks.php:273 +#: hooks/hooks.php:278 msgid "Following users are not set up for encryption:" msgstr "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Rozpoczęto szyfrowanie... To może chwilę potrwać. Proszę czekać." #: js/settings-admin.js:13 msgid "Saving..." diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index fcbe3a8a274..8d3e29a72ba 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki , 2013 +# bobie , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 15:00+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,15 +55,15 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Nieznany typ pliku" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Błędne zdjęcie" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Kontrolowane serwisy" @@ -71,27 +72,27 @@ msgstr "Kontrolowane serwisy" msgid "cannot open \"%s\"" msgstr "Nie można otworzyć \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Wróć do plików" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Proszę ściągać pliki osobno w mniejszych paczkach lub poprosić administratora." #: private/installer.php:63 msgid "No source specified when installing app" @@ -173,17 +174,17 @@ msgstr "Połączenie tekstowe" msgid "Images" msgstr "Obrazy" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s wpisz nazwę użytkownika do bazy" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s wpisz nazwę bazy." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s nie można używać kropki w nazwie bazy danych" @@ -204,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL: Nazwa użytkownika i/lub hasło jest niepoprawne" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "Błąd DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +253,7 @@ msgstr "Nie można ustanowić połączenia z bazą Oracle" msgid "Oracle username and/or password not valid" msgstr "Oracle: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 1728ce1852a..435a5646c3e 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-12 15:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -154,59 +154,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Configurações" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "hoje" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "ontem" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "ultímo mês" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "meses atrás" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "ano passado" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "anos atrás" @@ -246,7 +246,7 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Quais os ficheiros que pretende manter?" #: js/oc-dialogs.js:368 msgid "" @@ -313,7 +313,7 @@ msgstr "" #: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "Partilhar o link" #: js/share.js:222 msgid "Password protect" @@ -369,7 +369,7 @@ msgstr "Deixar de partilhar" #: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "Notificar por email" #: js/share.js:408 msgid "can edit" @@ -505,7 +505,7 @@ msgstr "Sim, tenho a certeza que pretendo redefinir a minha palavra-passe agora. #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Repor" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -592,7 +592,7 @@ msgstr "" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Esta partilha vai expirar em %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" @@ -723,7 +723,7 @@ msgstr "" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Por favor contacte o administrador." #: templates/login.php:44 msgid "Lost your password?" @@ -764,7 +764,7 @@ msgstr "" #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Obrigado pela sua paciência." #: templates/update.admin.php:3 #, php-format diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 8a5015a2498..d92800eab37 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-12 10:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -204,19 +204,19 @@ msgstr "Eliminar" msgid "add group" msgstr "Adicionar grupo" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atenção: a pasta pessoal do utilizador \"{user}\" já existe" @@ -291,14 +291,14 @@ msgstr "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É forteme #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "A sua versão do PHP está ultrapassada" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "A sua versão do PHP está ultrapassada. Recomendamos que actualize para a versão 5.3.8 ou mais recente, devido às versões anteriores conterem problemas. É também possível que esta instalação não esteja a funcionar correctamente." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 83e55191ffa..d951932bfe9 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -149,59 +149,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index a6f6fffecdc..ea63cca03d9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\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 cdb8b5073bc..20c980928a7 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\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 a69d8a420ce..5d210b83655 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\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 2c5c378ed16..17c8e04e0ab 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\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 105497b2ec4..88425c85c87 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\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 0b9ab043768..767a83f45b9 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\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 fa9dee54d41..7c88cd9afad 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 85dbcd91981..2b04e173cda 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\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 5c2e6ec1aba..5c4dc2c86e8 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\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 ffbe6b611f1..db1cf7c6d7c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\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 c850fe57c55..f1a6b5288bc 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 30dcc1af5ee..692896f263a 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 19:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index f5b5279a0ad..f8e734d644e 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 19:00+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 82d4f753a81..e520509920a 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", "Back to Files" => "Wróć do plików", "Selected files too large to generate zip file." => "Wybrane pliki są zbyt duże, aby wygenerować plik zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Proszę ściągać pliki osobno w mniejszych paczkach lub poprosić administratora.", "No source specified when installing app" => "Nie określono źródła podczas instalacji aplikacji", "No href specified when installing app from http" => "Nie określono linku skąd aplikacja ma być zainstalowana", "No path specified when installing app from local file" => "Nie określono lokalnego pliku z którego miała być instalowana aplikacja", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index ae3afe4070b..f5436525828 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Palun kontrolli uuesti paigaldusjuhendeid.", "Module 'fileinfo' missing" => "Moodul 'fileinfo' puudub", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", +"Your PHP version is outdated" => "PHP versioon on aegunud", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3.8 või uuemale, kuna varasemad versioonid on teadaolevalt vigased. On võimalik, et see käesolev paigaldus ei toimi korrektselt.", "Locale not working" => "Lokalisatsioon ei toimi", "System locale can not be set to a one which supports UTF-8." => "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.", "This means that there might be problems with certain characters in file names." => "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index fe79c23cd25..89bed085972 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Por favor verifique oGuia de instalação.", "Module 'fileinfo' missing" => "Falta o módulo 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", +"Your PHP version is outdated" => "A sua versão do PHP está ultrapassada", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A sua versão do PHP está ultrapassada. Recomendamos que actualize para a versão 5.3.8 ou mais recente, devido às versões anteriores conterem problemas. É também possível que esta instalação não esteja a funcionar correctamente.", "Locale not working" => "Internacionalização não está a funcionar", "System locale can not be set to a one which supports UTF-8." => "Não é possível pôr as definições de sistema compatíveis com UTF-8.", "This means that there might be problems with certain characters in file names." => "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.", -- cgit v1.2.3 From 59f02066b6466e982a68b6e1f35578cc79d21285 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 16 Dec 2013 14:28:56 +0100 Subject: add default parameter for AllConfig->get*Value() --- lib/private/allconfig.php | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index 72aabf60793..06ecbc8a072 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -25,11 +25,13 @@ class AllConfig implements \OCP\IConfig { /** * Looks up a system wide defined value + * * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getSystemValue($key) { - return \OCP\Config::getSystemValue($key, ''); + public function getSystemValue($key, $default = '') { + return \OCP\Config::getSystemValue($key, $default); } @@ -45,12 +47,14 @@ class AllConfig implements \OCP\IConfig { /** * Looks up an app wide defined value + * * @param string $appName the appName that we stored the value under * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getAppValue($appName, $key) { - return \OCP\Config::getAppValue($appName, $key, ''); + public function getAppValue($appName, $key, $default = '') { + return \OCP\Config::getAppValue($appName, $key, $default); } @@ -70,8 +74,10 @@ class AllConfig implements \OCP\IConfig { * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we stored the value under * @param string $key the key under which the value is being stored + * @param string $default the default value to be returned if the value isn't set + * @return string */ - public function getUserValue($userId, $appName, $key){ - return \OCP\Config::getUserValue($userId, $appName, $key); + public function getUserValue($userId, $appName, $key, $default = null){ + return \OCP\Config::getUserValue($userId, $appName, $key, $default); } } -- cgit v1.2.3 From e2efad6ae7c77f9bd50e50e1ba5db27d1d52434f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 16 Dec 2013 14:33:03 +0100 Subject: Also add default to the \OCP\IConfig interface --- lib/private/allconfig.php | 8 ++++++-- lib/public/iconfig.php | 15 ++++++++++++--- 2 files changed, 18 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index 06ecbc8a072..a4aa69d43fb 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -4,7 +4,7 @@ * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. - * + * */ namespace OC; @@ -15,6 +15,7 @@ namespace OC; class AllConfig implements \OCP\IConfig { /** * Sets a new system wide value + * * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored * @todo need a use case for this @@ -37,6 +38,7 @@ class AllConfig implements \OCP\IConfig { /** * Writes a new app wide value + * * @param string $appName the appName that we want to store the value under * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored @@ -60,6 +62,7 @@ class AllConfig implements \OCP\IConfig { /** * Set a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we want to store the value under * @param string $key the key under which the value is being stored @@ -71,13 +74,14 @@ class AllConfig implements \OCP\IConfig { /** * Shortcut for getting a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we stored the value under * @param string $key the key under which the value is being stored * @param string $default the default value to be returned if the value isn't set * @return string */ - public function getUserValue($userId, $appName, $key, $default = null){ + public function getUserValue($userId, $appName, $key, $default = '') { return \OCP\Config::getUserValue($userId, $appName, $key, $default); } } diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php index da6b6c54843..1d0f8e0015c 100644 --- a/lib/public/iconfig.php +++ b/lib/public/iconfig.php @@ -36,6 +36,7 @@ namespace OCP; interface IConfig { /** * Sets a new system wide value + * * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored * @todo need a use case for this @@ -44,14 +45,17 @@ interface IConfig { /** * Looks up a system wide defined value + * * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getSystemValue($key); + public function getSystemValue($key, $default = ''); /** * Writes a new app wide value + * * @param string $appName the appName that we want to store the value under * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored @@ -60,15 +64,18 @@ interface IConfig { /** * Looks up an app wide defined value + * * @param string $appName the appName that we stored the value under * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getAppValue($appName, $key); + public function getAppValue($appName, $key, $default = ''); /** * Set a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we want to store the value under * @param string $key the key under which the value is being stored @@ -78,9 +85,11 @@ interface IConfig { /** * Shortcut for getting a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we stored the value under * @param string $key the key under which the value is being stored + * @param string $default the default value to be returned if the value isn't set */ - public function getUserValue($userId, $appName, $key); + public function getUserValue($userId, $appName, $key, $default = ''); } -- cgit v1.2.3 From 2a1d6d310628fbd22b1972442b19ad98d8ff7ad1 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 16 Dec 2013 15:04:02 +0100 Subject: Do not use L10n when logging exceptions In some specific situations, the L10N bundle isn't loadable yet (for example when there is an issue with the app_config table). In such case, we still want to be able to log the real exception. This fixes errors that say "OC_L10N_String::__toString must not throw exceptions" --- lib/private/template.php | 3 +-- lib/public/util.php | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/private/template.php b/lib/private/template.php index 9b2c1211e61..b2c3a20f281 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -292,9 +292,8 @@ class OC_Template extends \OC\Template\Base { if (!empty($hint)) { $hint = '
    '.$hint.'
    '; } - $l = OC_L10N::get('lib'); while (method_exists($exception, 'previous') && $exception = $exception->previous()) { - $error_msg .= '
    '.$l->t('Caused by:').' '; + $error_msg .= '
    Caused by:' . ' '; if ($exception->getCode()) { $error_msg .= '['.$exception->getCode().'] '; } diff --git a/lib/public/util.php b/lib/public/util.php index 1d76fd1e1f7..8e85f9afc3f 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -103,9 +103,8 @@ class Util { } // include cause - $l = \OC_L10N::get('lib'); while (method_exists($ex, 'getPrevious') && $ex = $ex->getPrevious()) { - $message .= ' - '.$l->t('Caused by:').' '; + $message .= ' - Caused by:' . ' '; $message .= $ex->getMessage(); if ($ex->getCode()) { $message .= '[' . $ex->getCode() . '] '; -- cgit v1.2.3 From a3fbad43c176e89261bbedcefb261168255df6d1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 16 Dec 2013 17:07:22 +0100 Subject: Use DEBUG instead of ERROR when favourites not found. Fix #6419 --- lib/private/tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/tags.php b/lib/private/tags.php index 9fdb35a7d6e..fe7de1073a0 100644 --- a/lib/private/tags.php +++ b/lib/private/tags.php @@ -480,7 +480,7 @@ class Tags implements \OCP\ITags { return $this->getIdsForTag(self::TAG_FAVORITE); } catch(\Exception $e) { \OCP\Util::writeLog('core', __METHOD__.', exception: ' . $e->getMessage(), - \OCP\Util::ERROR); + \OCP\Util::DEBUG); return array(); } } -- cgit v1.2.3 From dfeb04a574a5d2f3c4288f8195e6926ac9bca4cf Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 17 Dec 2013 02:20:00 +0100 Subject: Do not use xcache variable cache if cache size is 0. This is possible because it is possible to only use xcache as an opcode cache but not a variable cache. --- lib/private/memcache/xcache.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/private/memcache/xcache.php b/lib/private/memcache/xcache.php index 33de30562f9..4485f905207 100644 --- a/lib/private/memcache/xcache.php +++ b/lib/private/memcache/xcache.php @@ -44,11 +44,15 @@ class XCache extends Cache { static public function isAvailable(){ if (!extension_loaded('xcache')) { return false; - } elseif (\OC::$CLI) { + } + if (\OC::$CLI) { return false; - }else{ - return true; } + $var_size = (int) ini_get('xcache.var_size'); + if (!$var_size) { + return false; + } + return true; } } -- cgit v1.2.3 From a99dd3183cf0ea439cca4cac5471d7884193c09c Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 17 Dec 2013 06:46:52 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/es_CL.php | 7 + apps/files/l10n/hu_HU.php | 2 + apps/files_encryption/l10n/hu_HU.php | 3 +- apps/user_ldap/l10n/el.php | 1 + apps/user_ldap/l10n/es_CL.php | 6 + core/l10n/es_CL.php | 9 + core/l10n/hu_HU.php | 5 + core/l10n/sl.php | 1 + l10n/ach/lib.po | 50 ++- l10n/ady/lib.po | 50 ++- l10n/af/lib.po | 50 ++- l10n/af_ZA/lib.po | 50 ++- l10n/ar/lib.po | 50 ++- l10n/az/lib.po | 8 +- l10n/be/lib.po | 50 ++- l10n/bg_BG/lib.po | 50 ++- l10n/bn_BD/lib.po | 50 ++- l10n/bs/lib.po | 50 ++- l10n/ca/lib.po | 46 +-- l10n/cs_CZ/lib.po | 46 +-- l10n/cy_GB/lib.po | 50 ++- l10n/da/lib.po | 50 ++- l10n/de/lib.po | 10 +- l10n/de_AT/lib.po | 50 ++- l10n/de_CH/lib.po | 52 ++- l10n/de_DE/lib.po | 54 ++- l10n/el/lib.po | 50 ++- l10n/el/user_ldap.po | 39 +- l10n/en@pirate/lib.po | 50 ++- l10n/en_GB/lib.po | 52 ++- l10n/eo/lib.po | 50 ++- l10n/es/lib.po | 46 +-- l10n/es_AR/lib.po | 50 ++- l10n/es_CL/core.po | 775 +++++++++++++++++++++++++++++++++++ l10n/es_CL/files.po | 404 ++++++++++++++++++ l10n/es_CL/files_encryption.po | 201 +++++++++ l10n/es_CL/files_external.po | 123 ++++++ l10n/es_CL/files_sharing.po | 84 ++++ l10n/es_CL/files_trashbin.po | 60 +++ l10n/es_CL/files_versions.po | 43 ++ l10n/es_CL/lib.po | 333 +++++++++++++++ l10n/es_CL/settings.po | 668 ++++++++++++++++++++++++++++++ l10n/es_CL/user_ldap.po | 513 +++++++++++++++++++++++ l10n/es_CL/user_webdavauth.po | 33 ++ l10n/es_MX/lib.po | 50 ++- l10n/et_EE/lib.po | 52 ++- l10n/eu/lib.po | 10 +- l10n/fa/lib.po | 50 ++- l10n/fi_FI/lib.po | 50 ++- l10n/fr/lib.po | 50 ++- l10n/fr_CA/lib.po | 44 +- l10n/gl/lib.po | 52 ++- l10n/he/lib.po | 50 ++- l10n/hi/lib.po | 50 ++- l10n/hr/lib.po | 50 ++- l10n/hu_HU/core.po | 40 +- l10n/hu_HU/files.po | 11 +- l10n/hu_HU/files_encryption.po | 6 +- l10n/hu_HU/lib.po | 52 ++- l10n/hu_HU/settings.po | 22 +- l10n/hy/lib.po | 50 ++- l10n/ia/lib.po | 50 ++- l10n/id/lib.po | 50 ++- l10n/is/lib.po | 50 ++- l10n/it/lib.po | 52 ++- l10n/ja_JP/lib.po | 46 +-- l10n/ka/lib.po | 50 ++- l10n/ka_GE/lib.po | 50 ++- l10n/km/lib.po | 50 ++- l10n/kn/lib.po | 50 ++- l10n/ko/lib.po | 44 +- l10n/ku_IQ/lib.po | 50 ++- l10n/lb/lib.po | 50 ++- l10n/lt_LT/lib.po | 46 +-- l10n/lv/lib.po | 50 ++- l10n/mk/lib.po | 50 ++- l10n/ml_IN/lib.po | 50 ++- l10n/ms_MY/lib.po | 50 ++- l10n/my_MM/lib.po | 50 ++- l10n/nb_NO/lib.po | 50 ++- l10n/nds/lib.po | 50 ++- l10n/ne/lib.po | 50 ++- l10n/nl/lib.po | 46 +-- l10n/nn_NO/lib.po | 50 ++- l10n/nqo/lib.po | 50 ++- l10n/oc/lib.po | 50 ++- l10n/pa/lib.po | 50 ++- l10n/pl/lib.po | 10 +- l10n/pt_BR/lib.po | 52 ++- l10n/pt_PT/lib.po | 20 +- l10n/ro/lib.po | 50 ++- l10n/ru/lib.po | 52 ++- l10n/ru_RU/lib.po | 50 ++- l10n/si_LK/lib.po | 50 ++- l10n/sk/lib.po | 50 ++- l10n/sk_SK/lib.po | 46 +-- l10n/sk_SK/settings.po | 6 +- l10n/sl/core.po | 32 +- l10n/sl/lib.po | 46 +-- l10n/sq/lib.po | 50 ++- l10n/sr/lib.po | 50 ++- l10n/sr@latin/lib.po | 50 ++- l10n/sv/lib.po | 50 ++- l10n/sw_KE/lib.po | 50 ++- l10n/ta_LK/lib.po | 50 ++- l10n/te/lib.po | 50 ++- 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 | 4 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 6 +- l10n/templates/private.pot | 6 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/lib.po | 50 ++- l10n/tr/lib.po | 46 +-- l10n/tr/settings.po | 10 +- l10n/tzm/lib.po | 50 ++- l10n/ug/lib.po | 50 ++- l10n/uk/lib.po | 18 +- l10n/ur_PK/lib.po | 50 ++- l10n/uz/lib.po | 50 ++- l10n/vi/lib.po | 50 ++- l10n/zh_CN/lib.po | 50 ++- l10n/zh_HK/lib.po | 50 ++- l10n/zh_TW/lib.po | 50 ++- lib/l10n/ca.php | 3 +- lib/l10n/cs_CZ.php | 3 +- lib/l10n/da.php | 3 +- lib/l10n/de.php | 3 +- lib/l10n/de_CH.php | 3 +- lib/l10n/de_DE.php | 3 +- lib/l10n/el.php | 3 +- lib/l10n/en_GB.php | 3 +- lib/l10n/es.php | 3 +- lib/l10n/es_AR.php | 3 +- lib/l10n/es_CL.php | 8 + lib/l10n/et_EE.php | 3 +- lib/l10n/eu.php | 3 +- lib/l10n/fi_FI.php | 3 +- lib/l10n/fr.php | 3 +- lib/l10n/gl.php | 3 +- lib/l10n/hu_HU.php | 4 +- lib/l10n/it.php | 3 +- lib/l10n/ja_JP.php | 3 +- lib/l10n/ko.php | 3 +- lib/l10n/lt_LT.php | 3 +- lib/l10n/lv.php | 3 +- lib/l10n/nl.php | 3 +- lib/l10n/pl.php | 3 +- lib/l10n/pt_BR.php | 3 +- lib/l10n/pt_PT.php | 3 +- lib/l10n/ru.php | 3 +- lib/l10n/sk_SK.php | 3 +- lib/l10n/sl.php | 3 +- lib/l10n/sv.php | 3 +- lib/l10n/tr.php | 3 +- lib/l10n/zh_TW.php | 3 +- settings/l10n/hu_HU.php | 8 + settings/l10n/sk_SK.php | 1 + settings/l10n/tr.php | 6 +- 165 files changed, 5386 insertions(+), 2500 deletions(-) create mode 100644 apps/files/l10n/es_CL.php create mode 100644 apps/user_ldap/l10n/es_CL.php create mode 100644 core/l10n/es_CL.php create mode 100644 l10n/es_CL/core.po create mode 100644 l10n/es_CL/files.po create mode 100644 l10n/es_CL/files_encryption.po create mode 100644 l10n/es_CL/files_external.po create mode 100644 l10n/es_CL/files_sharing.po create mode 100644 l10n/es_CL/files_trashbin.po create mode 100644 l10n/es_CL/files_versions.po create mode 100644 l10n/es_CL/lib.po create mode 100644 l10n/es_CL/settings.po create mode 100644 l10n/es_CL/user_ldap.po create mode 100644 l10n/es_CL/user_webdavauth.po create mode 100644 lib/l10n/es_CL.php (limited to 'lib') diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php new file mode 100644 index 00000000000..0157af093e9 --- /dev/null +++ b/apps/files/l10n/es_CL.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index f2150f05994..afb357dfe22 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Az állomány nem nevezhető át", "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "undo" => "visszavonás", +"Error deleting file." => "Hiba a file törlése közben.", "_%n folder_::_%n folders_" => array("%n mappa","%n mappa"), "_%n file_::_%n files_" => array("%n állomány","%n állomány"), "{dirs} and {files}" => "{dirs} és {files}", @@ -72,6 +73,7 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "ZIP-fájlok maximális kiindulási mérete", "Save" => "Mentés", "New" => "Új", +"New text file" => "Új szöveges file", "Text file" => "Szövegfájl", "New folder" => "Új mappa", "Folder" => "Mappa", diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index a8e5a009539..58313494684 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -33,6 +33,7 @@ $TRANSLATIONS = array( "Current log-in password" => "Jelenlegi bejelentkezési jelszó", "Update Private Key Password" => "Privát kulcs jelszó frissítése", "Enable password recovery:" => "Jelszó-visszaállítás bekapcsolása", -"File recovery settings updated" => "File helyreállítási beállításai frissültek" +"File recovery settings updated" => "File helyreállítási beállításai frissültek", +"Could not update file recovery" => "A file helyreállítás nem frissíthető" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 0e32abbf9c3..a1f1d1a45fb 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "Success" => "Επιτυχία", "Error" => "Σφάλμα", "Select groups" => "Επιλέξτε ομάδες", +"Select attributes" => "Επιλογή χαρακτηριστικών", "Connection test succeeded" => "Επιτυχημένη δοκιμαστική σύνδεση", "Connection test failed" => "Αποτυχημένη δοκιμαστική σύνδεσης.", "Do you really want to delete the current Server Configuration?" => "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;", diff --git a/apps/user_ldap/l10n/es_CL.php b/apps/user_ldap/l10n/es_CL.php new file mode 100644 index 00000000000..3a1e002311c --- /dev/null +++ b/apps/user_ldap/l10n/es_CL.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_CL.php b/core/l10n/es_CL.php new file mode 100644 index 00000000000..ffcdde48d47 --- /dev/null +++ b/core/l10n/es_CL.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 991ae3a838d..b0b5588dfc8 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -102,6 +102,7 @@ $TRANSLATIONS = array( "Edit tags" => "Címkék szerkesztése", "Error loading dialog template: {error}" => "Hiba a párbeszédpanel-sablon betöltésekor: {error}", "No tags selected for deletion." => "Nincs törlésre kijelölt címke.", +"Please reload the page." => "Kérlek tölts be újra az oldalt", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az ownCloud közösséget.", "The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.", "%s password reset" => "%s jelszó visszaállítás", @@ -132,6 +133,7 @@ $TRANSLATIONS = array( "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\n" => "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: %s.\\n\nItt tudod megnézni: %s\\n\n\\n", +"The share will expire on %s." => "A megosztás lejár ekkor %s", "Cheers!" => "Üdv.", "Security Warning" => "Biztonsági figyelmeztetés", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)", @@ -152,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Adatbázis szerver", "Finish setup" => "A beállítások befejezése", "Finishing …" => "Befejezés ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Az alkalmazás megfelelő működéséhez szükség van JavaScript-re. Engedélyezd a JavaScript-et és töltsd újra az interfészt.", "%s is available. Get more information on how to update." => "%s rendelkezésre áll. További információ a frissítéshez.", "Log out" => "Kilépés", "Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!", @@ -164,6 +167,8 @@ $TRANSLATIONS = array( "Log in" => "Bejelentkezés", "Alternative Logins" => "Alternatív bejelentkezés", "Hey there,

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

    " => "Szia!

    Értesítünk, hogy %s megosztotta veled a következőt: »%s«.
    Ide kattintva tudod megnézni

    ", +"This ownCloud instance is currently in single user mode." => "Az Owncloud frissítés elezdődött egy felhasználós módban.", +"This means only administrators can use the instance." => "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt", "Contact your system administrator if this message persists or appeared unexpectedly." => "Ha ezt az üzenetet már többször látod akkor keresd meg a rendszer adminját.", "Thank you for your patience." => "Köszönjük a türelmét.", "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/sl.php b/core/l10n/sl.php index 657bc60c18e..933ccf55564 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Gostitelj podatkovne zbirke", "Finish setup" => "Končaj nastavitev", "Finishing …" => "Poteka zaključevanje opravila ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Program zahteva omogočeno skriptno podporo. Za pravilno delovanje je treba omogočiti JavaScript in nato ponovno osvežiti vmesnik.", "%s is available. Get more information on how to update." => "%s je na voljo. Pridobite več podrobnosti za posodobitev.", "Log out" => "Odjava", "Automatic logon rejected!" => "Samodejno prijavljanje je zavrnjeno!", diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index 05450aabac5..188f480eab5 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index a0cec5ac607..6043ba35ec8 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/af/lib.po b/l10n/af/lib.po index 9cba7b7d1fb..8954006a8a7 100644 --- a/l10n/af/lib.po +++ b/l10n/af/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 1196cc344d3..1bc19b36bd7 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "webdienste onder jou beheer" @@ -70,23 +70,23 @@ msgstr "webdienste onder jou beheer" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 71b1097504f..671e91dd765 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "المدير" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" @@ -70,23 +70,23 @@ msgstr "خدمات الشبكة تحت سيطرتك" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "تحميل ملفات ZIP متوقف" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "العودة الى الملفات" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "معلومات إضافية" msgid "Images" msgstr "صور" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ادخل اسم المستخدم الخاص بقاعدة البيانات." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ادخل اسم فاعدة البيانات" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "خطأ في قواعد البيانات : \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s" @@ -347,7 +347,3 @@ msgstr "السنةالماضية" #: private/template/functions.php:142 msgid "years ago" msgstr "سنة مضت" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 635b44ff208..525d68a4713 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 7dde7246efd..f209cb8230b 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -339,7 +339,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 68949be3cd9..b7c77537d47 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Админ" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" @@ -71,23 +71,23 @@ msgstr "уеб услуги под Ваш контрол" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Изтеглянето като ZIP е изключено." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Файловете трябва да се изтеглят един по един." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад към файловете" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Текст" msgid "Images" msgstr "Снимки" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s въведете потребителско име за базата с данни." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s въведете име на базата с данни." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s, не можете да ползвате точки в името на базата от данни" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Невалидно MySQL потребителско име и/или парола" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Грешка в базата от данни: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Oracle връзка не можа да се осъществи" msgid "Oracle username and/or password not valid" msgstr "Невалидно Oracle потребителско име и/или парола" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s" @@ -332,7 +332,3 @@ msgstr "последната година" #: private/template/functions.php:142 msgid "years ago" msgstr "последните години" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 934fde2d478..f171fe1a670 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "প্রশাসন" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" @@ -70,23 +70,23 @@ msgstr "ওয়েব সার্ভিস আপনার হাতের ম msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ফাইলে ফিরে চল" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "টেক্সট" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "গত বছর" #: private/template/functions.php:142 msgid "years ago" msgstr "বছর পূর্বে" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 52547ce4d3a..447589d9b0b 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 692ffe5f992..72c2416c9e7 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 11:30+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -71,23 +71,23 @@ msgstr "controleu els vostres serveis web" msgid "cannot open \"%s\"" msgstr "no es pot obrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Torna a Fitxers" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Text" msgid "Images" msgstr "Imatges" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s escriviu el nom d'usuari de la base de dades." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s escriviu el nom de la base de dades." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s no podeu usar punts en el nom de la base de dades" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "No s'ha pogut establir la connexió Oracle" msgid "Oracle username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" @@ -332,7 +332,3 @@ msgstr "l'any passat" #: private/template/functions.php:142 msgid "years ago" msgstr "anys enrere" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Provocat per:" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index df4aeb32e12..f9b48b0f6d3 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-27 18:40+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -74,23 +74,23 @@ msgstr "webové služby pod Vaší kontrolou" msgid "cannot open \"%s\"" msgstr "nelze otevřít \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Stahování v ZIPu je vypnuto." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zpět k souborům" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "Text" msgid "Images" msgstr "Obrázky" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "Zadejte uživatelské jméno %s databáze." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadejte název databáze pro %s databáze." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "V názvu databáze %s nesmíte používat tečky." @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "Uživatelské jméno či heslo MySQL není platné" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "Chyba databáze: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Spojení s Oracle nemohlo být navázáno" msgid "Oracle username and/or password not valid" msgstr "Uživatelské jméno či heslo Oracle není platné" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s" @@ -339,7 +339,3 @@ msgstr "minulý rok" #: private/template/functions.php:142 msgid "years ago" msgstr "před lety" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Příčina:" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index f75d0d19a5e..b597ba09a0d 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Gweinyddu" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" @@ -70,23 +70,23 @@ msgstr "gwasanaethau gwe a reolir gennych" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Mae llwytho ZIP wedi ei ddiffodd." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Nôl i Ffeiliau" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Testun" msgid "Images" msgstr "Delweddau" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s rhowch enw defnyddiwr y gronfa ddata." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s rhowch enw'r gronfa ddata." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "Enw a/neu gyfrinair MySQL annilys" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "Gwall DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "Enw a/neu gyfrinair Oracle annilys" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" @@ -339,7 +339,3 @@ msgstr "y llynedd" #: private/template/functions.php:142 msgid "years ago" msgstr "blwyddyn yn ôl" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 1ed73ea3ca7..3a17ca769c2 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -56,15 +56,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ukendt filtype" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ugyldigt billede" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Webtjenester under din kontrol" @@ -73,23 +73,23 @@ msgstr "Webtjenester under din kontrol" msgid "cannot open \"%s\"" msgstr "Kan ikke åbne \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tilbage til Filer" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -175,17 +175,17 @@ msgstr "SMS" msgid "Images" msgstr "Billeder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s indtast database brugernavnet." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s indtast database navnet." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s du må ikke bruge punktummer i databasenavnet." @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt." #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "Databasefejl: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "Oracle forbindelsen kunne ikke etableres" msgid "Oracle username and/or password not valid" msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt." -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" @@ -334,7 +334,3 @@ msgstr "sidste år" #: private/template/functions.php:142 msgid "years ago" msgstr "år siden" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Forårsaget af:" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index d43aa96eb38..c678adb96cc 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-06 11:00+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -335,7 +335,3 @@ msgstr "Letztes Jahr" #: private/template/functions.php:142 msgid "years ago" msgstr "Vor Jahren" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Verursacht durch:" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 1fcf0fb278a..49d351f3f82 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index ef31022f851..d3dc92adfc1 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -6,13 +6,13 @@ # FlorianScholz , 2013 # FlorianScholz , 2013 # Mario Siegmann , 2013 -# traductor , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -57,15 +57,15 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" @@ -74,23 +74,23 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" @@ -335,7 +335,3 @@ msgstr "Letztes Jahr" #: private/template/functions.php:142 msgid "years ago" msgstr "Vor Jahren" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Verursacht durch:" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index d80fe487df9..35e086f4a30 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -4,15 +4,15 @@ # # Translators: # Mario Siegmann , 2013 -# traductor , 2013 +# traductor , 2013 # noxin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-22 08:30+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,15 +56,15 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ungültiges Bild" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" @@ -73,23 +73,23 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -175,17 +175,17 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" @@ -334,7 +334,3 @@ msgstr "Letztes Jahr" #: private/template/functions.php:142 msgid "years ago" msgstr "Vor Jahren" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Verursacht durch:" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index bb1e7107c87..48aa39eec7b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-23 01:50+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Διαχειριστής" msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Άγνωστος τύπος αρχείου" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Μη έγκυρη εικόνα" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" @@ -71,23 +71,23 @@ msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" msgid "cannot open \"%s\"" msgstr "αδυναμία ανοίγματος \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Κείμενο" msgid "Images" msgstr "Εικόνες" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s εισάγετε το όνομα της βάσης δεδομένων." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Αδυναμία σύνδεσης Oracle" msgid "Oracle username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s" @@ -332,7 +332,3 @@ msgstr "τελευταίο χρόνο" #: private/template/functions.php:142 msgid "years ago" msgstr "χρόνια πριν" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Προκλήθηκε από:" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index a6940fccaf3..02104f4c9b5 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Marios Bekatoros <>, 2013 # vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 12:10+0000\n" +"Last-Translator: Marios Bekatoros <>\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" @@ -26,17 +27,17 @@ msgstr "Αποτυχία εκκαθάρισης των αντιστοιχιών. msgid "Failed to delete the server configuration" msgstr "Αποτυχία διαγραφής ρυθμίσεων διακομιστή" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Οι ρυθμίσεις είναι έγκυρες και η σύνδεση μπορεί να πραγματοποιηθεί!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +88,43 @@ msgstr "Επιτυχία" msgid "Error" msgstr "Σφάλμα" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Επιλέξτε ομάδες" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" -msgstr "" +msgstr "Επιλογή χαρακτηριστικών" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Επιτυχημένη δοκιμαστική σύνδεση" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Αποτυχημένη δοκιμαστική σύνδεσης." -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Επιβεβαίωση Διαγραφής" @@ -141,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index d5acd01a2e2..5d487df1422 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web services under your control" @@ -70,23 +70,23 @@ msgstr "web services under your control" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 3857ebb302a..c6b2b948874 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-21 15:22+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,15 +54,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Failed to upgrade \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Unknown filetype" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Invalid image" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web services under your control" @@ -71,23 +71,23 @@ msgstr "web services under your control" msgid "cannot open \"%s\"" msgstr "cannot open \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download is turned off." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Files need to be downloaded one by one." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Back to Files" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Selected files too large to generate zip file." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Text" msgid "Images" msgstr "Images" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enter the database username." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enter the database name." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s you may not use dots in the database name" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL username and/or password not valid" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Error: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Oracle connection could not be established" msgid "Oracle username and/or password not valid" msgstr "Oracle username and/or password not valid" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending command was: \"%s\", name: %s, password: %s" @@ -332,7 +332,3 @@ msgstr "last year" #: private/template/functions.php:142 msgid "years ago" msgstr "years ago" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Caused by:" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index dc44de6f28a..21d6cb49cc9 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Administranto" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" @@ -71,23 +71,23 @@ msgstr "TTT-servoj regataj de vi" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Teksto" msgid "Images" msgstr "Bildoj" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enigu la uzantonomon de la datumbazo." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enigu la nomon de la datumbazo." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s vi ne povas uzi punktojn en la nomo de la datumbazo" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "La uzantonomo de MySQL aŭ la pasvorto ne validas" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Datumbaza eraro: “%s”" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Konekto al Oracle ne povas stariĝi" msgid "Oracle username and/or password not valid" msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -332,7 +332,3 @@ msgstr "lastajare" #: private/template/functions.php:142 msgid "years ago" msgstr "jaroj antaŭe" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index cae01947e87..719a3a051b5 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 22:20+0000\n" -"Last-Translator: Raul Fernandez Garcia \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -75,23 +75,23 @@ msgstr "Servicios web bajo su control" msgid "cannot open \"%s\"" msgstr "No se puede abrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -177,17 +177,17 @@ msgstr "Texto" msgid "Images" msgstr "Imágenes" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ingresar el usuario de la base de datos." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ingresar el nombre de la base de datos" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s puede utilizar puntos en el nombre de la base de datos" @@ -208,11 +208,11 @@ msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña de MySQL no válidos" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -220,10 +220,10 @@ msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -256,7 +256,7 @@ msgstr "No se pudo establecer la conexión a Oracle" msgid "Oracle username and/or password not valid" msgstr "Usuario y/o contraseña de Oracle no válidos" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" @@ -336,7 +336,3 @@ msgstr "año pasado" #: private/template/functions.php:142 msgid "years ago" msgstr "hace años" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causado por:" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 9f5fcc9a19d..0d4d1ec2554 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Administración" msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo de archivo desconocido" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagen inválida" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servicios web sobre los que tenés control" @@ -71,23 +71,23 @@ msgstr "servicios web sobre los que tenés control" msgid "cannot open \"%s\"" msgstr "no se puede abrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Texto" msgid "Images" msgstr "Imágenes" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s Entrá el usuario de la base de datos" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s Entrá el nombre de la base de datos." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s no podés usar puntos en el nombre de la base de datos" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña MySQL no válido" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "No fue posible establecer la conexión a Oracle" msgid "Oracle username and/or password not valid" msgstr "El nombre de usuario y/o contraseña no son válidos" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"" @@ -332,7 +332,3 @@ msgstr "el año pasado" #: private/template/functions.php:142 msgid "years ago" msgstr "años atrás" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Provocado por:" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po new file mode 100644 index 00000000000..b8882ca78a1 --- /dev/null +++ b/l10n/es_CL/core.po @@ -0,0 +1,775 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:394 +msgid "Settings" +msgstr "" + +#: js/js.js:865 +msgid "seconds ago" +msgstr "" + +#: js/js.js:866 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:867 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:868 +msgid "today" +msgstr "" + +#: js/js.js:869 +msgid "yesterday" +msgstr "" + +#: js/js.js:870 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:871 +msgid "last month" +msgstr "" + +#: js/js.js:872 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:873 +msgid "months ago" +msgstr "" + +#: js/js.js:874 +msgid "last year" +msgstr "" + +#: js/js.js:875 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:72 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po new file mode 100644 index 00000000000..7080387a1fc --- /dev/null +++ b/l10n/es_CL/files.po @@ -0,0 +1,404 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:94 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:128 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/es_CL/files_encryption.po b/l10n/es_CL/files_encryption.po new file mode 100644 index 00000000000..27a1d9e6e5a --- /dev/null +++ b/l10n/es_CL/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:278 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/es_CL/files_external.po b/l10n/es_CL/files_external.po new file mode 100644 index 00000000000..9537ed24684 --- /dev/null +++ b/l10n/es_CL/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:474 +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 "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/es_CL/files_sharing.po b/l10n/es_CL/files_sharing.po new file mode 100644 index 00000000000..3ae8e9fd37f --- /dev/null +++ b/l10n/es_CL/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/es_CL/files_trashbin.po b/l10n/es_CL/files_trashbin.po new file mode 100644 index 00000000000..1e0643be9b2 --- /dev/null +++ b/l10n/es_CL/files_trashbin.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/es_CL/files_versions.po b/l10n/es_CL/files_versions.po new file mode 100644 index 00000000000..96a6427ad99 --- /dev/null +++ b/l10n/es_CL/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po new file mode 100644 index 00000000000..5e853155fc1 --- /dev/null +++ b/l10n/es_CL/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po new file mode 100644 index 00000000000..e917cc27511 --- /dev/null +++ b/l10n/es_CL/settings.po @@ -0,0 +1,668 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:39 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po new file mode 100644 index 00000000000..c64198a289e --- /dev/null +++ b/l10n/es_CL/user_ldap.po @@ -0,0 +1,513 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/es_CL/user_webdavauth.po b/l10n/es_CL/user_webdavauth.po new file mode 100644 index 00000000000..80f00766160 --- /dev/null +++ b/l10n/es_CL/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 7285fa72cec..27ff42b01b7 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 6f8d989e511..32898ca60e7 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-22 09:40+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -55,15 +55,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tundmatu failitüüp" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Vigane pilt" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" @@ -72,23 +72,23 @@ msgstr "veebitenused sinu kontrolli all" msgid "cannot open \"%s\"" msgstr "ei suuda avada \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -174,17 +174,17 @@ msgstr "Tekst" msgid "Images" msgstr "Pildid" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s sisesta andmebaasi kasutajatunnus." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s sisesta andmebaasi nimi." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud" @@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL kasutajatunnus ja/või parool pole õiged" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "Andmebaasi viga: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -253,7 +253,7 @@ msgstr "Ei suuda luua ühendust Oracle baasiga" msgid "Oracle username and/or password not valid" msgstr "Oracle kasutajatunnus ja/või parool pole õiged" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" @@ -333,7 +333,3 @@ msgstr "viimasel aastal" #: private/template/functions.php:142 msgid "years ago" msgstr "aastat tagasi" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Põhjustaja:" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index b3cecf7b9e2..7e4e4b6381e 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-07 14:50+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -333,7 +333,3 @@ msgstr "joan den urtean" #: private/template/functions.php:142 msgid "years ago" msgstr "urte" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Honek eraginda:" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 1d0892936ff..c05efa0c6ac 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "مدیر" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" @@ -71,23 +71,23 @@ msgstr "سرویس های تحت وب در کنترل شما" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "بازگشت به فایل ها" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "متن" msgid "Images" msgstr "تصاویر" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s نام کاربری پایگاه داده را وارد نمایید." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s نام پایگاه داده را وارد نمایید." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید." @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "نام کاربری و / یا رمزعبور MySQL معتبر نیست." #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "خطای پایگاه داده: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "ارتباط اراکل نمیتواند برقرار باشد." msgid "Oracle username and/or password not valid" msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نیست." -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"" @@ -328,7 +328,3 @@ msgstr "سال قبل" #: private/template/functions.php:142 msgid "years ago" msgstr "سال‌های قبل" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 8605bfd73d0..027ee40f2ef 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Ylläpitäjä" msgid "Failed to upgrade \"%s\"." msgstr "Kohteen \"%s\" päivitys epäonnistui." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tuntematon tiedostotyyppi" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Virheellinen kuva" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" @@ -71,23 +71,23 @@ msgstr "verkkopalvelut hallinnassasi" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Teksti" msgid "Images" msgstr "Kuvat" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s anna tietokannan käyttäjätunnus." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s anna tietokannan nimi." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s et voi käyttää pisteitä tietokannan nimessä" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL:n käyttäjätunnus ja/tai salasana on väärin" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Tietokantavirhe: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Oracle-yhteyttä ei voitu muodostaa" msgid "Oracle username and/or password not valid" msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -332,7 +332,3 @@ msgstr "viime vuonna" #: private/template/functions.php:142 msgid "years ago" msgstr "vuotta sitten" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Aiheuttaja:" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index ec114245437..f019e09a2d0 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-26 10:45-0500\n" -"PO-Revision-Date: 2013-11-26 14:23+0000\n" -"Last-Translator: etiess \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -57,11 +57,11 @@ msgstr "Administration" msgid "Failed to upgrade \"%s\"." msgstr "Echec de la mise à niveau \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Type de fichier inconnu" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Image invalide" @@ -74,23 +74,23 @@ msgstr "services web sous votre contrôle" msgid "cannot open \"%s\"" msgstr "impossible d'ouvrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "Texte" msgid "Images" msgstr "Images" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s entrez le nom d'utilisateur de la base de données." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s entrez le nom de la base de données." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s vous nez pouvez pas utiliser de points dans le nom de la base de données" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "Erreur de la base de données : \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "La connexion Oracle ne peut pas être établie" msgid "Oracle username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" @@ -335,7 +335,3 @@ msgstr "l'année dernière" #: private/template/functions.php:142 msgid "years ago" msgstr "il y a plusieurs années" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causé par :" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index 6ad333c3eed..37d8be2602d 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-26 21:30+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 7077ae88a49..75a64b25feb 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-22 07:30+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Administración" msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo de ficheiro descoñecido" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imaxe incorrecta" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servizos web baixo o seu control" @@ -71,23 +71,23 @@ msgstr "servizos web baixo o seu control" msgid "cannot open \"%s\"" msgstr "non foi posíbel abrir «%s»" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Volver aos ficheiros" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Texto" msgid "Images" msgstr "Imaxes" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de usuario da base de datos" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de datos" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s non se poden empregar puntos na base de datos" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Produciuse un erro na base de datos: «%s»" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Non foi posíbel estabelecer a conexión con Oracle" msgid "Oracle username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s" @@ -332,7 +332,3 @@ msgstr "último ano" #: private/template/functions.php:142 msgid "years ago" msgstr "anos atrás" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causado por:" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index d16c10b9b64..745016b77bb 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "מנהל" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" @@ -70,23 +70,23 @@ msgstr "שירותי רשת תחת השליטה שלך" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "חזרה לקבצים" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "טקסט" msgid "Images" msgstr "תמונות" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "שנה שעברה" #: private/template/functions.php:142 msgid "years ago" msgstr "שנים" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 883a1dbb2f4..385356da3bb 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index af306ed83c3..922fc6ff8e7 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" @@ -70,23 +70,23 @@ msgstr "web usluge pod vašom kontrolom" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "prošlu godinu" #: private/template/functions.php:142 msgid "years ago" msgstr "godina" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index c48b9a7379d..943465ec40a 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-14 22:00+0000\n" +"Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -151,59 +151,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Beállítások" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n perccel ezelőtt" msgstr[1] "%n perccel ezelőtt" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "ma" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "tegnap" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "több hónapja" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "tavaly" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "több éve" @@ -446,7 +446,7 @@ msgstr "Nincs törlésre kijelölt címke." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Kérlek tölts be újra az oldalt" #: js/update.js:17 msgid "" @@ -589,7 +589,7 @@ msgstr "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "A megosztás lejár ekkor %s" #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" @@ -689,7 +689,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Az alkalmazás megfelelő működéséhez szükség van JavaScript-re. Engedélyezd a JavaScript-et és töltsd újra az interfészt." #: templates/layout.user.php:44 #, php-format @@ -747,11 +747,11 @@ msgstr "Szia!

    Értesítünk, hogy %s megosztotta veled a következőt: » #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Az Owncloud frissítés elezdődött egy felhasználós módban." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt" #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index e9246cd04c5..b0e34469ea7 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ebela , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-15 10:40+0000\n" +"Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -202,7 +203,7 @@ msgstr "visszavonás" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "Hiba a file törlése közben." #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" @@ -340,7 +341,7 @@ msgstr "Új" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Új szöveges file" #: templates/index.php:8 msgid "Text file" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index c152bfcc19d..e921a75e195 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 22:10+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-14 22:00+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -200,4 +200,4 @@ msgstr "File helyreállítási beállításai frissültek" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "A file helyreállítás nem frissíthető" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 70b9ddd1a75..40eacb71242 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -56,15 +56,15 @@ msgstr "Adminsztráció" msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ismeretlen file tipús" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Hibás kép" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" @@ -73,27 +73,27 @@ msgstr "webszolgáltatások saját kézben" msgid "cannot open \"%s\"" msgstr "nem sikerült megnyitni \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "A file-t kisebb részekben töltsd le vagy beszélj az adminisztrátorral a megoldás érdekében." #: private/installer.php:63 msgid "No source specified when installing app" @@ -175,17 +175,17 @@ msgstr "Szöveg" msgid "Images" msgstr "Képek" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s adja meg az adatbázist elérő felhasználó login nevét." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s adja meg az adatbázis nevét." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s az adatbázis neve nem tartalmazhat pontot" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "Adatbázis hiba: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "Az Oracle kapcsolat nem hozható létre" msgid "Oracle username and/or password not valid" msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" @@ -334,7 +334,3 @@ msgstr "tavaly" #: private/template/functions.php:142 msgid "years ago" msgstr "több éve" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Okozta:" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 8af48a7dbdf..39d04cb9e3e 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 21:50+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-15 16:40+0000\n" +"Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -251,7 +251,7 @@ msgstr "Biztonsági figyelmeztetés" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni." #: templates/admin.php:39 msgid "" @@ -289,14 +289,14 @@ msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a te #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "A PHP verzió túl régi" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően." #: templates/admin.php:93 msgid "Locale not working" @@ -304,20 +304,20 @@ msgstr "A nyelvi lokalizáció nem működik" #: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at." #: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben." #: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s" #: templates/admin.php:118 msgid "Internet connection not working" @@ -572,7 +572,7 @@ msgstr "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Az avatarod az eredeti fiókod alapján van beállítva." #: templates/personal.php:101 msgid "Abort" @@ -607,7 +607,7 @@ msgstr "Titkosítás" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak." #: templates/personal.php:158 msgid "Log-in password" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index f40506dc58e..a54f97275bd 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 31020e1e85d..b78fa9a9dce 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Administration" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servicios web sub tu controlo" @@ -70,23 +70,23 @@ msgstr "servicios web sub tu controlo" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Texto" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 27c5b892497..d279c046392 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "layanan web dalam kontrol Anda" @@ -70,23 +70,23 @@ msgstr "layanan web dalam kontrol Anda" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Pengunduhan ZIP dimatikan." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Kembali ke Daftar Berkas" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Teks" msgid "Images" msgstr "Gambar" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s masukkan nama pengguna basis data." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s masukkan nama basis data." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nama pengguna dan/atau sandi MySQL tidak valid" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "Galat Basis Data: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "Nama pengguna dan/atau sandi Oracle tidak valid" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" @@ -327,7 +327,3 @@ msgstr "tahun kemarin" #: private/template/functions.php:142 msgid "years ago" msgstr "beberapa tahun lalu" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 19c63cba80d..f0ff3483ec8 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Stjórnun" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" @@ -70,23 +70,23 @@ msgstr "vefþjónusta undir þinni stjórn" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Slökkt á ZIP niðurhali." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Aftur í skrár" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Texti" msgid "Images" msgstr "Myndir" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "síðasta ári" #: private/template/functions.php:142 msgid "years ago" msgstr "einhverjum árum" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 54eecda2d0d..7d01a6d8bb8 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-22 21:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -56,15 +56,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo di file sconosciuto" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Immagine non valida" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servizi web nelle tue mani" @@ -73,23 +73,23 @@ msgstr "servizi web nelle tue mani" msgid "cannot open \"%s\"" msgstr "impossibile aprire \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Torna ai file" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -175,17 +175,17 @@ msgstr "Testo" msgid "Images" msgstr "Immagini" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s digita il nome utente del database." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s digita il nome del database." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s non dovresti utilizzare punti nel nome del database" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nome utente e/o password di MySQL non validi" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "Errore DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "La connessione a Oracle non può essere stabilita" msgid "Oracle username and/or password not valid" msgstr "Nome utente e/o password di Oracle non validi" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" @@ -334,7 +334,3 @@ msgstr "anno scorso" #: private/template/functions.php:142 msgid "years ago" msgstr "anni fa" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causato da:" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 98f2ca9c88e..b023a807c32 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 11:30+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -74,23 +74,23 @@ msgstr "管理下のウェブサービス" msgid "cannot open \"%s\"" msgstr "\"%s\" が開けません" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ファイルに戻る" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "TTY TDD" msgid "Images" msgstr "画像" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s のデータベースのユーザ名を入力してください。" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s のデータベース名を入力してください。" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s ではデータベース名にドットを利用できないかもしれません。" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQLのユーザ名もしくはパスワードは有効ではありません" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "DBエラー: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Oracleへの接続が確立できませんでした。" msgid "Oracle username and/or password not valid" msgstr "Oracleのユーザ名もしくはパスワードは有効ではありません" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" @@ -331,7 +331,3 @@ msgstr "一年前" #: private/template/functions.php:142 msgid "years ago" msgstr "年前" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "原因:" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 1458b755e12..c23f452e6df 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "ადმინისტრატორი" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP გადმოწერა გამორთულია" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 939e84996cf..3bfdd77ed54 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "ადმინისტრატორი" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web services under your control" @@ -70,23 +70,23 @@ msgstr "web services under your control" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download–ი გათიშულია" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "უკან ფაილებში" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "ტექსტი" msgid "Images" msgstr "სურათები" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s შეიყვანეთ ბაზის სახელი." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s არ მიუთითოთ წერტილი ბაზის სახელში" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "DB შეცდომა: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" @@ -327,7 +327,3 @@ msgstr "ბოლო წელს" #: private/template/functions.php:142 msgid "years ago" msgstr "წლის წინ" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 7a67810adbf..87bcd1528a0 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 5ff982c9fb2..93d65f06c4f 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 0ba47683b4a..b550a6adb16 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-01 02:20+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -72,23 +72,23 @@ msgstr "내가 관리하는 웹 서비스" msgid "cannot open \"%s\"" msgstr "\"%s\"을(를) 열 수 없습니다." -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화되었습니다." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "파일을 개별적으로 다운로드해야 합니다." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "파일로 돌아가기" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -174,17 +174,17 @@ msgstr "텍스트" msgid "Images" msgstr "그림" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "데이터베이스 사용자 명을 %s 에 입력해주십시오" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "데이터베이스 명을 %s 에 입력해주십시오" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다" @@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL 사용자 이름이나 암호가 잘못되었습니다." #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "DB 오류: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -253,7 +253,7 @@ msgstr "Oracle 연결을 수립할 수 없습니다." msgid "Oracle username and/or password not valid" msgstr "Oracle 사용자 이름이나 암호가 잘못되었습니다." -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s" @@ -329,7 +329,3 @@ msgstr "작년" #: private/template/functions.php:142 msgid "years ago" msgstr "년 전" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "원인: " diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 2339d9095db..6a6e1748a7e 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" @@ -70,23 +70,23 @@ msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 3eba6dc0e67..91b74a92186 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Onbekannten Fichier Typ" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ongülteg d'Bild" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" @@ -71,23 +71,23 @@ msgstr "Web-Servicer ënnert denger Kontroll" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "SMS" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -332,7 +332,3 @@ msgstr "Läscht Joer" #: private/template/functions.php:142 msgid "years ago" msgstr "Joren hier" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 047e337a0a4..d4ee2ab576c 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 11:10+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,23 +74,23 @@ msgstr "jūsų valdomos web paslaugos" msgid "cannot open \"%s\"" msgstr "nepavyksta atverti „%s“" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Atgal į Failus" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "Žinučių" msgid "Images" msgstr "Paveikslėliai" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s įrašykite duombazės naudotojo vardą." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s įrašykite duombazės pavadinimą." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s negalite naudoti taškų duombazės pavadinime" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "Neteisingas MySQL naudotojo vardas ir/arba slaptažodis" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "DB klaida: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Nepavyko sukurti Oracle ryšio" msgid "Oracle username and/or password not valid" msgstr "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vykdyta komanda buvo: \"%s\", name: %s, password: %s" @@ -339,7 +339,3 @@ msgstr "praeitais metais" #: private/template/functions.php:142 msgid "years ago" msgstr "prieš metus" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Iššaukė:" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index b063c00d93f..8faa5c1298a 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Administratori" msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" @@ -71,23 +71,23 @@ msgstr "tīmekļa servisi tavā varā" msgid "cannot open \"%s\"" msgstr "Nevar atvērt \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Teksts" msgid "Images" msgstr "Attēli" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ievadiet datubāzes lietotājvārdu." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ievadiet datubāzes nosaukumu." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s datubāžu nosaukumos nedrīkst izmantot punktus" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nav derīga MySQL parole un/vai lietotājvārds" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "DB kļūda — “%s”" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Nevar izveidot savienojumu ar Oracle" msgid "Oracle username and/or password not valid" msgstr "Nav derīga Oracle parole un/vai lietotājvārds" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" @@ -336,7 +336,3 @@ msgstr "gājušajā gadā" #: private/template/functions.php:142 msgid "years ago" msgstr "gadus atpakaļ" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Cēlonis:" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 7b629110a32..d89289df59b 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Админ" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Непознат тип на датотека" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Невалидна фотографија" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" @@ -70,23 +70,23 @@ msgstr "веб сервиси под Ваша контрола" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад кон датотеки" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Избраните датотеки се преголеми за да се генерира zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Текст" msgid "Images" msgstr "Слики" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "минатата година" #: private/template/functions.php:142 msgid "years ago" msgstr "пред години" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 54ab9112f5b..a510bace28a 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index c0037524440..e5ee63b814b 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" @@ -70,23 +70,23 @@ msgstr "Perkhidmatan web di bawah kawalan anda" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Teks" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 6333de7caf6..4f07303819e 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "အက်ဒမင်" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" @@ -70,23 +70,23 @@ msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တ msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ဖိုင်သို့ပြန်သွားမည်" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "စာသား" msgid "Images" msgstr "ပုံရိပ်များ" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "မနှစ်က" #: private/template/functions.php:142 msgid "years ago" msgstr "နှစ် အရင်က" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index a2111d02cac..1e1d0f4e875 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web tjenester du kontrollerer" @@ -70,23 +70,23 @@ msgstr "web tjenester du kontrollerer" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tilbake til filer" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Tekst" msgid "Images" msgstr "Bilder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "forrige år" #: private/template/functions.php:142 msgid "years ago" msgstr "år siden" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index 3e81e7061c9..8fe55cbf501 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 99cee713a01..bc3849b95dc 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index dfc4b57a1d4..fd7320c9f6e 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 19:10+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -73,23 +73,23 @@ msgstr "Webdiensten in eigen beheer" msgid "cannot open \"%s\"" msgstr "Kon \"%s\" niet openen" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Terug naar bestanden" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -175,17 +175,17 @@ msgstr "Tekst" msgid "Images" msgstr "Afbeeldingen" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s opgeven database gebruikersnaam." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s opgeven databasenaam." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s er mogen geen puntjes in de databasenaam voorkomen" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL gebruikersnaam en/of wachtwoord ongeldig" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Fout: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "Er kon geen verbinding met Oracle worden bereikt" msgid "Oracle username and/or password not valid" msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" @@ -334,7 +334,3 @@ msgstr "vorig jaar" #: private/template/functions.php:142 msgid "years ago" msgstr "jaar geleden" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Gekomen door:" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 76ab32a7f89..37cc90b14d5 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -55,15 +55,15 @@ msgstr "Administrer" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ukjend filtype" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ugyldig bilete" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" @@ -72,23 +72,23 @@ msgstr "Vev tjenester under din kontroll" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -174,17 +174,17 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -253,7 +253,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -333,7 +333,3 @@ msgstr "i fjor" #: private/template/functions.php:142 msgid "years ago" msgstr "år sidan" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index b01497deeef..2ee237736f6 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index e79aa765465..77b84c4745b 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Services web jos ton contraròtle" @@ -70,23 +70,23 @@ msgstr "Services web jos ton contraròtle" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Torna cap als fichièrs" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "an passat" #: private/template/functions.php:142 msgid "years ago" msgstr "ans a" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index bd575b7f41b..37254e7f0f2 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "ਪਿਛਲੇ ਸਾਲ" #: private/template/functions.php:142 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 8d3e29a72ba..76212e93205 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 15:00+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -337,7 +337,3 @@ msgstr "w zeszłym roku" #: private/template/functions.php:142 msgid "years ago" msgstr "lat temu" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Spowodowane przez:" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 5d99ecda188..4e4db5c0f2d 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-21 15:40+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo de arquivo desconhecido" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagem inválida" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "serviços web sob seu controle" @@ -71,23 +71,23 @@ msgstr "serviços web sob seu controle" msgid "cannot open \"%s\"" msgstr "não pode abrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Voltar para Arquivos" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Texto" msgid "Images" msgstr "Imagens" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s insira o nome de usuário do banco de dados." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s insira o nome do banco de dados." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s você não pode usar pontos no nome do banco de dados" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nome de usuário e/ou senha MySQL inválido(s)" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Erro no BD: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Conexão Oracle não pode ser estabelecida" msgid "Oracle username and/or password not valid" msgstr "Nome de usuário e/ou senha Oracle inválido(s)" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" @@ -332,7 +332,3 @@ msgstr "último ano" #: private/template/functions.php:142 msgid "years ago" msgstr "anos atrás" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causados ​​por:" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 352060b193d..a76f89824b9 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-03 12:00+0000\n" -"Last-Translator: PapiMigas Migas \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -72,23 +72,23 @@ msgstr "serviços web sob o seu controlo" msgid "cannot open \"%s\"" msgstr "Não foi possível abrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Voltar a Ficheiros" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -333,7 +333,3 @@ msgstr "ano passado" #: private/template/functions.php:142 msgid "years ago" msgstr "anos atrás" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causado por:" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index e0141290424..7e7a1347191 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tip fișier necunoscut" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagine invalidă" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servicii web controlate de tine" @@ -71,23 +71,23 @@ msgstr "servicii web controlate de tine" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Înapoi la fișiere" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Text" msgid "Images" msgstr "Imagini" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,7 +336,3 @@ msgstr "ultimul an" #: private/template/functions.php:142 msgid "years ago" msgstr "ani în urmă" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f545dcd33c9..1d76bd09caf 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-21 18:10+0000\n" -"Last-Translator: unixoid \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,15 +60,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Неизвестный тип файла" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Изображение повреждено" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" @@ -77,23 +77,23 @@ msgstr "веб-сервисы под вашим управлением" msgid "cannot open \"%s\"" msgstr "не могу открыть \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад к файлам" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -179,17 +179,17 @@ msgstr "Текст" msgid "Images" msgstr "Изображения" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s введите имя пользователя базы данных." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s введите имя базы данных." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Вы не можете использовать точки в имени базы данных" @@ -210,11 +210,11 @@ msgid "MySQL username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль MySQL" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -222,10 +222,10 @@ msgid "DB Error: \"%s\"" msgstr "Ошибка БД: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -258,7 +258,7 @@ msgstr "соединение с Oracle не может быть установл msgid "Oracle username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль Oracle" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Вызываемая команда была: \"%s\", имя: %s, пароль: %s" @@ -342,7 +342,3 @@ msgstr "в прошлом году" #: private/template/functions.php:142 msgid "years ago" msgstr "несколько лет назад" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Вызвано:" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 14eecdabd8d..34ef31a14c7 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Текст" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index d8488e0c1e5..e94d394fa0d 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "පරිපාලක" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" @@ -70,23 +70,23 @@ msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවා msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්‍රියයි" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "පෙළ" msgid "Images" msgstr "අනු රූ" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "පෙර අවුරුද්දේ" #: private/template/functions.php:142 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 73526564da1..60770f82b2c 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 8daaac01c17..0c1695ef1ef 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 13:50+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,23 +72,23 @@ msgstr "webové služby pod Vašou kontrolou" msgid "cannot open \"%s\"" msgstr "nemožno otvoriť \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Späť na súbory" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -174,17 +174,17 @@ msgstr "Text" msgid "Images" msgstr "Obrázky" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "Zadajte používateľské meno %s databázy." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadajte názov databázy pre %s databázy." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "V názve databázy %s nemôžete používať bodky" @@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre MySQL databázu je neplatné" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "Chyba DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -253,7 +253,7 @@ msgstr "Nie je možné pripojiť sa k Oracle" msgid "Oracle username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" @@ -337,7 +337,3 @@ msgstr "minulý rok" #: private/template/functions.php:142 msgid "years ago" msgstr "pred rokmi" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Príčina:" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index c114e3923c6..226ab6392cb 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 16:00+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 13:50+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" @@ -294,7 +294,7 @@ msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto instalácia nebude fungovat správne." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index c88839457ba..6da56813ed0 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-14 21:00+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,15 +150,15 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:387 +#: js/js.js:394 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:858 +#: js/js.js:865 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:859 +#: js/js.js:866 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -166,7 +166,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:860 +#: js/js.js:867 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -174,15 +174,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:861 +#: js/js.js:868 msgid "today" msgstr "danes" -#: js/js.js:862 +#: js/js.js:869 msgid "yesterday" msgstr "včeraj" -#: js/js.js:863 +#: js/js.js:870 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -190,11 +190,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:864 +#: js/js.js:871 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:865 +#: js/js.js:872 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -202,15 +202,15 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:866 +#: js/js.js:873 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:867 +#: js/js.js:874 msgid "last year" msgstr "lansko leto" -#: js/js.js:868 +#: js/js.js:875 msgid "years ago" msgstr "let nazaj" @@ -698,7 +698,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Program zahteva omogočeno skriptno podporo. Za pravilno delovanje je treba omogočiti JavaScript in nato ponovno osvežiti vmesnik." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 9d72aa95cb9..fa76f1e688f 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 23:40+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,23 +72,23 @@ msgstr "spletne storitve pod vašim nadzorom" msgid "cannot open \"%s\"" msgstr "ni mogoče odpreti \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamično." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -174,17 +174,17 @@ msgstr "Besedilo" msgid "Images" msgstr "Slike" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s - vnos uporabniškega imena podatkovne zbirke." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s - vnos imena podatkovne zbirke." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik." @@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "Uporabniško ime ali geslo MySQL ni veljavno" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "Napaka podatkovne zbirke: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -253,7 +253,7 @@ msgstr "Povezave s sistemom Oracle ni mogoče vzpostaviti." msgid "Oracle username and/or password not valid" msgstr "Uporabniško ime ali geslo Oracle ni veljavno" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" @@ -341,7 +341,3 @@ msgstr "lansko leto" #: private/template/functions.php:142 msgid "years ago" msgstr "let nazaj" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Vzrok:" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 5bdd4df17f0..409c92c1d33 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" @@ -70,23 +70,23 @@ msgstr "shërbime web nën kontrollin tënd" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Kthehu tek skedarët" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Tekst" msgid "Images" msgstr "Foto" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "% shkruani përdoruesin e database-it." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s shkruani emrin e database-it." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s nuk mund të përdorni pikat tek emri i database-it" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm." #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "Veprim i gabuar i DB-it: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" @@ -331,7 +331,3 @@ msgstr "vitin e shkuar" #: private/template/functions.php:142 msgid "years ago" msgstr "vite më parë" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 059422918a1..ba1bf3dee08 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Администратор" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "веб сервиси под контролом" @@ -70,23 +70,23 @@ msgstr "веб сервиси под контролом" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад на датотеке" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Изабране датотеке су превелике да бисте направили ZIP датотеку." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Текст" msgid "Images" msgstr "Слике" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "прошле године" #: private/template/functions.php:142 msgid "years ago" msgstr "година раније" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index bd338293316..22fe1bae414 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Adninistracija" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "prošle godine" #: private/template/functions.php:142 msgid "years ago" msgstr "pre nekoliko godina" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index e9c3f0c8834..c6ee10b4014 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-26 04:02-0500\n" -"PO-Revision-Date: 2013-11-24 19:20+0000\n" -"Last-Translator: kallemooo \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -58,11 +58,11 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Okänd filtyp" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ogiltig bild" @@ -75,23 +75,23 @@ msgstr "webbtjänster under din kontroll" msgid "cannot open \"%s\"" msgstr "Kan inte öppna \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -177,17 +177,17 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ange databasanvändare." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ange databasnamn" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s du får inte använda punkter i databasnamnet" @@ -208,11 +208,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL-användarnamnet och/eller lösenordet är felaktigt" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -220,10 +220,10 @@ msgid "DB Error: \"%s\"" msgstr "DB error: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -256,7 +256,7 @@ msgstr "Oracle-anslutning kunde inte etableras" msgid "Oracle username and/or password not valid" msgstr "Oracle-användarnamnet och/eller lösenordet är felaktigt" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Det felande kommandot var: \"%s\", name: %s, password: %s" @@ -336,7 +336,3 @@ msgstr "förra året" #: private/template/functions.php:142 msgid "years ago" msgstr "år sedan" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Orsakad av:" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 213951f61b8..ea6aa2ed1c0 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 89caac8deb5..872d7ca4e6c 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "நிர்வாகம்" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" @@ -70,23 +70,23 @@ msgstr "வலைய சேவைகள் உங்களுடைய கட் msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "வீ சொலிக் கோப்புகளை உருவாக்குவதற்கு தெரிவுசெய்யப்பட்ட கோப்புகள் மிகப்பெரியவை" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "உரை" msgid "Images" msgstr "படங்கள்" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "கடந்த வருடம்" #: private/template/functions.php:142 msgid "years ago" msgstr "வருடங்களுக்கு முன்" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 48589c9c611..4101ad2007c 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "పోయిన సంవత్సరం" #: private/template/functions.php:142 msgid "years ago" msgstr "సంవత్సరాల క్రితం" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d951932bfe9..eabe4b3de40 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\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 ea63cca03d9..324395914db 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\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 20c980928a7..6731b231738 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\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 5d210b83655..879e2eb0ef5 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\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 17c8e04e0ab..a82f79a1aa5 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\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 88425c85c87..8614aeb37fa 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -55,6 +55,6 @@ msgstr "" msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 767a83f45b9..932792cdba0 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\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 7c88cd9afad..733bf92518e 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -332,7 +332,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 2b04e173cda..52099af8d57 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -325,7 +325,3 @@ msgstr "" #: template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 5c4dc2c86e8..71652d76dc0 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\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 db1cf7c6d7c..5390365a32c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\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 f1a6b5288bc..25d60c745fc 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 7da12a80c01..007fef22261 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "ผู้ดูแล" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" @@ -70,23 +70,23 @@ msgstr "เว็บเซอร์วิสที่คุณควบคุม msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "ข้อความ" msgid "Images" msgstr "รูปภาพ" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "ปีที่แล้ว" #: private/template/functions.php:142 msgid "years ago" msgstr "ปี ที่ผ่านมา" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 015a245792b..7032332634e 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 01:40+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,23 +74,23 @@ msgstr "Bilgileriniz güvenli ve şifreli" msgid "cannot open \"%s\"" msgstr "\"%s\" açılamıyor" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP indirmeleri kapatılmıştır." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Dosyalara dön" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "Metin" msgid "Images" msgstr "Resimler" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s veritabanı kullanıcı adını girin." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s veritabanı adını girin." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s veritabanı adında nokta kullanamayabilirsiniz" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL kullanıcı adı ve/veya parolası geçerli değil" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Hata: ''%s''" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Oracle bağlantısı kurulamadı" msgid "Oracle username and/or password not valid" msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" @@ -335,7 +335,3 @@ msgstr "geçen yıl" #: private/template/functions.php:142 msgid "years ago" msgstr "yıl önce" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Neden olan:" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 18ac6b88557..8374a9c9831 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-11 18:00+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-15 13:10+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -389,7 +389,7 @@ msgstr "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmas #: templates/admin.php:203 msgid "Allow users to share with anyone" -msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" +msgstr "Kullanıcıların her şeyi paylaşmalarına izin ver" #: templates/admin.php:206 msgid "Allow users to only share with users in their groups" @@ -540,7 +540,7 @@ msgstr "Tam Adı" #: templates/personal.php:73 msgid "Email" -msgstr "Eposta" +msgstr "E-posta" #: templates/personal.php:75 msgid "Your email address" @@ -548,7 +548,7 @@ msgstr "E-posta adresiniz" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin" +msgstr "Parola kurtarmayı etkinleştirmek için bir e-posta adresi girin" #: templates/personal.php:86 msgid "Profile picture" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index b9e60cfdc09..643ca395d12 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 6568520d29d..dedaa808ca3 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "قىسقا ئۇچۇر" msgid "Images" msgstr "سۈرەتلەر" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 3fa79218bb9..ee61e1b50c1 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-03 13:30+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -70,23 +70,23 @@ msgstr "підконтрольні Вам веб-сервіси" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Повернутися до файлів" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -335,7 +335,3 @@ msgstr "минулого року" #: private/template/functions.php:142 msgid "years ago" msgstr "роки тому" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 63997263978..927abe85015 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "ایڈمن" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" @@ -70,23 +70,23 @@ msgstr "آپ کے اختیار میں ویب سروسیز" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index d013e234e19..185fc1265c8 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 43f748a6216..989e05ba037 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "Quản trị" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" @@ -70,23 +70,23 @@ msgstr "dịch vụ web dưới sự kiểm soát của bạn" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Trở lại tập tin" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Văn bản" msgid "Images" msgstr "Hình ảnh" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "năm trước" #: private/template/functions.php:142 msgid "years ago" msgstr "năm trước" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 72e710ab4f9..efc81b41a93 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -56,15 +56,15 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "未知的文件类型" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "无效的图像" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "您控制的web服务" @@ -73,23 +73,23 @@ msgstr "您控制的web服务" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "回到文件" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -175,17 +175,17 @@ msgstr "文本" msgid "Images" msgstr "图片" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 输入数据库用户名。" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 输入数据库名称。" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 您不能在数据库名称中使用英文句号。" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL 数据库用户名和/或密码无效" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "数据库错误:\"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "不能建立甲骨文连接" msgid "Oracle username and/or password not valid" msgstr "Oracle 数据库用户名和/或密码无效" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" @@ -330,7 +330,3 @@ msgstr "去年" #: private/template/functions.php:142 msgid "years ago" msgstr "年前" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 2909df350ab..49109e64fa5 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -53,15 +53,15 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "文字" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index fe70bec8ba1..32f41011f6b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" @@ -54,15 +54,15 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "升級失敗:%s" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "未知的檔案類型" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "無效的圖片" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "由您控制的網路服務" @@ -71,23 +71,23 @@ msgstr "由您控制的網路服務" msgid "cannot open \"%s\"" msgstr "無法開啓 %s" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載。" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "回到檔案列表" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "選擇的檔案太大以致於無法產生壓縮檔。" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "文字" msgid "Images" msgstr "圖片" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 輸入資料庫使用者名稱。" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 輸入資料庫名稱。" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 資料庫名稱不能包含小數點" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL 用戶名和/或密碼無效" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "資料庫錯誤:\"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "無法建立 Oracle 資料庫連線" msgid "Oracle username and/or password not valid" msgstr "Oracle 用戶名和/或密碼無效" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" @@ -328,7 +328,3 @@ msgstr "去年" #: private/template/functions.php:142 msgid "years ago" msgstr "幾年前" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "原因:" diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index e7250befc2f..4755392d271 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "el mes passat", "_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), "last year" => "l'any passat", -"years ago" => "anys enrere", -"Caused by:" => "Provocat per:" +"years ago" => "anys enrere" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 96d3660c473..df3a47b5ae3 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "minulý měsíc", "_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), "last year" => "minulý rok", -"years ago" => "před lety", -"Caused by:" => "Příčina:" +"years ago" => "před lety" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/da.php b/lib/l10n/da.php index f95aa30d7a0..074b89a00ea 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "last month" => "sidste måned", "_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), "last year" => "sidste år", -"years ago" => "år siden", -"Caused by:" => "Forårsaget af:" +"years ago" => "år siden" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 8ee4cb71d30..b1045892fb1 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:" +"years ago" => "Vor Jahren" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_CH.php b/lib/l10n/de_CH.php index 502791ff578..7325aad931e 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -52,7 +52,6 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:" +"years ago" => "Vor Jahren" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index e76718b4117..1a1c9783f42 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:" +"years ago" => "Vor Jahren" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/el.php b/lib/l10n/el.php index d536b699a9e..1de06407c32 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -50,7 +50,6 @@ $TRANSLATIONS = array( "last month" => "τελευταίο μήνα", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "τελευταίο χρόνο", -"years ago" => "χρόνια πριν", -"Caused by:" => "Προκλήθηκε από:" +"years ago" => "χρόνια πριν" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index 295700d234a..e2e8ee2e541 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "last month", "_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), "last year" => "last year", -"years ago" => "years ago", -"Caused by:" => "Caused by:" +"years ago" => "years ago" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 1412d49c2f5..f231cd2bb6e 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "año pasado", -"years ago" => "hace años", -"Caused by:" => "Causado por:" +"years ago" => "hace años" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index e2c771d47ad..bc5fcd7e012 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "el año pasado", -"years ago" => "años atrás", -"Caused by:" => "Provocado por:" +"years ago" => "años atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_CL.php b/lib/l10n/es_CL.php new file mode 100644 index 00000000000..15f78e0bce6 --- /dev/null +++ b/lib/l10n/es_CL.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 7340ee72c28..96fceaa04ed 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "viimasel kuul", "_%n month ago_::_%n months ago_" => array("","%n kuud tagasi"), "last year" => "viimasel aastal", -"years ago" => "aastat tagasi", -"Caused by:" => "Põhjustaja:" +"years ago" => "aastat tagasi" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 67a80d90caa..e3f18fca47a 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "joan den hilabetean", "_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), "last year" => "joan den urtean", -"years ago" => "urte", -"Caused by:" => "Honek eraginda:" +"years ago" => "urte" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 68f51d34441..17edda378c8 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "last month" => "viime kuussa", "_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), "last year" => "viime vuonna", -"years ago" => "vuotta sitten", -"Caused by:" => "Aiheuttaja:" +"years ago" => "vuotta sitten" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 82d5739e540..75a4f277271 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "le mois dernier", "_%n month ago_::_%n months ago_" => array("","Il y a %n mois"), "last year" => "l'année dernière", -"years ago" => "il y a plusieurs années", -"Caused by:" => "Causé par :" +"years ago" => "il y a plusieurs années" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index cf13408b2cd..81a62021556 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "último mes", "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), "last year" => "último ano", -"years ago" => "anos atrás", -"Caused by:" => "Causado por:" +"years ago" => "anos atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 0d91b70b51a..efaf2a2fd48 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni.", "Back to Files" => "Vissza a Fájlokhoz", "Selected files too large to generate zip file." => "A kiválasztott fájlok túl nagyok a zip tömörítéshez.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "A file-t kisebb részekben töltsd le vagy beszélj az adminisztrátorral a megoldás érdekében.", "No source specified when installing app" => "Az alkalmazás telepítéséhez nincs forrás megadva", "No href specified when installing app from http" => "Az alkalmazás http-n keresztül történő telepítéséhez nincs href hivetkozás megadva", "No path specified when installing app from local file" => "Az alkalmazás helyi telepítéséhez nincs útvonal (mappa) megadva", @@ -64,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "múlt hónapban", "_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), "last year" => "tavaly", -"years ago" => "több éve", -"Caused by:" => "Okozta:" +"years ago" => "több éve" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/it.php b/lib/l10n/it.php index b1259a0a874..cd2073bfd0a 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "mese scorso", "_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), "last year" => "anno scorso", -"years ago" => "anni fa", -"Caused by:" => "Causato da:" +"years ago" => "anni fa" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index d7baf176a14..9c5c0ba4763 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "一月前", "_%n month ago_::_%n months ago_" => array("%n ヶ月前"), "last year" => "一年前", -"years ago" => "年前", -"Caused by:" => "原因:" +"years ago" => "年前" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index 102bf9f978d..86494c76802 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "last month" => "지난 달", "_%n month ago_::_%n months ago_" => array("%n달 전 "), "last year" => "작년", -"years ago" => "년 전", -"Caused by:" => "원인: " +"years ago" => "년 전" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index 17bbb856e43..25957702d2d 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "praeitą mėnesį", "_%n month ago_::_%n months ago_" => array("Prieš %n mėnesį","Prieš %n mėnesius","Prieš %n mėnesių"), "last year" => "praeitais metais", -"years ago" => "prieš metus", -"Caused by:" => "Iššaukė:" +"years ago" => "prieš metus" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index ef5fd2d5ca8..8ecee5bdae8 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -48,7 +48,6 @@ $TRANSLATIONS = array( "last month" => "pagājušajā mēnesī", "_%n month ago_::_%n months ago_" => array("","","Pirms %n mēnešiem"), "last year" => "gājušajā gadā", -"years ago" => "gadus atpakaļ", -"Caused by:" => "Cēlonis:" +"years ago" => "gadus atpakaļ" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 0254ce81886..2f6205fcf1c 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "vorige maand", "_%n month ago_::_%n months ago_" => array("%n maand geleden","%n maanden geleden"), "last year" => "vorig jaar", -"years ago" => "jaar geleden", -"Caused by:" => "Gekomen door:" +"years ago" => "jaar geleden" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index e520509920a..fe3e876916a 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "w zeszłym miesiącu", "_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"), "last year" => "w zeszłym roku", -"years ago" => "lat temu", -"Caused by:" => "Spowodowane przez:" +"years ago" => "lat temu" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index d6912f07110..cc20fb3cb02 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "último mês", "_%n month ago_::_%n months ago_" => array("","ha %n meses"), "last year" => "último ano", -"years ago" => "anos atrás", -"Caused by:" => "Causados ​​por:" +"years ago" => "anos atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 55845cf2ae9..bd9165ebb1a 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "ultímo mês", "_%n month ago_::_%n months ago_" => array("","%n meses atrás"), "last year" => "ano passado", -"years ago" => "anos atrás", -"Caused by:" => "Causado por:" +"years ago" => "anos atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index baf80cbf24e..34d1730aaf2 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "в прошлом месяце", "_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), "last year" => "в прошлом году", -"years ago" => "несколько лет назад", -"Caused by:" => "Вызвано:" +"years ago" => "несколько лет назад" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 18b455780d1..59c45e2b0bc 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "minulý mesiac", "_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), "last year" => "minulý rok", -"years ago" => "pred rokmi", -"Caused by:" => "Príčina:" +"years ago" => "pred rokmi" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 69067c2691f..3cc8dd130c8 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "zadnji mesec", "_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), "last year" => "lansko leto", -"years ago" => "let nazaj", -"Caused by:" => "Vzrok:" +"years ago" => "let nazaj" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 4f04cbe3159..ffffe5956f1 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "förra månaden", "_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), "last year" => "förra året", -"years ago" => "år sedan", -"Caused by:" => "Orsakad av:" +"years ago" => "år sedan" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 093984bb952..d4abbcd4b3c 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("","%n ay önce"), "last year" => "geçen yıl", -"years ago" => "yıl önce", -"Caused by:" => "Neden olan:" +"years ago" => "yıl önce" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 187d40e540e..35719c8b17e 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "last month" => "上個月", "_%n month ago_::_%n months ago_" => array("%n 個月前"), "last year" => "去年", -"years ago" => "幾年前", -"Caused by:" => "原因:" +"years ago" => "幾年前" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 82bc37b9c1f..6b2dc3e0172 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -54,13 +54,19 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Hibák és végzetes hibák", "Fatal issues only" => "Csak a végzetes hibák", "Security Warning" => "Biztonsági figyelmeztetés", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", "Setup Warning" => "A beállítással kapcsolatos figyelmeztetés", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik.", "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", "Module 'fileinfo' missing" => "A 'fileinfo' modul hiányzik", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez.", +"Your PHP version is outdated" => "A PHP verzió túl régi", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően.", "Locale not working" => "A nyelvi lokalizáció nem működik", +"System locale can not be set to a one which supports UTF-8." => "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at.", +"This means that there might be problems with certain characters in file names." => "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s", "Internet connection not working" => "Az internet kapcsolat nem működik", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek.", "Cron" => "Ütemezett feladatok", @@ -119,6 +125,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Új kiválasztása Fileokból", "Remove image" => "Kép eltávolítása", "Either png or jpg. Ideally square but you will be able to crop it." => "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még átszabható", +"Your avatar is provided by your original account." => "Az avatarod az eredeti fiókod alapján van beállítva.", "Abort" => "Megszakítás", "Choose as profile image" => "Válassz profil képet", "Language" => "Nyelv", @@ -126,6 +133,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Ezt a címet használd, hogy hozzáférj a fileokhoz WebDAV-on keresztül", "Encryption" => "Titkosítás", +"The encryption app is no longer enabled, please decrypt all your files" => "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak.", "Log-in password" => "Bejelentkezési jelszó", "Decrypt all Files" => "Kititkosítja az összes file-t", "Login Name" => "Bejelentkezési név", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index af381bc3214..fc3fe540751 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -62,6 +62,7 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Chýba modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.", "Your PHP version is outdated" => "Vaša PHP verzia je zastaraná", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto instalácia nebude fungovat správne.", "Locale not working" => "Lokalizácia nefunguje", "System locale can not be set to a one which supports UTF-8." => "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.", "This means that there might be problems with certain characters in file names." => "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 0631e63017a..4c5e30e8e67 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -82,7 +82,7 @@ $TRANSLATIONS = array( "Allow users to enable others to upload into their publicly shared folders" => "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver.", "Allow resharing" => "Paylaşıma izin ver", "Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver", -"Allow users to share with anyone" => "Kullanıcıların herşeyi paylaşmalarına izin ver", +"Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", "Allow user to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver", @@ -117,9 +117,9 @@ $TRANSLATIONS = array( "New password" => "Yeni parola", "Change password" => "Parola değiştir", "Full Name" => "Tam Adı", -"Email" => "Eposta", +"Email" => "E-posta", "Your email address" => "E-posta adresiniz", -"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin", +"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir e-posta adresi girin", "Profile picture" => "Profil resmi", "Upload new" => "Yeni yükle", "Select new from Files" => "Dosyalardan seç", -- cgit v1.2.3 From 6488ff2c759b475d20a762741714e50d451a98c6 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 17 Dec 2013 16:43:17 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/es_CL.php | 4 +++- apps/files_sharing/l10n/es_CL.php | 6 ++++++ apps/user_ldap/l10n/es_CL.php | 3 ++- core/l10n/es_CL.php | 5 ++++- l10n/es_CL/core.po | 10 +++++----- l10n/es_CL/files.po | 8 ++++---- l10n/es_CL/files_sharing.po | 8 ++++---- l10n/es_CL/lib.po | 8 ++++---- l10n/es_CL/settings.po | 8 ++++---- l10n/es_CL/user_ldap.po | 6 +++--- l10n/fi_FI/lib.po | 10 +++++----- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/es_CL.php | 2 ++ lib/l10n/fi_FI.php | 2 ++ settings/l10n/es_CL.php | 6 ++++++ 26 files changed, 66 insertions(+), 44 deletions(-) create mode 100644 apps/files_sharing/l10n/es_CL.php create mode 100644 settings/l10n/es_CL.php (limited to 'lib') diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php index 0157af093e9..6f97758878f 100644 --- a/apps/files/l10n/es_CL.php +++ b/apps/files/l10n/es_CL.php @@ -1,7 +1,9 @@ "Archivos", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), -"_Uploading %n file_::_Uploading %n files_" => array("","") +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"Upload" => "Subir" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es_CL.php b/apps/files_sharing/l10n/es_CL.php new file mode 100644 index 00000000000..31dc045870c --- /dev/null +++ b/apps/files_sharing/l10n/es_CL.php @@ -0,0 +1,6 @@ + "Clave", +"Upload" => "Subir" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/es_CL.php b/apps/user_ldap/l10n/es_CL.php index 3a1e002311c..b3522617b42 100644 --- a/apps/user_ldap/l10n/es_CL.php +++ b/apps/user_ldap/l10n/es_CL.php @@ -1,6 +1,7 @@ array("",""), -"_%s user found_::_%s users found_" => array("","") +"_%s user found_::_%s users found_" => array("",""), +"Password" => "Clave" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_CL.php b/core/l10n/es_CL.php index ffcdde48d47..819cc68a1c9 100644 --- a/core/l10n/es_CL.php +++ b/core/l10n/es_CL.php @@ -1,9 +1,12 @@ "Configuración", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), "_%n day ago_::_%n days ago_" => array("",""), "_%n month ago_::_%n months ago_" => array("",""), -"_{count} file conflict_::_{count} file conflicts_" => array("","") +"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Password" => "Clave", +"Username" => "Usuario" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index b8882ca78a1..38ae72f7142 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -150,7 +150,7 @@ msgstr "" #: js/js.js:394 msgid "Settings" -msgstr "" +msgstr "Configuración" #: js/js.js:865 msgid "seconds ago" @@ -315,7 +315,7 @@ msgstr "" #: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" -msgstr "" +msgstr "Clave" #: js/share.js:229 msgid "Allow Public Upload" @@ -483,7 +483,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 #: templates/login.php:31 msgid "Username" -msgstr "" +msgstr "Usuario" #: lostpassword/templates/lostpassword.php:25 msgid "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index 7080387a1fc..a1f4067622d 100644 --- a/l10n/es_CL/files.po +++ b/l10n/es_CL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "" #: appinfo/app.php:11 msgid "Files" -msgstr "" +msgstr "Archivos" #: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" @@ -299,7 +299,7 @@ msgstr "" #: lib/helper.php:11 templates/index.php:16 msgid "Upload" -msgstr "" +msgstr "Subir" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/es_CL/files_sharing.po b/l10n/es_CL/files_sharing.po index 3ae8e9fd37f..a4836e6eea7 100644 --- a/l10n/es_CL/files_sharing.po +++ b/l10n/es_CL/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" #: templates/authenticate.php:10 msgid "Password" -msgstr "" +msgstr "Clave" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." @@ -69,7 +69,7 @@ msgstr "" #: templates/public.php:46 templates/public.php:49 msgid "Upload" -msgstr "" +msgstr "Subir" #: templates/public.php:59 msgid "Cancel upload" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index 5e853155fc1..6916a5d7935 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "" #: private/app.php:384 msgid "Settings" -msgstr "" +msgstr "Configuración" #: private/app.php:396 msgid "Users" @@ -162,7 +162,7 @@ msgstr "" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" -msgstr "" +msgstr "Archivos" #: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index e917cc27511..75d4de7ece4 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -508,7 +508,7 @@ msgstr "" #: templates/personal.php:39 templates/users.php:23 templates/users.php:89 msgid "Password" -msgstr "" +msgstr "Clave" #: templates/personal.php:40 msgid "Your password was changed" @@ -649,7 +649,7 @@ msgstr "" #: templates/users.php:87 msgid "Username" -msgstr "" +msgstr "Usuario" #: templates/users.php:94 msgid "Storage" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po index c64198a289e..d7d15250941 100644 --- a/l10n/es_CL/user_ldap.po +++ b/l10n/es_CL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -250,7 +250,7 @@ msgstr "" #: templates/part.wizard-server.php:52 msgid "Password" -msgstr "" +msgstr "Clave" #: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 027ee40f2ef..f13ef93c513 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 11:50+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -99,7 +99,7 @@ msgstr "Lähdettä ei määritelty sovellusta asennettaessa" #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Href-määritettä ei asetettu asennettaessa sovellusta http:n yli" #: private/installer.php:75 msgid "No path specified when installing app from local file" @@ -112,7 +112,7 @@ msgstr "Tyypin %s arkistot eivät ole tuettuja" #: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Pakettitiedoston avaaminen epäonnistui sovellusta asennettaessa" #: private/installer.php:125 msgid "App does not provide an info.xml file" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index eabe4b3de40..74b8a927d7a 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 324395914db..fe0a535246e 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 6731b231738..948373ec6c3 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 879e2eb0ef5..d74a465b32c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 a82f79a1aa5..5d08b484cab 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 8614aeb37fa..2bf5e12652f 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 932792cdba0..546efacc5b7 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 733bf92518e..4f573c138ff 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 52099af8d57..3c0d141ce0a 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 71652d76dc0..4f9ad5d2aea 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 5390365a32c..0d3f1da098a 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\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 25d60c745fc..48cd1143de4 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/es_CL.php b/lib/l10n/es_CL.php index 15f78e0bce6..46158b0ccc7 100644 --- a/lib/l10n/es_CL.php +++ b/lib/l10n/es_CL.php @@ -1,5 +1,7 @@ "Configuración", +"Files" => "Archivos", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), "_%n day go_::_%n days ago_" => array("",""), diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 17edda378c8..573704da44c 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -16,8 +16,10 @@ $TRANSLATIONS = array( "Back to Files" => "Takaisin tiedostoihin", "Selected files too large to generate zip file." => "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon.", "No source specified when installing app" => "Lähdettä ei määritelty sovellusta asennettaessa", +"No href specified when installing app from http" => "Href-määritettä ei asetettu asennettaessa sovellusta http:n yli", "No path specified when installing app from local file" => "Polkua ei määritelty sovellusta asennettaessa paikallisesta tiedostosta", "Archives of type %s are not supported" => "Tyypin %s arkistot eivät ole tuettuja", +"Failed to open archive when installing app" => "Pakettitiedoston avaaminen epäonnistui sovellusta asennettaessa", "App does not provide an info.xml file" => "Sovellus ei sisällä info.xml-tiedostoa", "App can't be installed because of not allowed code in the App" => "Sovellusta ei voi asentaa, koska sovellus sisältää kiellettyä koodia", "App can't be installed because it is not compatible with this version of ownCloud" => "Sovellusta ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa", diff --git a/settings/l10n/es_CL.php b/settings/l10n/es_CL.php new file mode 100644 index 00000000000..86e66bd4825 --- /dev/null +++ b/settings/l10n/es_CL.php @@ -0,0 +1,6 @@ + "Clave", +"Username" => "Usuario" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; -- cgit v1.2.3 From 3b0d0e2b1f3fec67e18402b0b0ecaf03dcb6fed8 Mon Sep 17 00:00:00 2001 From: Oliver Gasser Date: Tue, 17 Dec 2013 22:46:45 +0100 Subject: DB: Support DECIMAL(precision,scale) syntax in XML Add support for specifying the precision and scale of a decimal data type to the XML description language. See owncloud/core#6475 --- lib/private/db/mdb2schemareader.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib') diff --git a/lib/private/db/mdb2schemareader.php b/lib/private/db/mdb2schemareader.php index 511bd1c90bd..b1fd2454cb0 100644 --- a/lib/private/db/mdb2schemareader.php +++ b/lib/private/db/mdb2schemareader.php @@ -183,6 +183,14 @@ class MDB2SchemaReader { $primary = $this->asBool($child); $options['primary'] = $primary; break; + case 'precision': + $precision = (string)$child; + $options['precision'] = $precision; + break; + case 'scale': + $scale = (string)$child; + $options['scale'] = $scale; + break; default: throw new \DomainException('Unknown element: ' . $child->getName()); -- cgit v1.2.3 From a6c1b3ece3ee70936dc7ca2c099076d86773cc61 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 16 Dec 2013 14:22:25 +0100 Subject: fix the config option to remove the ability for users to set their displayname --- lib/private/server.php | 12 ++++++++++-- lib/private/user/manager.php | 17 +++++++++++++---- lib/private/user/user.php | 17 ++++++++++++++--- 3 files changed, 37 insertions(+), 9 deletions(-) (limited to 'lib') diff --git a/lib/private/server.php b/lib/private/server.php index 77c3732a9ca..bee70dec2df 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -69,10 +69,18 @@ class Server extends SimpleContainer implements IServerContainer { return new Root($manager, $view, $user); }); $this->registerService('UserManager', function($c) { - return new \OC\User\Manager(); + /** + * @var SimpleContainer $c + * @var \OC\AllConfig $config + */ + $config = $c->query('AllConfig'); + return new \OC\User\Manager($config); }); $this->registerService('UserSession', function($c) { - /** @var $c SimpleContainer */ + /** + * @var SimpleContainer $c + * @var \OC\User\Manager $manager + */ $manager = $c->query('UserManager'); $userSession = new \OC\User\Session($manager, \OC::$session); $userSession->listen('\OC\User', 'preCreateUser', function ($uid, $password) { diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index 703c8cd7413..cf83a75ba25 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -35,7 +35,16 @@ class Manager extends PublicEmitter { */ private $cachedUsers = array(); - public function __construct() { + /** + * @var \OC\AllConfig $config + */ + private $config; + + /** + * @param \OC\AllConfig $config + */ + public function __construct($config = null) { + $this->config = $config; $cachedUsers = $this->cachedUsers; $this->listen('\OC\User', 'postDelete', function ($user) use (&$cachedUsers) { $i = array_search($user, $cachedUsers); @@ -103,7 +112,7 @@ class Manager extends PublicEmitter { if (isset($this->cachedUsers[$uid])) { return $this->cachedUsers[$uid]; } - $this->cachedUsers[$uid] = new User($uid, $backend, $this); + $this->cachedUsers[$uid] = new User($uid, $backend, $this, $this->config); return $this->cachedUsers[$uid]; } @@ -141,7 +150,7 @@ class Manager extends PublicEmitter { */ public function checkPassword($loginname, $password) { foreach ($this->backends as $backend) { - if($backend->implementsActions(\OC_USER_BACKEND_CHECK_PASSWORD)) { + if ($backend->implementsActions(\OC_USER_BACKEND_CHECK_PASSWORD)) { $uid = $backend->checkPassword($loginname, $password); if ($uid !== false) { return $this->getUserObject($uid, $backend); @@ -234,7 +243,7 @@ class Manager extends PublicEmitter { // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" if (preg_match('/[^a-zA-Z0-9 _\.@\-]/', $uid)) { throw new \Exception('Only the following characters are allowed in a username:' - . ' "a-z", "A-Z", "0-9", and "_.@-"'); + . ' "a-z", "A-Z", "0-9", and "_.@-"'); } // No empty username if (trim($uid) == '') { diff --git a/lib/private/user/user.php b/lib/private/user/user.php index b4f33fa73cc..b0b4657413c 100644 --- a/lib/private/user/user.php +++ b/lib/private/user/user.php @@ -42,12 +42,18 @@ class User { */ private $home; + /** + * @var \OC\AllConfig $config + */ + private $config; + /** * @param string $uid * @param \OC_User_Backend $backend - * @param Emitter $emitter + * @param \OC\Hooks\Emitter $emitter + * @param \OC\AllConfig $config */ - public function __construct($uid, $backend, $emitter = null) { + public function __construct($uid, $backend, $emitter = null, $config = null) { $this->uid = $uid; if ($backend and $backend->implementsActions(OC_USER_BACKEND_GET_DISPLAYNAME)) { $this->displayName = $backend->getDisplayName($uid); @@ -58,6 +64,7 @@ class User { $this->emitter = $emitter; $enabled = \OC_Preferences::getValue($uid, 'core', 'enabled', 'true'); //TODO: DI for OC_Preferences $this->enabled = ($enabled === 'true'); + $this->config = $config; } /** @@ -175,7 +182,11 @@ class User { * @return bool */ public function canChangeDisplayName() { - return $this->backend->implementsActions(\OC_USER_BACKEND_SET_DISPLAYNAME); + if ($this->config and $this->config->getSystemValue('allow_user_to_change_display_name') === false) { + return false; + } else { + return $this->backend->implementsActions(\OC_USER_BACKEND_SET_DISPLAYNAME); + } } /** -- cgit v1.2.3 From e7a5c90cab3f1afd9c3f81a76c128eced7e94b69 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 16 Dec 2013 16:02:03 +0100 Subject: Replace static usage of OC_Config and OC_Preferences with the injected \OC\ConfigAll --- lib/private/user/user.php | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/private/user/user.php b/lib/private/user/user.php index b0b4657413c..ef5364cbf7b 100644 --- a/lib/private/user/user.php +++ b/lib/private/user/user.php @@ -62,9 +62,13 @@ class User { } $this->backend = $backend; $this->emitter = $emitter; - $enabled = \OC_Preferences::getValue($uid, 'core', 'enabled', 'true'); //TODO: DI for OC_Preferences - $this->enabled = ($enabled === 'true'); $this->config = $config; + if ($this->config) { + $enabled = $this->config->getUserValue($uid, 'core', 'enabled', 'true'); + $this->enabled = ($enabled === 'true'); + } else { + $this->enabled = true; + } } /** @@ -148,8 +152,10 @@ class User { if (!$this->home) { if ($this->backend->implementsActions(\OC_USER_BACKEND_GET_HOME) and $home = $this->backend->getHome($this->uid)) { $this->home = $home; + } elseif ($this->config) { + $this->home = $this->config->getSystemValue('datadirectory') . '/' . $this->uid; } else { - $this->home = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/' . $this->uid; //TODO switch to Config object once implemented + $this->home = \OC::$SERVERROOT . '/data/' . $this->uid; } } return $this->home; @@ -205,7 +211,9 @@ class User { */ public function setEnabled($enabled) { $this->enabled = $enabled; - $enabled = ($enabled) ? 'true' : 'false'; - \OC_Preferences::setValue($this->uid, 'core', 'enabled', $enabled); + if ($this->config) { + $enabled = ($enabled) ? 'true' : 'false'; + $this->config->setUserValue($this->uid, 'core', 'enabled', $enabled); + } } } -- cgit v1.2.3 From 5a646477a56bc3ac0a93d46839927f5c504cf4bd Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 18 Dec 2013 15:10:12 +0100 Subject: Fetch all appconfig values for an app at once and cache the results --- lib/private/appconfig.php | 138 ++++++++++++++++++++++++++++------------------ 1 file changed, 84 insertions(+), 54 deletions(-) (limited to 'lib') diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php index 4f170e054e9..58c037a91e7 100644 --- a/lib/private/appconfig.php +++ b/lib/private/appconfig.php @@ -37,7 +37,10 @@ * This class provides an easy way for apps to store config values in the * database. */ -class OC_Appconfig{ +class OC_Appconfig { + + private static $cache = array(); + /** * @brief Get all apps using the config * @return array with app ids @@ -47,11 +50,11 @@ class OC_Appconfig{ */ public static function getApps() { // No magic in here! - $query = OC_DB::prepare( 'SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`' ); + $query = OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`'); $result = $query->execute(); $apps = array(); - while( $row = $result->fetchRow()) { + while ($row = $result->fetchRow()) { $apps[] = $row["appid"]; } @@ -66,19 +69,32 @@ class OC_Appconfig{ * This function gets all keys of an app. Please note that the values are * not returned. */ - public static function getKeys( $app ) { + public static function getKeys($app) { // No magic in here as well - $query = OC_DB::prepare( 'SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); - $result = $query->execute( array( $app )); + $query = OC_DB::prepare('SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $result = $query->execute(array($app)); $keys = array(); - while( $row = $result->fetchRow()) { + while ($row = $result->fetchRow()) { $keys[] = $row["configkey"]; } return $keys; } + private static function getAppValues($app) { + if (!isset(self::$cache[$app])) { + self::$cache[$app] = array(); + } + $query = OC_DB::prepare('SELECT `configvalue`, `configkey` FROM `*PREFIX*appconfig`' + . ' WHERE `appid` = ?'); + $result = $query->execute(array($app)); + while ($row = $result->fetchRow()) { + self::$cache[$app][$row['configkey']] = $row['configvalue']; + } + return self::$cache[$app]; + } + /** * @brief Gets the config value * @param string $app app @@ -89,15 +105,18 @@ class OC_Appconfig{ * This function gets a value from the appconfig table. If the key does * not exist the default value will be returned */ - public static function getValue( $app, $key, $default = null ) { - // At least some magic in here :-) - $query = OC_DB::prepare( 'SELECT `configvalue` FROM `*PREFIX*appconfig`' - .' WHERE `appid` = ? AND `configkey` = ?' ); - $result = $query->execute( array( $app, $key )); - $row = $result->fetchRow(); - if($row) { - return $row["configvalue"]; - }else{ + public static function getValue($app, $key, $default = null) { + if (!isset(self::$cache[$app])) { + self::$cache[$app] = array(); + } + if (isset(self::$cache[$app][$key])) { + return self::$cache[$app][$key]; + } + $values = self::getAppValues($app); + if (isset($values[$key])) { + return $values[$key]; + } else { + self::$cache[$app][$key] = $default; return $default; } } @@ -109,8 +128,11 @@ class OC_Appconfig{ * @return bool */ public static function hasKey($app, $key) { - $exists = self::getKeys( $app ); - return in_array( $key, $exists ); + if (isset(self::$cache[$app]) and isset(self::$cache[$app][$key])) { + return true; + } + $exists = self::getKeys($app); + return in_array($key, $exists); } /** @@ -122,17 +144,16 @@ class OC_Appconfig{ * * Sets a value. If the key did not exist before it will be created. */ - public static function setValue( $app, $key, $value ) { + public static function setValue($app, $key, $value) { // Does the key exist? yes: update. No: insert - if(! self::hasKey($app, $key)) { - $query = OC_DB::prepare( 'INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` )' - .' VALUES( ?, ?, ? )' ); - $query->execute( array( $app, $key, $value )); - } - else{ - $query = OC_DB::prepare( 'UPDATE `*PREFIX*appconfig` SET `configvalue` = ?' - .' WHERE `appid` = ? AND `configkey` = ?' ); - $query->execute( array( $value, $app, $key )); + if (!self::hasKey($app, $key)) { + $query = OC_DB::prepare('INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` )' + . ' VALUES( ?, ?, ? )'); + $query->execute(array($app, $key, $value)); + } else { + $query = OC_DB::prepare('UPDATE `*PREFIX*appconfig` SET `configvalue` = ?' + . ' WHERE `appid` = ? AND `configkey` = ?'); + $query->execute(array($value, $app, $key)); } // TODO where should this be documented? \OC_Hook::emit('OC_Appconfig', 'post_set_value', array( @@ -140,6 +161,10 @@ class OC_Appconfig{ 'key' => $key, 'value' => $value )); + if (!isset(self::$cache[$app])) { + self::$cache[$app] = array(); + } + self::$cache[$app][$key] = $value; } /** @@ -150,10 +175,13 @@ class OC_Appconfig{ * * Deletes a key. */ - public static function deleteKey( $app, $key ) { + public static function deleteKey($app, $key) { // Boring! - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?' ); - $query->execute( array( $app, $key )); + $query = OC_DB::prepare('DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?'); + $query->execute(array($app, $key)); + if (isset(self::$cache[$app]) and isset(self::$cache[$app][$key])) { + unset(self::$cache[$app][$key]); + } return true; } @@ -165,44 +193,46 @@ class OC_Appconfig{ * * Removes all keys in appconfig belonging to the app. */ - public static function deleteApp( $app ) { + public static function deleteApp($app) { // Nothing special - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); - $query->execute( array( $app )); + $query = OC_DB::prepare('DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $query->execute(array($app)); + self::$cache[$app] = array(); return true; } /** * get multiply values, either the app or key can be used as wildcard by setting it to false + * * @param app * @param key * @return array */ public static function getValues($app, $key) { - if($app!==false and $key!==false) { + if ($app !== false and $key !== false) { return false; } - $fields='`configvalue`'; - $where='WHERE'; - $params=array(); - if($app!==false) { - $fields.=', `configkey`'; - $where.=' `appid` = ?'; - $params[]=$app; - $key='configkey'; - }else{ - $fields.=', `appid`'; - $where.=' `configkey` = ?'; - $params[]=$key; - $key='appid'; + $fields = '`configvalue`'; + $where = 'WHERE'; + $params = array(); + if ($app !== false) { + $fields .= ', `configkey`'; + $where .= ' `appid` = ?'; + $params[] = $app; + $key = 'configkey'; + } else { + $fields .= ', `appid`'; + $where .= ' `configkey` = ?'; + $params[] = $key; + $key = 'appid'; } - $queryString='SELECT '.$fields.' FROM `*PREFIX*appconfig` '.$where; - $query=OC_DB::prepare($queryString); - $result=$query->execute($params); - $values=array(); - while($row=$result->fetchRow()) { - $values[$row[$key]]=$row['configvalue']; + $queryString = 'SELECT ' . $fields . ' FROM `*PREFIX*appconfig` ' . $where; + $query = OC_DB::prepare($queryString); + $result = $query->execute($params); + $values = array(); + while ($row = $result->fetchRow()) { + $values[$row[$key]] = $row['configvalue']; } return $values; } -- cgit v1.2.3 From 6c707323f23d0abc0759ba2d61caf148c5c68edb Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 18 Dec 2013 15:25:28 +0100 Subject: only walk an array --- lib/private/json.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/json.php b/lib/private/json.php index 8401f7c3a12..6a9e5a2df5e 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -116,7 +116,9 @@ class OC_JSON{ * Encode JSON */ public static function encode($data) { - array_walk_recursive($data, array('OC_JSON', 'to_string')); + if (is_array($data)) { + array_walk_recursive($data, array('OC_JSON', 'to_string')); + } return json_encode($data); } } -- cgit v1.2.3 From 2e195dbdae2f270d40191ff6f01d10cc81c1dc06 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 18 Dec 2013 15:28:32 +0100 Subject: dont re-read the config values for an app when a non existing key is fetched --- lib/private/appconfig.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php index 58c037a91e7..dfe03698059 100644 --- a/lib/private/appconfig.php +++ b/lib/private/appconfig.php @@ -41,6 +41,8 @@ class OC_Appconfig { private static $cache = array(); + private static $appsLoaded = array(); + /** * @brief Get all apps using the config * @return array with app ids @@ -86,11 +88,14 @@ class OC_Appconfig { if (!isset(self::$cache[$app])) { self::$cache[$app] = array(); } - $query = OC_DB::prepare('SELECT `configvalue`, `configkey` FROM `*PREFIX*appconfig`' - . ' WHERE `appid` = ?'); - $result = $query->execute(array($app)); - while ($row = $result->fetchRow()) { - self::$cache[$app][$row['configkey']] = $row['configvalue']; + if (array_search($app, self::$appsLoaded) === false) { + $query = OC_DB::prepare('SELECT `configvalue`, `configkey` FROM `*PREFIX*appconfig`' + . ' WHERE `appid` = ?'); + $result = $query->execute(array($app)); + while ($row = $result->fetchRow()) { + self::$cache[$app][$row['configkey']] = $row['configvalue']; + } + self::$appsLoaded[] = $app; } return self::$cache[$app]; } -- cgit v1.2.3 From b109d411d8e88a84a1b2620b42e977c52c7492ff Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 18 Dec 2013 22:39:02 +0100 Subject: Added missing mime types This is mostly to fix acceptance tests that have a .cc file. Also fixed typo in python mime type. --- lib/private/mimetypes.list.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 8ab8ac81bd8..3034c2777f7 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -82,7 +82,7 @@ return array( 'mov'=>'video/quicktime', 'webm'=>'video/webm', 'wmv'=>'video/x-ms-asf', - 'py'=>'text/x-script.phyton', + 'py'=>'text/x-script.python', 'vcf' => 'text/vcard', 'vcard' => 'text/vcard', 'doc'=>'application/msword', @@ -103,5 +103,9 @@ return array( 'markdown' => 'text/markdown', 'mdown' => 'text/markdown', 'mdwn' => 'text/markdown', - 'reveal' => 'text/reveal' + 'reveal' => 'text/reveal', + 'c' => 'text/x-c', + 'cc' => 'text/x-c', + 'cpp' => 'text/x-c++src', + 'c++' => 'text/x-c++src', ); -- cgit v1.2.3 From 5eae75eeca825adedccb1ee29793ffab0502d6e9 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Thu, 19 Dec 2013 00:32:46 +0100 Subject: kill MDB2 in PHPDoc --- lib/public/db.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/public/db.php b/lib/public/db.php index c9997c79c3c..5dcb2d9bf4a 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -39,9 +39,9 @@ class DB { * @param string $query Query string * @param int $limit Limit of the SQL statement * @param int $offset Offset of the SQL statement - * @return \MDB2_Statement_Common prepared SQL query + * @return \Doctrine\DBAL\Statement prepared SQL query * - * SQL query via MDB2 prepare(), needs to be execute()'d! + * SQL query via Doctrine prepare(), needs to be execute()'d! */ static public function prepare( $query, $limit=null, $offset=null ) { return(\OC_DB::prepare($query, $limit, $offset)); @@ -73,7 +73,7 @@ class DB { * @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix * @return int * - * MDB2 lastInsertID() + * \Doctrine\DBAL\Connection lastInsertID() * * Call this method right after the insert command or other functions may * cause trouble! @@ -97,7 +97,7 @@ class DB { } /** - * Check if a result is an error, works with MDB2 and PDOException + * Check if a result is an error, works with Doctrine * @param mixed $result * @return bool */ -- cgit v1.2.3 From aa17a896ac03a4aa0530b9fbdf444d1e159d6ec2 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Thu, 19 Dec 2013 00:33:29 +0100 Subject: fix return statement --- lib/public/db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/public/db.php b/lib/public/db.php index 5dcb2d9bf4a..4a19d78d444 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -86,14 +86,14 @@ class DB { * Start a transaction */ public static function beginTransaction() { - return(\OC_DB::beginTransaction()); + \OC_DB::beginTransaction(); } /** * Commit the database changes done during a transaction that is in progress */ public static function commit() { - return(\OC_DB::commit()); + \OC_DB::commit(); } /** -- cgit v1.2.3 From 09bd5bd517fee80e8b44b7645b51a8ba482a4d7c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 12 Dec 2013 11:32:56 +0100 Subject: Added isUserAgent() method to request - added isUserAgent() method to OC_Request which makes it possible to test it - OC_Response::setContentDisposition now uses OC_Request::isUserAgent() --- lib/private/request.php | 23 ++++++++++++++++++++++ lib/private/response.php | 3 +-- tests/lib/request.php | 50 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/private/request.php b/lib/private/request.php index b2afda35922..d9d5ae08e28 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -7,6 +7,11 @@ */ class OC_Request { + + const USER_AGENT_IE = '/MSIE/'; + // Android Chrome user agent: https://developers.google.com/chrome/mobile/docs/user-agent + const USER_AGENT_ANDROID_MOBILE_CHROME = '#Android.*Chrome/[.0-9]*#'; + /** * @brief Check overwrite condition * @param string $type @@ -210,4 +215,22 @@ class OC_Request { return false; } } + + /** + * Checks whether the user agent matches a given regex + * @param string|array $agent agent name or array of agent names + * @return boolean true if at least one of the given agent matches, + * false otherwise + */ + static public function isUserAgent($agent) { + if (!is_array($agent)) { + $agent = array($agent); + } + foreach ($agent as $regex) { + if (preg_match($regex, $_SERVER['HTTP_USER_AGENT'])) { + return true; + } + } + return false; + } } diff --git a/lib/private/response.php b/lib/private/response.php index c6edda0f949..04746437347 100644 --- a/lib/private/response.php +++ b/lib/private/response.php @@ -153,8 +153,7 @@ class OC_Response { * @param string $type disposition type, either 'attachment' or 'inline' */ static public function setContentDispositionHeader( $filename, $type = 'attachment' ) { - // Android Chrome user agent: https://developers.google.com/chrome/mobile/docs/user-agent - if ( preg_match( '/MSIE/', $_SERVER['HTTP_USER_AGENT'] ) or preg_match( '#Android.*Chrome/[.0-9]*#', $_SERVER['HTTP_USER_AGENT'] ) ) { + if (OC_Request::isUserAgent(array(OC_Request::USER_AGENT_IE, OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME))) { header( 'Content-Disposition: ' . rawurlencode($type) . '; filename="' . rawurlencode( $filename ) . '"' ); } else { header( 'Content-Disposition: ' . rawurlencode($type) . '; filename*=UTF-8\'\'' . rawurlencode( $filename ) diff --git a/tests/lib/request.php b/tests/lib/request.php index 090cebc9231..c6401a57144 100644 --- a/tests/lib/request.php +++ b/tests/lib/request.php @@ -70,4 +70,54 @@ class Test_Request extends PHPUnit_Framework_TestCase { array('/oc/core1', '/oc/core/index.php'), ); } + + /** + * @dataProvider userAgentProvider + */ + public function testUserAgent($testAgent, $userAgent, $matches) { + $_SERVER['HTTP_USER_AGENT'] = $testAgent; + $this->assertEquals($matches, OC_Request::isUserAgent($userAgent)); + } + + function userAgentProvider() { + return array( + array( + 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', + OC_Request::USER_AGENT_IE, + true + ), + array( + 'Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0', + OC_Request::USER_AGENT_IE, + false + ), + array( + 'Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16S) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.59 Mobile Safari/537.36', + OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME, + true + ), + array( + 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', + OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME, + false + ), + // test two values + array( + 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', + array( + OC_Request::USER_AGENT_IE, + OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME, + ), + true + ), + array( + 'Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16S) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.59 Mobile Safari/537.36', + array( + OC_Request::USER_AGENT_IE, + OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME, + ), + true + ), + ); + } } -- cgit v1.2.3 From 1c340444a43d76c388153059aefd24276d8347a9 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 19 Dec 2013 20:18:09 +0100 Subject: Added test cleanup listener to detect untidy tests After each test suite, detects whether there are stray datafiles, hooks or proxies, then show a warning and clear them. --- lib/private/fileproxy.php | 6 +- lib/private/hook.php | 8 +++ tests/phpunit-autotest.xml | 7 +++ tests/testcleanuplistener.php | 139 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 159 insertions(+), 1 deletion(-) create mode 100644 tests/testcleanuplistener.php (limited to 'lib') diff --git a/lib/private/fileproxy.php b/lib/private/fileproxy.php index 52ec79b4bdb..2997aaf81b6 100644 --- a/lib/private/fileproxy.php +++ b/lib/private/fileproxy.php @@ -67,7 +67,11 @@ class OC_FileProxy{ self::$proxies[]=$proxy; } - public static function getProxies($operation) { + public static function getProxies($operation = null) { + if ($operation === null) { + // return all + return self::$proxies; + } $proxies=array(); foreach(self::$proxies as $proxy) { if(method_exists($proxy, $operation)) { diff --git a/lib/private/hook.php b/lib/private/hook.php index 8516cf0dcff..b63b442c31b 100644 --- a/lib/private/hook.php +++ b/lib/private/hook.php @@ -97,4 +97,12 @@ class OC_Hook{ self::$registered=array(); } } + + /** + * DO NOT USE! + * For unit tests ONLY! + */ + static public function getHooks() { + return self::$registered; + } } diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index a893e96ad97..1a2ab35491b 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -35,5 +35,12 @@ + + + + detail + + + diff --git a/tests/testcleanuplistener.php b/tests/testcleanuplistener.php new file mode 100644 index 00000000000..368ea7bc8f4 --- /dev/null +++ b/tests/testcleanuplistener.php @@ -0,0 +1,139 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * Detects tests that didn't clean up properly, show a warning, then clean up after them. + */ +class TestCleanupListener implements PHPUnit_Framework_TestListener { + private $verbosity; + + public function __construct($verbosity = 'verbose') { + $this->verbosity = $verbosity; + } + + public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) { + } + + public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function startTest(PHPUnit_Framework_Test $test) { + } + + public function endTest(PHPUnit_Framework_Test $test, $time) { + } + + public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { + } + + public function endTestSuite(PHPUnit_Framework_TestSuite $suite) { + if ($this->cleanStrayDataFiles() && $this->isShowSuiteWarning()) { + printf("TestSuite '%s': Did not clean up data dir\n", $suite->getName()); + } + if ($this->cleanStrayHooks() && $this->isShowSuiteWarning()) { + printf("TestSuite '%s': Did not clean up hooks\n", $suite->getName()); + } + if ($this->cleanProxies() && $this->isShowSuiteWarning()) { + printf("TestSuite '%s': Did not clean up proxies\n", $suite->getName()); + } + } + + private function isShowSuiteWarning() { + return $this->verbosity === 'suite' || $this->verbosity === 'detail'; + } + + private function isShowDetail() { + return $this->verbosity === 'detail'; + } + + private function unlinkDir($dir) { + if ($dh = opendir($dir)) { + while (($file = readdir($dh)) !== false) { + if ($file === '..' || $file === '.') { + continue; + } + $path = $dir . '/' . $file; + if (is_dir($path)) { + $this->unlinkDir($path); + } + else { + unlink($path); + } + } + closedir($dh); + } + rmdir($dir); + } + + private function cleanStrayDataFiles() { + $knownEntries = array( + 'owncloud.log' => true, + 'owncloud.db' => true, + '..' => true, + '.' => true + ); + $datadir = \OC_Config::getValue('datadirectory', \OC::$SERVERROOT . '/data'); + $entries = array(); + if ($dh = opendir($datadir)) { + while (($file = readdir($dh)) !== false) { + if (!isset($knownEntries[$file])) { + $entries[] = $file; + } + } + closedir($dh); + } + + if (count($entries) > 0) { + foreach ($entries as $entry) { + $this->unlinkDir($datadir . '/' . $entry); + if ($this->isShowDetail()) { + printf("Stray datadir entry: %s\n", $entry); + } + } + return true; + } + + return false; + } + + private function cleanStrayHooks() { + $hasHooks = false; + $hooks = OC_Hook::getHooks(); + if (!$hooks || sizeof($hooks) === 0) { + return false; + } + + foreach ($hooks as $signalClass => $signals) { + if (sizeof($signals)) { + foreach ($signals as $signalName => $handlers ) { + if (sizeof($handlers) > 0) { + $hasHooks = true; + OC_Hook::clear($signalClass, $signalName); + if ($this->isShowDetail()) { + printf("Stray hook: \"%s\" \"%s\"\n", $signalClass, $signalName); + } + } + } + } + } + return $hasHooks; + } + + private function cleanProxies() { + $proxies = OC_FileProxy::getProxies(); + OC_FileProxy::clearProxies(); + return count($proxies) > 0; + } +} +?> -- cgit v1.2.3 From 1c0b8ed21421334fed1a699e52dbb5765b66f96d Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Fri, 20 Dec 2013 13:48:46 +0100 Subject: Adding a random postfix to the part file. --- lib/private/connector/sabre/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 295575f0af6..d476e9fab14 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -64,7 +64,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D } // mark file as partial while uploading (ignored by the scanner) - $partpath = $this->path . '.part'; + $partpath = $this->path . rand() . '.part'; // if file is located in /Shared we write the part file to the users // root folder because we can't create new files in /shared -- cgit v1.2.3 From c6377e9125ed2a1b508dd1d2e12db8a82934f648 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 16 Dec 2013 17:22:44 +0100 Subject: Fixed apps loading order On SQLite the app order can be arbitrary and cause strange bugs. On MySQL, the app order seems to be always alphabetical. This fix enforces alphabetical order to make sure that all environments behave the same and to reduce bugs related to app loading order. Fixes #6442 --- lib/private/app.php | 10 ++++++---- lib/private/appconfig.php | 2 +- tests/lib/app.php | 13 +++++++++++++ tests/lib/appconfig.php | 2 +- 4 files changed, 21 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/private/app.php b/lib/private/app.php index eca40a81cc1..34c00e97fb9 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -166,20 +166,22 @@ class OC_App{ * get all enabled apps */ private static $enabledAppsCache = array(); - public static function getEnabledApps() { + public static function getEnabledApps($forceRefresh = false) { if(!OC_Config::getValue('installed', false)) { return array(); } - if(!empty(self::$enabledAppsCache)) { + if(!$forceRefresh && !empty(self::$enabledAppsCache)) { return self::$enabledAppsCache; } $apps=array('files'); $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' - .' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\''; + . ' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\'' + . ' ORDER BY `appid`'; if (OC_Config::getValue( 'dbtype', 'sqlite' ) === 'oci') { //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' - .' WHERE `configkey` = \'enabled\' AND to_char(`configvalue`)=\'yes\''; + . ' WHERE `configkey` = \'enabled\' AND to_char(`configvalue`)=\'yes\'' + . ' ORDER BY `appid`'; } $query = OC_DB::prepare( $sql ); $result=$query->execute(); diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php index dfe03698059..da0b2ff8604 100644 --- a/lib/private/appconfig.php +++ b/lib/private/appconfig.php @@ -52,7 +52,7 @@ class OC_Appconfig { */ public static function getApps() { // No magic in here! - $query = OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`'); + $query = OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig` ORDER BY `appid`'); $result = $query->execute(); $apps = array(); diff --git a/tests/lib/app.php b/tests/lib/app.php index 52eade90a6e..49f40f089bb 100644 --- a/tests/lib/app.php +++ b/tests/lib/app.php @@ -79,4 +79,17 @@ class Test_App extends PHPUnit_Framework_TestCase { $this->assertFalse(OC_App::isAppVersionCompatible($oc, $app)); } + /** + * Tests that the app order is correct + */ + public function testGetEnabledAppsIsSorted() { + $apps = \OC_App::getEnabledApps(true); + // copy array + $sortedApps = $apps; + sort($sortedApps); + // 'files' is always on top + unset($sortedApps[array_search('files', $sortedApps)]); + array_unshift($sortedApps, 'files'); + $this->assertEquals($sortedApps, $apps); + } } diff --git a/tests/lib/appconfig.php b/tests/lib/appconfig.php index 4d82cd5ba7b..23dd2549e32 100644 --- a/tests/lib/appconfig.php +++ b/tests/lib/appconfig.php @@ -35,7 +35,7 @@ class Test_Appconfig extends PHPUnit_Framework_TestCase { } public function testGetApps() { - $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`'); + $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig` ORDER BY `appid`'); $result = $query->execute(); $expected = array(); while ($row = $result->fetchRow()) { -- cgit v1.2.3 From 63a2bea7ec0171595f2a96639827e9d477fc6878 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 17 Dec 2013 00:44:35 +0100 Subject: Remove OC_DB_StatementWrapper::numRows(). Using this method will result in an unneccesary extra SQL query (which also may return an incorrect result because the underlying table changed in the meantime). In general: If you are performing an UPDATE, DELETE or equivalent query, OC_DB_StatementWrapper::execute() will already give you the number of "affected rows" via \Doctrine\DBAL\Driver\Statement::rowCount(). This will not work for SELECT queries, however. If you want to know whether a table contains any rows matching your condition, use "SELECT id FROM ... WHERE ... LIMIT 1". If you want to know whether a table contains any rows matching your condition and you also need the data, use "SELECT ... FROM ... WHERE ...", then use one of the fetch() methods. If you want to count the number of rows matching your condition, use use "SELECT COUNT(...) AS number_of_rows FROM ... WHERE ...", then use one of the fetch() methods. --- lib/private/db/statementwrapper.php | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'lib') diff --git a/lib/private/db/statementwrapper.php b/lib/private/db/statementwrapper.php index b8da1afc0e5..5e89261d936 100644 --- a/lib/private/db/statementwrapper.php +++ b/lib/private/db/statementwrapper.php @@ -29,25 +29,6 @@ class OC_DB_StatementWrapper { return call_user_func_array(array($this->statement,$name), $arguments); } - /** - * provide numRows - */ - public function numRows() { - $type = OC_Config::getValue( "dbtype", "sqlite" ); - if ($type == 'oci') { - // OCI doesn't have a queryString, just do a rowCount for now - return $this->statement->rowCount(); - } - $regex = '/^SELECT\s+(?:ALL\s+|DISTINCT\s+)?(?:.*?)\s+FROM\s+(.*)$/i'; - $queryString = $this->statement->getWrappedStatement()->queryString; - if (preg_match($regex, $queryString, $output) > 0) { - $query = OC_DB::prepare("SELECT COUNT(*) FROM {$output[1]}"); - return $query->execute($this->lastArguments)->fetchColumn(); - }else{ - return $this->statement->rowCount(); - } - } - /** * make execute return the result instead of a bool */ -- cgit v1.2.3 From f60ecfc7fd127b412f0aa5134ae2e6d976997ad9 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 22 Dec 2013 01:56:05 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/da.php | 21 +++++++++++++ apps/files/l10n/en_GB.php | 2 ++ apps/files/l10n/sl.php | 2 ++ apps/files_encryption/l10n/da.php | 8 +++++ apps/files_sharing/l10n/da.php | 4 ++- apps/user_ldap/l10n/nb_NO.php | 1 + l10n/da/files.po | 49 +++++++++++++++--------------- l10n/da/files_encryption.po | 29 +++++++++--------- l10n/da/files_sharing.po | 11 +++---- l10n/da/lib.po | 9 +++--- l10n/da/settings.po | 59 +++++++++++++++++++------------------ l10n/en_GB/files.po | 10 +++---- l10n/nb_NO/core.po | 4 +-- l10n/nb_NO/lib.po | 16 +++++----- l10n/nb_NO/user_ldap.po | 6 ++-- l10n/sl/files.po | 10 +++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/da.php | 1 + lib/l10n/nb_NO.php | 10 ++++--- settings/l10n/da.php | 22 ++++++++++++++ 31 files changed, 182 insertions(+), 116 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 93c9cb75925..9b7722444a8 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -3,6 +3,15 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kunne ikke flytte %s - der findes allerede en fil med dette navn", "Could not move %s" => "Kunne ikke flytte %s", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.", +"File name must not contain \"/\". Please choose a different name." => "Filnavnet må ikke indeholde \"/\". Vælg venligst et andet navn.", +"The name %s is already used in the folder %s. Please choose a different name." => "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn.", +"Not a valid source" => "Ikke en gyldig kilde", +"Server is not allowed to open URLs, please check the server configuration" => "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger", +"Error while downloading %s to %s" => "Fejl ved hentning af %s til %s", +"Error when creating the file" => "Fejl ved oprettelse af fil", +"Folder name cannot be empty." => "Mappenavnet kan ikke være tomt.", +"Folder name must not contain \"/\". Please choose a different name." => "Mappenavnet må ikke indeholde \"/\". Vælg venligst et andet navn.", +"Error when creating the folder" => "Fejl ved oprettelse af mappen", "Unable to set upload directory." => "Ude af stand til at vælge upload mappe.", "Invalid Token" => "Ugyldig Token ", "No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.", @@ -23,13 +32,20 @@ $TRANSLATIONS = array( "Upload cancelled." => "Upload afbrudt.", "Could not get result from server." => "Kunne ikke hente resultat fra server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", +"URL cannot be empty" => "URL kan ikke være tom", +"In the home folder 'Shared' is a reserved filename" => "Navnet 'Shared' er reserveret i hjemmemappen.", "{new_name} already exists" => "{new_name} eksisterer allerede", +"Could not create file" => "Kunne ikke oprette fil", +"Could not create folder" => "Kunne ikke oprette mappe", +"Error fetching URL" => "Fejl ved URL", "Share" => "Del", "Delete permanently" => "Slet permanent", "Rename" => "Omdøb", "Pending" => "Afventer", +"Could not rename file" => "Kunne ikke omdøbe filen", "replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", "undo" => "fortryd", +"Error deleting file." => "Fejl ved sletnign af fil.", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} og {files}", @@ -38,6 +54,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", "Your storage is full, files can not be updated or synced anymore!" => "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!", "Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. ", "Your download is being prepared. This might take some time if the files are big." => "Dit download forberedes. Dette kan tage lidt tid ved større filer.", "Error moving file" => "Fejl ved flytning af fil", @@ -45,6 +63,7 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", +"Invalid folder name. Usage of 'Shared' is reserved." => "Ugyldig mappenavn. 'Shared' er reserveret.", "%s could not be renamed" => "%s kunne ikke omdøbes", "Upload" => "Upload", "File handling" => "Filhåndtering", @@ -56,12 +75,14 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maksimal størrelse på ZIP filer", "Save" => "Gem", "New" => "Ny", +"New text file" => "Ny tekstfil", "Text file" => "Tekstfil", "New folder" => "Ny Mappe", "Folder" => "Mappe", "From link" => "Fra link", "Deleted files" => "Slettede filer", "Cancel upload" => "Fortryd upload", +"You don’t have permission to upload or create files here" => "Du har ikke tilladelse til at uploade eller oprette filer her", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", "Download" => "Download", "Delete" => "Slet", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index e45c4bf4ede..ac93aa68abb 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "File name must not contain \"/\". Please choose a different name.", "The name %s is already used in the folder %s. Please choose a different name." => "The name %s is already used in the folder %s. Please choose a different name.", "Not a valid source" => "Not a valid source", +"Server is not allowed to open URLs, please check the server configuration" => "Server is not allowed to open URLs, please check the server configuration", "Error while downloading %s to %s" => "Error whilst downloading %s to %s", "Error when creating the file" => "Error when creating the file", "Folder name cannot be empty." => "Folder name cannot be empty.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} already exists", "Could not create file" => "Could not create file", "Could not create folder" => "Could not create folder", +"Error fetching URL" => "Error fetching URL", "Share" => "Share", "Delete permanently" => "Delete permanently", "Rename" => "Rename", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 421792f3218..037e5f6b6b0 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Ime datoteke ne sme vsebovati znaka \"/\". Določiti je treba drugo ime.", "The name %s is already used in the folder %s. Please choose a different name." => "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime.", "Not a valid source" => "Vir ni veljaven", +"Server is not allowed to open URLs, please check the server configuration" => "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika.", "Error while downloading %s to %s" => "Napaka med prejemanjem %s v mapo %s", "Error when creating the file" => "Napaka med ustvarjanjem datoteke", "Folder name cannot be empty." => "Ime mape ne more biti prazna vrednost.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} že obstaja", "Could not create file" => "Ni mogoče ustvariti datoteke", "Could not create folder" => "Ni mogoče ustvariti mape", +"Error fetching URL" => "Napaka pridobivanja naslova URL", "Share" => "Souporaba", "Delete permanently" => "Izbriši dokončno", "Rename" => "Preimenuj", diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 9d307f1064d..9e4290534c0 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -8,19 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt.", "Private key password successfully updated." => "Privat nøgle kodeord succesfuldt opdateret.", "Could not update the private key password. Maybe the old password was not correct." => "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. ", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan ikke kryptere denne fil, sandsynligvis fordi felen er delt. Bed venligst filens ejer om at dele den med dig på ny.", +"Unknown error please check your system settings or contact your administrator" => "Ukendt fejl. Kontroller venligst dit system eller kontakt din administrator", "Missing requirements." => "Manglende betingelser.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.", "Following users are not set up for encryption:" => "Følgende brugere er ikke sat op til kryptering:", +"Initial encryption started... This can take some time. Please wait." => "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent venligst.", "Saving..." => "Gemmer...", +"Go directly to your " => "Gå direkte til din ", "personal settings" => "Personlige indstillinger", "Encryption" => "Kryptering", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):", "Recovery key password" => "Gendannelsesnøgle kodeord", +"Repeat Recovery key password" => "Gentag gendannelse af nøglekoden", "Enabled" => "Aktiveret", "Disabled" => "Deaktiveret", "Change recovery key password:" => "Skift gendannelsesnøgle kodeord:", "Old Recovery key password" => "Gammel Gendannelsesnøgle kodeord", "New Recovery key password" => "Ny Gendannelsesnøgle kodeord", +"Repeat New Recovery key password" => "Gentag dannelse af ny gendannaleses nøglekode", "Change Password" => "Skift Kodeord", "Your private key password no longer match your log-in password:" => "Dit private nøgle kodeord stemmer ikke længere overens med dit login kodeord:", "Set your old private key password to your current log-in password." => "Sæt dit gamle private nøgle kodeord til at være dit nuværende login kodeord. ", diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index aef3ad98811..849b0e28d30 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -1,5 +1,6 @@ "Delingen er beskyttet af kodeord", "The password is wrong. Try again." => "Kodeordet er forkert. Prøv igen.", "Password" => "Kodeord", "Sorry, this link doesn’t seem to work anymore." => "Desværre, dette link ser ikke ud til at fungerer længere.", @@ -13,6 +14,7 @@ $TRANSLATIONS = array( "Download" => "Download", "Upload" => "Upload", "Cancel upload" => "Fortryd upload", -"No preview available for" => "Forhåndsvisning ikke tilgængelig for" +"No preview available for" => "Forhåndsvisning ikke tilgængelig for", +"Direct link" => "Direkte link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/nb_NO.php b/apps/user_ldap/l10n/nb_NO.php index c9bca8d4c45..625ec79d76b 100644 --- a/apps/user_ldap/l10n/nb_NO.php +++ b/apps/user_ldap/l10n/nb_NO.php @@ -29,6 +29,7 @@ $TRANSLATIONS = array( "One Base DN per line" => "En hoved DN pr. linje", "You can specify Base DN for users and groups in the Advanced tab" => "Du kan spesifisere Base DN for brukere og grupper under Avansert fanen", "Back" => "Tilbake", +"Continue" => "Fortsett", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Warning: PHP LDAP modulen er ikke installert, hjelperen vil ikke virke. Vennligst be din system-administrator om å installere den.", "Configuration Active" => "Konfigurasjon aktiv", "When unchecked, this configuration will be skipped." => "Når ikke huket av så vil denne konfigurasjonen bli hoppet over.", diff --git a/l10n/da/files.po b/l10n/da/files.po index 4703db4a118..53216837a8c 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -5,14 +5,15 @@ # Translators: # Sappe, 2013 # claus_chr , 2013 +# lodahl , 2013 # Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 18:50+0000\n" +"Last-Translator: lodahl \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" @@ -36,44 +37,44 @@ msgstr "Filnavnet kan ikke stå tomt." #: ajax/newfile.php:62 msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Filnavnet må ikke indeholde \"/\". Vælg venligst et andet navn." #: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." -msgstr "" +msgstr "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn." #: ajax/newfile.php:81 msgid "Not a valid source" -msgstr "" +msgstr "Ikke en gyldig kilde" #: ajax/newfile.php:86 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger" #: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" -msgstr "" +msgstr "Fejl ved hentning af %s til %s" #: ajax/newfile.php:140 msgid "Error when creating the file" -msgstr "" +msgstr "Fejl ved oprettelse af fil" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." -msgstr "" +msgstr "Mappenavnet kan ikke være tomt." #: ajax/newfolder.php:27 msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Mappenavnet må ikke indeholde \"/\". Vælg venligst et andet navn." #: ajax/newfolder.php:56 msgid "Error when creating the folder" -msgstr "" +msgstr "Fejl ved oprettelse af mappen" #: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." @@ -161,11 +162,11 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler #: js/file-upload.js:523 msgid "URL cannot be empty" -msgstr "" +msgstr "URL kan ikke være tom" #: js/file-upload.js:527 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" +msgstr "Navnet 'Shared' er reserveret i hjemmemappen." #: js/file-upload.js:529 js/filelist.js:379 msgid "{new_name} already exists" @@ -173,15 +174,15 @@ msgstr "{new_name} eksisterer allerede" #: js/file-upload.js:595 msgid "Could not create file" -msgstr "" +msgstr "Kunne ikke oprette fil" #: js/file-upload.js:611 msgid "Could not create folder" -msgstr "" +msgstr "Kunne ikke oprette mappe" #: js/file-upload.js:661 msgid "Error fetching URL" -msgstr "" +msgstr "Fejl ved URL" #: js/fileactions.js:125 msgid "Share" @@ -201,7 +202,7 @@ msgstr "Afventer" #: js/filelist.js:405 msgid "Could not rename file" -msgstr "" +msgstr "Kunne ikke omdøbe filen" #: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" @@ -213,7 +214,7 @@ msgstr "fortryd" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "Fejl ved sletnign af fil." #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" @@ -259,14 +260,14 @@ msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen." #: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer." #: js/files.js:118 msgid "" @@ -302,7 +303,7 @@ msgstr "Ændret" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Ugyldig mappenavn. 'Shared' er reserveret." #: lib/app.php:101 #, php-format @@ -351,7 +352,7 @@ msgstr "Ny" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Ny tekstfil" #: templates/index.php:8 msgid "Text file" @@ -379,7 +380,7 @@ msgstr "Fortryd upload" #: templates/index.php:40 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "Du har ikke tilladelse til at uploade eller oprette filer her" #: templates/index.php:45 msgid "Nothing in here. Upload something!" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index a285b06ce82..90861c46ca3 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # Sappe, 2013 # claus_chr , 2013 +# lodahl , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 18:40+0000\n" +"Last-Translator: lodahl \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" @@ -60,7 +61,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. " #: files/error.php:16 #, php-format @@ -68,38 +69,38 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Kan ikke kryptere denne fil, sandsynligvis fordi felen er delt. Bed venligst filens ejer om at dele den med dig på ny." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Ukendt fejl. Kontroller venligst dit system eller kontakt din administrator" -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." msgstr "Manglende betingelser." -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." -#: hooks/hooks.php:273 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" msgstr "Følgende brugere er ikke sat op til kryptering:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent venligst." #: js/settings-admin.js:13 msgid "Saving..." @@ -107,7 +108,7 @@ msgstr "Gemmer..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Gå direkte til din " #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -128,7 +129,7 @@ msgstr "Gendannelsesnøgle kodeord" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Gentag gendannelse af nøglekoden" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -152,7 +153,7 @@ msgstr "Ny Gendannelsesnøgle kodeord" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Gentag dannelse af ny gendannaleses nøglekode" #: templates/settings-admin.php:58 msgid "Change Password" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 3509eda2d52..54b706c403e 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Sappe, 2013 +# lodahl , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 16:20+0000\n" +"Last-Translator: lodahl \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" @@ -20,7 +21,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Delingen er beskyttet af kodeord" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." @@ -82,4 +83,4 @@ msgstr "Forhåndsvisning ikke tilgængelig for" #: templates/public.php:99 msgid "Direct link" -msgstr "" +msgstr "Direkte link" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 523aa3d3b53..94320b42d86 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -5,14 +5,15 @@ # Translators: # Sappe, 2013 # claus_chr , 2013 +# lodahl , 2013 # Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 16:01+0000\n" +"Last-Translator: lodahl \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" @@ -93,7 +94,7 @@ msgstr "De markerede filer er for store til at generere en ZIP-fil." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Hent venligst filerne hver for sig i mindre dele eller spørg din administrator." #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index c51980025cc..9b91fc8745a 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -4,15 +4,16 @@ # # Translators: # Sappe, 2013 +# lodahl , 2013 # Morten Juhl-Johansen Zölde-Fejér , 2013 # Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 16:40+0000\n" +"Last-Translator: lodahl \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" @@ -31,11 +32,11 @@ msgstr "Adgangsfejl" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Dit fulde navn er blevet ændret." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Ikke i stand til at ændre dit fulde navn" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -201,21 +202,21 @@ msgstr "Slet" msgid "add group" msgstr "Tilføj gruppe" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede" #: personal.php:45 personal.php:46 msgid "__language_name__" @@ -223,23 +224,23 @@ msgstr "Dansk" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Alt (alvorlige fejl, fejl, advarsler, info, debug)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Info, advarsler, fejl og alvorlige fejl" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Advarsler, fejl og alvorlige fejl" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Fejl og alvorlige fejl" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "Kun alvorlige fejl" #: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" @@ -250,7 +251,7 @@ msgstr "Sikkerhedsadvarsel" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS." #: templates/admin.php:39 msgid "" @@ -288,14 +289,14 @@ msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette m #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Din PHP-version er forældet" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Din PHP-version er forældet. Vi anbefaler at du opgraderer til 5.3.8 eller nyere, fordi ældre versioner har kendte fejl. Det er derfor muligt at installationen ikke fungerer korrekt." #: templates/admin.php:93 msgid "Locale not working" @@ -303,20 +304,20 @@ msgstr "Landestandard fungerer ikke" #: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Systemets locale kan ikke sættes til et der bruger UTF-8." #: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Det betyder at der kan være problemer med visse tegn i filnavne." #: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Vi anbefaler at du installerer den krævede pakke på dit system, for at understøtte følgende locales: %s." #: templates/admin.php:118 msgid "Internet connection not working" @@ -343,11 +344,11 @@ msgstr "Udføre en opgave med hver side indlæst" msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "" +msgstr "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http." #: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "Brug systemets cron service til at kalde cron.php hvert 15. minut." #: templates/admin.php:163 msgid "Sharing" @@ -535,7 +536,7 @@ msgstr "Skift kodeord" #: templates/personal.php:58 templates/users.php:88 msgid "Full Name" -msgstr "" +msgstr "Fulde navn" #: templates/personal.php:73 msgid "Email" @@ -571,7 +572,7 @@ msgstr "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskær #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Din avatar kommer fra din oprindelige konto." #: templates/personal.php:101 msgid "Abort" @@ -598,7 +599,7 @@ msgstr "WebDAV" msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "" +msgstr "Brug denne adresse for at tilgå dine filer via WebDAV" #: templates/personal.php:150 msgid "Encryption" @@ -606,7 +607,7 @@ msgstr "Kryptering" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer" #: templates/personal.php:158 msgid "Log-in password" @@ -640,7 +641,7 @@ msgstr "Standard opbevaring" #: templates/users.php:44 templates/users.php:139 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" @@ -660,7 +661,7 @@ msgstr "Opbevaring" #: templates/users.php:108 msgid "change full name" -msgstr "" +msgstr "ændre fulde navn" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 13534c2d1e4..259e932c171 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 14:50+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,7 +50,7 @@ msgstr "Not a valid source" #: ajax/newfile.php:86 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Server is not allowed to open URLs, please check the server configuration" #: ajax/newfile.php:103 #, php-format @@ -179,7 +179,7 @@ msgstr "Could not create folder" #: js/file-upload.js:661 msgid "Error fetching URL" -msgstr "" +msgstr "Error fetching URL" #: js/fileactions.js:125 msgid "Share" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index b4b9d0c3b6a..0260c4f4c8e 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 06:53+0000\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 07:10+0000\n" "Last-Translator: onionhead \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 36998eeea5e..034978c5f13 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 07:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -55,11 +55,11 @@ msgstr "" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Ukjent filtype" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Ugyldig bilde" #: private/defaults.php:34 msgid "web services under your control" @@ -292,13 +292,13 @@ msgstr "sekunder siden" msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n minutter siden" #: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n timer siden" #: private/template/functions.php:133 msgid "today" @@ -312,7 +312,7 @@ msgstr "i går" msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n dager siden" #: private/template/functions.php:138 msgid "last month" @@ -322,7 +322,7 @@ msgstr "forrige måned" msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n dager siden" #: private/template/functions.php:141 msgid "last year" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 9dea55ae3be..ca55fe72a9a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 07:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -285,7 +285,7 @@ msgstr "Tilbake" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Fortsett" #: templates/settings.php:11 msgid "" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index a129cbfa836..83b375f340e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 21:20+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +51,7 @@ msgstr "Vir ni veljaven" #: ajax/newfile.php:86 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika." #: ajax/newfile.php:103 #, php-format @@ -180,7 +180,7 @@ msgstr "Ni mogoče ustvariti mape" #: js/file-upload.js:661 msgid "Error fetching URL" -msgstr "" +msgstr "Napaka pridobivanja naslova URL" #: js/fileactions.js:125 msgid "Share" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4a7f15d6384..ace287afe36 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 cea91173a2f..1e01c27457f 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 7ede902cfc8..db6eb00e67b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 8cc324808c1..7f9e1c9da8f 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 7f55ed880cf..2363b5dd68d 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 777f741ceb3..b602e6a84f7 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 32af3943f74..fd3bb9f7371 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 d2ca86a7e7f..db622e224c0 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 08e47d1c57d..3bd57f188b6 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 dd86c789682..e3f7a420549 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 1f77163065a..0b7d1cd6f8c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\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 2af09563c2c..4cb7ab6a539 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 074b89a00ea..65eb7466b6a 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Filer skal downloades en for en.", "Back to Files" => "Tilbage til Filer", "Selected files too large to generate zip file." => "De markerede filer er for store til at generere en ZIP-fil.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Hent venligst filerne hver for sig i mindre dele eller spørg din administrator.", "No source specified when installing app" => "Ingen kilde angivet under installation af app", "No href specified when installing app from http" => "Ingen href angivet under installation af app via http", "No path specified when installing app from local file" => "Ingen sti angivet under installation af app fra lokal fil", diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index eb5e8d766fd..5da36f9be37 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Settings" => "Innstillinger", "Users" => "Brukere", "Admin" => "Admin", +"Unknown filetype" => "Ukjent filtype", +"Invalid image" => "Ugyldig bilde", "web services under your control" => "web tjenester du kontrollerer", "ZIP download is turned off." => "ZIP-nedlasting av avslått", "Files need to be downloaded one by one." => "Filene må lastes ned en om gangen", @@ -20,13 +22,13 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Vennligst dobbelsjekk installasjonsguiden.", "Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"", "seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","%n minutter siden"), +"_%n hour ago_::_%n hours ago_" => array("","%n timer siden"), "today" => "i dag", "yesterday" => "i går", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("","%n dager siden"), "last month" => "forrige måned", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","%n dager siden"), "last year" => "forrige år", "years ago" => "år siden" ); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 00e1fd68b3d..6fe3cf6c396 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", +"Your full name has been changed." => "Dit fulde navn er blevet ændret.", +"Unable to change full name" => "Ikke i stand til at ændre dit fulde navn", "Group already exists" => "Gruppen findes allerede", "Unable to add group" => "Gruppen kan ikke oprettes", "Email saved" => "Email adresse gemt", @@ -44,19 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Et gyldigt brugernavn skal angives", "Error creating user" => "Fejl ved oprettelse af bruger", "A valid password must be provided" => "En gyldig adgangskode skal angives", +"Warning: Home directory for user \"{user}\" already exists" => "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede", "__language_name__" => "Dansk", +"Everything (fatal issues, errors, warnings, info, debug)" => "Alt (alvorlige fejl, fejl, advarsler, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, advarsler, fejl og alvorlige fejl", +"Warnings, errors and fatal issues" => "Advarsler, fejl og alvorlige fejl", +"Errors and fatal issues" => "Fejl og alvorlige fejl", +"Fatal issues only" => "Kun alvorlige fejl", "Security Warning" => "Sikkerhedsadvarsel", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. ", "Setup Warning" => "Opsætnings Advarsel", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the installation guides." => "Dobbelttjek venligst installations vejledningerne.", "Module 'fileinfo' missing" => "Module 'fileinfo' mangler", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.", +"Your PHP version is outdated" => "Din PHP-version er forældet", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Din PHP-version er forældet. Vi anbefaler at du opgraderer til 5.3.8 eller nyere, fordi ældre versioner har kendte fejl. Det er derfor muligt at installationen ikke fungerer korrekt.", "Locale not working" => "Landestandard fungerer ikke", +"System locale can not be set to a one which supports UTF-8." => "Systemets locale kan ikke sættes til et der bruger UTF-8.", +"This means that there might be problems with certain characters in file names." => "Det betyder at der kan være problemer med visse tegn i filnavne.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Vi anbefaler at du installerer den krævede pakke på dit system, for at understøtte følgende locales: %s.", "Internet connection not working" => "Internetforbindelse fungerer ikke", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner.", "Cron" => "Cron", "Execute one task with each page loaded" => "Udføre en opgave med hver side indlæst", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Brug systemets cron service til at kalde cron.php hvert 15. minut.", "Sharing" => "Deling", "Enable Share API" => "Aktiver Share API", "Allow apps to use the Share API" => "Tillad apps til at bruge Share API", @@ -100,6 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Nuværende adgangskode", "New password" => "Nyt kodeord", "Change password" => "Skift kodeord", +"Full Name" => "Fulde navn", "Email" => "E-mail", "Your email address" => "Din emailadresse", "Fill in an email address to enable password recovery" => "Indtast en emailadresse for at kunne få påmindelse om adgangskode", @@ -108,12 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Vælg nyt fra Filer", "Remove image" => "Fjern billede", "Either png or jpg. Ideally square but you will be able to crop it." => "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. ", +"Your avatar is provided by your original account." => "Din avatar kommer fra din oprindelige konto.", "Abort" => "Afbryd", "Choose as profile image" => "Vælg som profilbillede", "Language" => "Sprog", "Help translate" => "Hjælp med oversættelsen", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Brug denne adresse for at tilgå dine filer via WebDAV", "Encryption" => "Kryptering", +"The encryption app is no longer enabled, please decrypt all your files" => "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer", "Log-in password" => "Log-in kodeord", "Decrypt all Files" => "Dekrypter alle Filer ", "Login Name" => "Loginnavn", @@ -121,10 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Administrator gendannelse kodeord", "Enter the recovery password in order to recover the users files during password change" => "Indtast et gendannelse kodeord for, at kunne gendanne brugerens filer ved ændring af kodeord", "Default Storage" => "Standard opbevaring", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")", "Unlimited" => "Ubegrænset", "Other" => "Andet", "Username" => "Brugernavn", "Storage" => "Opbevaring", +"change full name" => "ændre fulde navn", "set new password" => "skift kodeord", "Default" => "Standard" ); -- cgit v1.2.3 From dbbd99db0929b3dfdc4a56ee8b93e5447ad36265 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 24 Dec 2013 01:55:40 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/it.php | 2 +- apps/files/l10n/nl.php | 2 + apps/files/l10n/ru.php | 2 + apps/files/l10n/tr.php | 6 +- apps/files_encryption/l10n/ko.php | 24 ++++---- apps/files_sharing/l10n/ko.php | 16 ++--- core/l10n/ko.php | 82 ++++++++++++++++--------- core/l10n/ru.php | 1 + l10n/el/settings.po | 24 ++++---- l10n/it/files.po | 8 +-- l10n/it/settings.po | 22 +++---- l10n/ko/core.po | 115 ++++++++++++++++++------------------ l10n/ko/files_encryption.po | 38 ++++++------ l10n/ko/files_sharing.po | 24 ++++---- l10n/ko/lib.po | 45 +++++++------- l10n/ko/user_webdavauth.po | 11 ++-- l10n/nl/files.po | 10 ++-- l10n/ru/core.po | 9 +-- l10n/ru/files.po | 11 ++-- l10n/ru/settings.po | 19 +++--- 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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 10 ++-- l10n/tr/lib.po | 10 ++-- l10n/tr/settings.po | 10 ++-- lib/l10n/ko.php | 35 +++++------ lib/l10n/tr.php | 4 +- settings/l10n/el.php | 5 ++ settings/l10n/it.php | 8 +-- settings/l10n/ru.php | 6 ++ settings/l10n/tr.php | 6 +- 42 files changed, 326 insertions(+), 267 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 64a51d1b16b..2a10e9977f4 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -6,7 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Il nome del file non può contenere il carattere \"/\". Scegli un nome diverso.", "The name %s is already used in the folder %s. Please choose a different name." => "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diverso.", "Not a valid source" => "Non è una sorgente valida", -"Server is not allowed to open URLs, please check the server configuration" => "Al server non è permesso aprire URL, per favore controlla la configurazione del server", +"Server is not allowed to open URLs, please check the server configuration" => "Al server non è permesso aprire URL, controlla la configurazione del server", "Error while downloading %s to %s" => "Errore durante lo scaricamento di %s su %s", "Error when creating the file" => "Errore durante la creazione del file", "Folder name cannot be empty." => "Il nome della cartella non può essere vuoto.", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 9edee862cbf..a391e25b952 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "De bestandsnaam mag geen \"/\" bevatten. Kies een andere naam.", "The name %s is already used in the folder %s. Please choose a different name." => "De naam %s bestaat al in map %s. Kies een andere naam.", "Not a valid source" => "Geen geldige bron", +"Server is not allowed to open URLs, please check the server configuration" => "Server mag geen URS's openen, controleer de server configuratie", "Error while downloading %s to %s" => "Fout bij downloaden %s naar %s", "Error when creating the file" => "Fout bij creëren bestand", "Folder name cannot be empty." => "Mapnaam mag niet leeg zijn.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} bestaat al", "Could not create file" => "Kon bestand niet creëren", "Could not create folder" => "Kon niet creëren map", +"Error fetching URL" => "Fout bij ophalen URL", "Share" => "Delen", "Delete permanently" => "Verwijder definitief", "Rename" => "Hernoem", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index cede72f26e7..968da63aaca 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Имя файла не должно содержать символ \"/\". Пожалуйста, выберите другое имя.", "The name %s is already used in the folder %s. Please choose a different name." => "Имя %s уже используется в папке %s. Пожалуйста выберите другое имя.", "Not a valid source" => "Неправильный источник", +"Server is not allowed to open URLs, please check the server configuration" => "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера", "Error while downloading %s to %s" => "Ошибка при загрузке %s в %s", "Error when creating the file" => "Ошибка при создании файла", "Folder name cannot be empty." => "Имя папки не может быть пустым.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} уже существует", "Could not create file" => "Не удалось создать файл", "Could not create folder" => "Не удалось создать папку", +"Error fetching URL" => "Ошибка получения URL", "Share" => "Открыть доступ", "Delete permanently" => "Удалено навсегда", "Rename" => "Переименовать", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index a484f304bb3..ebe0b78916f 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -56,7 +56,7 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın", "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin.", -"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin.", "Your download is being prepared. This might take some time if the files are big." => "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir.", "Error moving file" => "Dosya taşıma hatası", "Error" => "Hata", @@ -70,9 +70,9 @@ $TRANSLATIONS = array( "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", "Needed for multi-file and folder downloads." => "Çoklu dosya ve dizin indirmesi için gerekli.", -"Enable ZIP-download" => "ZIP indirmeyi aktif et", +"Enable ZIP-download" => "ZIP indirmeyi etkinleştir", "0 is unlimited" => "0 limitsiz demektir", -"Maximum input size for ZIP files" => "ZIP dosyaları için en fazla girdi sayısı", +"Maximum input size for ZIP files" => "ZIP dosyaları için en fazla girdi boyutu", "Save" => "Kaydet", "New" => "Yeni", "New text file" => "Yeni metin dosyası", diff --git a/apps/files_encryption/l10n/ko.php b/apps/files_encryption/l10n/ko.php index cf06136c9b6..394460f9514 100644 --- a/apps/files_encryption/l10n/ko.php +++ b/apps/files_encryption/l10n/ko.php @@ -1,26 +1,26 @@ "복구키가 성공적으로 활성화 되었습니다", -"Could not enable recovery key. Please check your recovery key password!" => "복구키를 활성화 할수 없습니다. 복구키의 비밀번호를 확인해주세요!", -"Recovery key successfully disabled" => "복구키가 성공적으로 비활성화 되었습니다", -"Could not disable recovery key. Please check your recovery key password!" => "복구키를 비활성화 할수 없습니다. 복구키의 비밀번호를 확인해주세요!", +"Recovery key successfully enabled" => "복구 키가 성공적으로 활성화되었습니다", +"Could not enable recovery key. Please check your recovery key password!" => "복구 키를 활성화 할 수 없습니다. 복구 키의 암호를 확인해 주세요!", +"Recovery key successfully disabled" => "복구 키가 성공적으로 비활성화 되었습니다", +"Could not disable recovery key. Please check your recovery key password!" => "복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해주세요!", "Password successfully changed." => "암호가 성공적으로 변경되었습니다", -"Could not change the password. Maybe the old password was not correct." => "암호를 변경할수 없습니다. 아마도 예전 암호가 정확하지 않은것 같습니다.", -"Private key password successfully updated." => "개인키 암호가 성공적으로 업데이트 됨.", +"Could not change the password. Maybe the old password was not correct." => "암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다.", +"Private key password successfully updated." => "개인 키 암호가 성공적으로 업데이트 됨.", "Saving..." => "저장 중...", "personal settings" => "개인 설정", "Encryption" => "암호화", -"Recovery key password" => "키 비밀번호 복구", +"Recovery key password" => "복구 키 암호", "Enabled" => "활성화", "Disabled" => "비활성화", -"Change recovery key password:" => "복구 키 비밀번호 변경", -"Old Recovery key password" => "예전 복구 키 비밀번호", -"New Recovery key password" => "새 복구 키 비밀번호", +"Change recovery key password:" => "복구 키 암호 변경:", +"Old Recovery key password" => "이전 복구 키 암호", +"New Recovery key password" => "새 복구 키 암호", "Change Password" => "암호 변경", -"Old log-in password" => "예전 로그인 암호", +"Old log-in password" => "이전 로그인 암호", "Current log-in password" => "현재 로그인 암호", "Update Private Key Password" => "개인 키 암호 업데이트", "File recovery settings updated" => "파일 복구 설정 업데이트됨", -"Could not update file recovery" => "파일 복구를 업데이트 할수 없습니다" +"Could not update file recovery" => "파일 복구를 업데이트 할 수 없습니다" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ko.php b/apps/files_sharing/l10n/ko.php index 90f59ed1673..03c4c1aea94 100644 --- a/apps/files_sharing/l10n/ko.php +++ b/apps/files_sharing/l10n/ko.php @@ -1,18 +1,20 @@ "비밀번호가 틀립니다. 다시 입력해주세요.", +"This share is password-protected" => "이 공유는 암호로 보호되어 있습니다", +"The password is wrong. Try again." => "암호가 잘못되었습니다. 다시 입력해 주십시오.", "Password" => "암호", -"Sorry, this link doesn’t seem to work anymore." => "죄송합니다만 이 링크는 더이상 작동되지 않습니다.", +"Sorry, this link doesn’t seem to work anymore." => "죄송합니다. 이 링크는 더 이상 작동하지 않습니다.", "Reasons might be:" => "이유는 다음과 같을 수 있습니다:", -"the item was removed" => "이 항목은 삭제되었습니다", -"the link expired" => "링크가 만료되었습니다", -"sharing is disabled" => "공유가 비활성되었습니다", -"For more info, please ask the person who sent this link." => "더 자세한 설명은 링크를 보내신 분에게 여쭤보십시오", +"the item was removed" => "항목이 삭제됨", +"the link expired" => "링크가 만료됨", +"sharing is disabled" => "공유가 비활성화됨", +"For more info, please ask the person who sent this link." => "자세한 정보는 링크를 보낸 사람에게 문의하십시오.", "%s shared the folder %s with you" => "%s 님이 폴더 %s을(를) 공유하였습니다", "%s shared the file %s with you" => "%s 님이 파일 %s을(를) 공유하였습니다", "Download" => "다운로드", "Upload" => "업로드", "Cancel upload" => "업로드 취소", -"No preview available for" => "다음 항목을 미리 볼 수 없음:" +"No preview available for" => "다음 항목을 미리 볼 수 없음:", +"Direct link" => "직접 링크" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ko.php b/core/l10n/ko.php index a25197cec3c..dc7cb8d3e73 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,16 +1,17 @@ "%s에게 메일을 보낼 수 없습니다.", -"Turned on maintenance mode" => "유지보수 모드 켜기", -"Turned off maintenance mode" => "유지보수 모드 끄기", +"%s shared »%s« with you" => "%s 님이 %s을(를) 공유하였습니다", +"Couldn't send mail to following users: %s " => "%s 님에게 메일을 보낼 수 없습니다.", +"Turned on maintenance mode" => "유지 보수 모드 켜짐", +"Turned off maintenance mode" => "유지 보수 모드 꺼짐", "Updated database" => "데이터베이스 업데이트 됨", -"Updating filecache, this may take really long..." => "파일 캐시 업데이트중, 시간이 약간 걸릴수 있습니다...", -"Updated filecache" => "파일캐시 업데이트 됨", +"Updating filecache, this may take really long..." => "파일 캐시 업데이트 중, 시간이 약간 걸릴 수 있습니다...", +"Updated filecache" => "파일 캐시 업데이트 됨", "... %d%% done ..." => "... %d%% 완료됨 ...", "No image or file provided" => "이미지나 파일이 없음", -"Unknown filetype" => "알려지지 않은 파일형식", +"Unknown filetype" => "알려지지 않은 파일 형식", "Invalid image" => "잘못된 이미지", -"No temporary profile picture available, try again" => "사용가능한 프로파일 사진이 없습니다. 재시도 하세요.", +"No temporary profile picture available, try again" => "사용 가능한 프로필 사진이 없습니다. 다시 시도하십시오.", "No crop data provided" => "선택된 데이터가 없습니다.", "Sunday" => "일요일", "Monday" => "월요일", @@ -44,17 +45,20 @@ $TRANSLATIONS = array( "last year" => "작년", "years ago" => "년 전", "Choose" => "선택", +"Error loading file picker template: {error}" => "파일 선택 템플릿을 불러오는 중 오류 발생: {error}", "Yes" => "예", "No" => "아니요", -"Ok" => "승락", -"_{count} file conflict_::_{count} file conflicts_" => array("{count} 파일 중복"), -"One file conflict" => "하나의 파일이 충돌", -"Which files do you want to keep?" => "어느 파일들을 보관하고 싶습니까?", -"If you select both versions, the copied file will have a number added to its name." => "두 버전을 모두 선택하면, 파일이름에 번호가 추가될 것입니다.", +"Ok" => "확인", +"Error loading message template: {error}" => "메시지 템플릿을 불러오는 중 오류 발생: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("파일 {count}개 충돌"), +"One file conflict" => "파일 1개 충돌", +"Which files do you want to keep?" => "어느 파일을 유지하시겠습니까?", +"If you select both versions, the copied file will have a number added to its name." => "두 버전을 모두 선택하면, 파일 이름에 번호가 추가될 것입니다.", "Cancel" => "취소", "Continue" => "계속", "(all selected)" => "(모두 선택됨)", -"({count} selected)" => "({count}개가 선택됨)", +"({count} selected)" => "({count}개 선택됨)", +"Error loading file exists template" => "파일 존재함 템플릿을 불러오는 중 오류 발생", "Shared" => "공유됨", "Share" => "공유", "Error" => "오류", @@ -63,9 +67,11 @@ $TRANSLATIONS = array( "Error while changing permissions" => "권한 변경하는 중 오류 발생", "Shared with you and the group {group} by {owner}" => "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중", "Shared with you by {owner}" => "{owner} 님이 공유 중", +"Share with user or group …" => "사용자 및 그룹과 공유...", +"Share link" => "링크 공유", "Password protect" => "암호 보호", "Password" => "암호", -"Allow Public Upload" => "퍼블릭 업로드 허용", +"Allow Public Upload" => "공개 업로드 허용", "Email link to person" => "이메일 주소", "Send" => "전송", "Set expiration date" => "만료 날짜 설정", @@ -76,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "다시 공유할 수 없습니다", "Shared in {item} with {user}" => "{user} 님과 {item}에서 공유 중", "Unshare" => "공유 해제", +"notify by email" => "이메일로 알림", "can edit" => "편집 가능", "access control" => "접근 제어", "create" => "생성", @@ -89,20 +96,23 @@ $TRANSLATIONS = array( "Email sent" => "이메일 발송됨", "Warning" => "경고", "The object type is not specified." => "객체 유형이 지정되지 않았습니다.", +"Enter new" => "새로운 값 입력", "Delete" => "삭제", "Add" => "추가", -"Edit tags" => "태크 편집", -"Please reload the page." => "페이지를 새로고침 해주세요", +"Edit tags" => "태그 편집", +"Error loading dialog template: {error}" => "대화 상자 템플릿을 불러오는 중 오류 발생: {error}", +"No tags selected for deletion." => "삭제할 태그를 선택하지 않았습니다.", +"Please reload the page." => "페이지를 새로 고치십시오.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "업데이트가 실패하였습니다. 이 문제를 ownCloud 커뮤니티에 보고해 주십시오.", "The update was successful. Redirecting you to ownCloud now." => "업데이트가 성공하였습니다. ownCloud로 돌아갑니다.", -"%s password reset" => "%s 비밀번호 재설정", +"%s password reset" => "%s 암호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {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 ." => "비밀번호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.
    만약 수분이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하세요.
    만약 없다면, 메일 관리자에게 문의하세요.", -"Request failed!
    Did you make sure your email/username was right?" => "요청이 실패했습니다!
    email 주소와 사용자 명을 정확하게 넣으셨나요?", +"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 ." => "암호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.
    만약 수 분 이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하십시오.
    스팸 메일함에도 없다면, 메일 관리자에게 문의하십시오.", +"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 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" => "네, 전 제 비밀번호를 리셋하길 원합니다", +"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" => "예, 지금 내 암호를 재설정합니다", "Reset" => "재설정", "Your password was reset" => "암호가 재설정되었습니다", "To login page" => "로그인 화면으로", @@ -113,17 +123,25 @@ $TRANSLATIONS = array( "Apps" => "앱", "Admin" => "관리자", "Help" => "도움말", +"Error loading tags" => "태그 불러오기 오류", "Tag already exists" => "태그가 이미 존재합니다", +"Error deleting tag(s)" => "태그 삭제 오류", +"Error tagging" => "태그 추가 오류", +"Error untagging" => "태그 해제 오류", +"Error favoriting" => "즐겨찾기 추가 오류", +"Error unfavoriting" => "즐겨찾기 삭제 오류", "Access forbidden" => "접근 금지됨", "Cloud not found" => "클라우드를 찾을 수 없습니다", -"Cheers!" => "화이팅!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "안녕하세요,\n\n%s 님이 %s을(를) 공유하였음을 알려 드립니다.\n보기 링크: %s\n\n", +"The share will expire on %s." => "이 공유는 %s 까지 유지됩니다.", +"Cheers!" => "감사합니다!", "Security Warning" => "보안 경고", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "사용 중인 PHP 버전이 NULL 바이트 공격에 취약합니다 (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "%s의 보안을 위하여 PHP 버전을 업데이트하십시오.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "안전한 난수 생성기를 사용할 수 없습니다. PHP의 OpenSSL 확장을 활성화해 주십시오.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "안전한 난수 생성기를 사용하지 않으면 공격자가 암호 초기화 토큰을 추측하여 계정을 탈취할 수 있습니다.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => ".htaccess 파일이 처리되지 않아서 데이터 디렉터리와 파일을 인터넷에서 접근할 수 없을 수도 있습니다.", -"For information how to properly configure your server, please see the documentation." => "올바른 서버 설정을 위한 정보는 문서를 참조하세요.", +"For information how to properly configure your server, please see the documentation." => "올바른 서버 설정을 위한 정보는 문서를 참조하십시오.", "Create an admin account" => "관리자 계정 만들기", "Advanced" => "고급", "Data folder" => "데이터 폴더", @@ -135,18 +153,26 @@ $TRANSLATIONS = array( "Database tablespace" => "데이터베이스 테이블 공간", "Database host" => "데이터베이스 호스트", "Finish setup" => "설치 완료", -"Finishing …" => "종료중 ...", -"%s is available. Get more information on how to update." => "%s는 사용가능합니다. 업데이트방법에 대해서 더 많은 정보를 얻으세요.", +"Finishing …" => "완료 중 ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "이 애플리케이션을 올바르게 사용하려면 자바스크립트를 활성화해야 합니다. 자바스크립트를 활성화한 다음 인터페이스를 새로 고치십시오.", +"%s is available. Get more information on how to update." => "%s을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 자세한 정보를 얻으십시오.", "Log out" => "로그아웃", "Automatic logon rejected!" => "자동 로그인이 거부되었습니다!", "If you did not change your password recently, your account may be compromised!" => "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 수도 있습니다!", "Please change your password to secure your account again." => "계정의 안전을 위하여 암호를 변경하십시오.", "Server side authentication failed!" => "서버 인증 실패!", -"Please contact your administrator." => "관리자에게 문의하세요.", +"Please contact your administrator." => "관리자에게 문의하십시오.", "Lost your password?" => "암호를 잊으셨습니까?", "remember" => "기억하기", "Log in" => "로그인", -"Alternative Logins" => "대체 ", -"Updating ownCloud to version %s, this may take a while." => "ownCloud를 버전 %s(으)로 업데이트합니다. 잠시 기다려 주십시오." +"Alternative Logins" => "대체 로그인", +"Hey there,

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

    " => "안녕하세요,

    %s 님이 %s을(를) 공유하였음을 알려 드립니다.
    지금 보기!

    ", +"This ownCloud instance is currently in single user mode." => "ownCloud 인스턴스가 현재 단일 사용자 모드로 동작 중입니다.", +"This means only administrators can use the instance." => "현재 시스템 관리자만 인스턴스를 사용할 수 있습니다.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "이 메시지가 계속 표시되거나, 예상하지 못하였을 때 표시된다면 시스템 관리자에게 연락하십시오", +"Thank you for your patience." => "기다려 주셔서 감사합니다.", +"Updating ownCloud to version %s, this may take a while." => "ownCloud를 버전 %s(으)로 업데이트합니다. 잠시 기다려 주십시오.", +"This ownCloud instance is currently being updated, which may take a while." => "ownCloud 인스턴스가 현재 업데이트 중입니다. 잠시만 기다려 주십시오.", +"Please reload this page after a short time to continue using ownCloud." => "잠시 후 페이지를 다시 불러온 다음 ownCloud를 사용해 주십시오." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ru.php b/core/l10n/ru.php index ec505f6f5fa..cd889e98e12 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Хост базы данных", "Finish setup" => "Завершить установку", "Finishing …" => "Завершаем...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Это приложение требует включённый JavaScript для корректной работы. Пожалуйста, включите JavaScript и перезагрузите интерфейс.", "%s is available. Get more information on how to update." => "%s доступно. Получить дополнительную информацию о порядке обновления.", "Log out" => "Выйти", "Automatic logon rejected!" => "Автоматический вход в систему отключен!", diff --git a/l10n/el/settings.po b/l10n/el/settings.po index d711909a2e6..f049af2dd2a 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-23 19:10+0000\n" +"Last-Translator: vkehayas \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" @@ -205,19 +205,19 @@ msgstr "Διαγραφή" msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη" @@ -254,7 +254,7 @@ msgstr "Προειδοποίηση Ασφαλείας" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού." #: templates/admin.php:39 msgid "" @@ -292,14 +292,14 @@ msgstr "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμ #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Η έκδοση PHP είναι απαρχαιωμένη" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Η έκδοση PHP είναι απαρχαιωμένη. Συνιστούμε ανεπιφύλακτα να ενημερώσετε στην 5.3.8 ή νεώτερη καθώς παλαιότερες εκδόσεις είναι γνωστό πως περιέχουν σφάλματα. Είναι πιθανόν ότι αυτή η εγκατάσταση δεν λειτουργεί σωστά." #: templates/admin.php:93 msgid "Locale not working" @@ -575,7 +575,7 @@ msgstr "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα ε #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό." #: templates/personal.php:101 msgid "Abort" @@ -610,7 +610,7 @@ msgstr "Κρυπτογράφηση" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας" #: templates/personal.php:158 msgid "Log-in password" diff --git a/l10n/it/files.po b/l10n/it/files.po index 1753d296751..888244240e0 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 09:40+0000\n" -"Last-Translator: polxmod \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 22:30+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" @@ -51,7 +51,7 @@ msgstr "Non è una sorgente valida" #: ajax/newfile.php:86 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "Al server non è permesso aprire URL, per favore controlla la configurazione del server" +msgstr "Al server non è permesso aprire URL, controlla la configurazione del server" #: ajax/newfile.php:103 #, php-format diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 2b43e39615a..b972a97ad19 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 23:10+0000\n" -"Last-Translator: polxmod \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 22:30+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" @@ -202,19 +202,19 @@ msgstr "Elimina" msgid "add group" msgstr "aggiungi gruppo" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avviso: la cartella home dell'utente \"{user}\" esiste già" @@ -251,7 +251,7 @@ msgstr "Avviso di sicurezza" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "Sei connesso a %s con il protocollo HTTP. Ti suggeriamo fortemente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP." +msgstr "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP." #: templates/admin.php:39 msgid "" @@ -289,14 +289,14 @@ msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abili #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "La tua versione di PHP è superata" +msgstr "La tua versione di PHP è obsoleta" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "La tua versione di PHP è superata. Ti raccomandiamo di aggiornare alla versione 5.3.8 o superiore poiché è risaputo che le vecchie versioni siano fallate. L'installazione attuale potrebbe non funzionare correttamente." +msgstr "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente." #: templates/admin.php:93 msgid "Locale not working" @@ -572,7 +572,7 @@ msgstr "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla." #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "Il tuo avatar è ottenuto da tuo account originale." +msgstr "Il tuo avatar è ottenuto dal tuo account originale." #: templates/personal.php:101 msgid "Abort" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 35113cc97e7..cdccfe60000 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -3,16 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 , 2013 +# madeng , 2013 # madeng , 2013 +# Park Shinjo , 2013 # Shinjo Park , 2013 # 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:23+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" @@ -23,20 +26,20 @@ msgstr "" #: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s 님이 %s을(를) 공유하였습니다" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "%s에게 메일을 보낼 수 없습니다." +msgstr "%s 님에게 메일을 보낼 수 없습니다." #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "유지보수 모드 켜기" +msgstr "유지 보수 모드 켜짐" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "유지보수 모드 끄기" +msgstr "유지 보수 모드 꺼짐" #: ajax/update.php:17 msgid "Updated database" @@ -44,11 +47,11 @@ msgstr "데이터베이스 업데이트 됨" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "파일 캐시 업데이트중, 시간이 약간 걸릴수 있습니다..." +msgstr "파일 캐시 업데이트 중, 시간이 약간 걸릴 수 있습니다..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "파일캐시 업데이트 됨" +msgstr "파일 캐시 업데이트 됨" #: ajax/update.php:26 #, php-format @@ -61,7 +64,7 @@ msgstr "이미지나 파일이 없음" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "알려지지 않은 파일형식" +msgstr "알려지지 않은 파일 형식" #: avatar/controller.php:85 msgid "Invalid image" @@ -69,7 +72,7 @@ msgstr "잘못된 이미지" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "사용가능한 프로파일 사진이 없습니다. 재시도 하세요." +msgstr "사용 가능한 프로필 사진이 없습니다. 다시 시도하십시오." #: avatar/controller.php:135 msgid "No crop data provided" @@ -209,7 +212,7 @@ msgstr "선택" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "파일 선택 템플릿을 불러오는 중 오류 발생: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -221,30 +224,30 @@ msgstr "아니요" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "승락" +msgstr "확인" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "메시지 템플릿을 불러오는 중 오류 발생: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "{count} 파일 중복" +msgstr[0] "파일 {count}개 충돌" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "하나의 파일이 충돌" +msgstr "파일 1개 충돌" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "어느 파일들을 보관하고 싶습니까?" +msgstr "어느 파일을 유지하시겠습니까?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "두 버전을 모두 선택하면, 파일이름에 번호가 추가될 것입니다." +msgstr "두 버전을 모두 선택하면, 파일 이름에 번호가 추가될 것입니다." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -260,11 +263,11 @@ msgstr "(모두 선택됨)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "({count}개가 선택됨)" +msgstr "({count}개 선택됨)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "파일 존재함 템플릿을 불러오는 중 오류 발생" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -301,11 +304,11 @@ msgstr "{owner} 님이 공유 중" #: js/share.js:213 msgid "Share with user or group …" -msgstr "" +msgstr "사용자 및 그룹과 공유..." #: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "링크 공유" #: js/share.js:222 msgid "Password protect" @@ -317,7 +320,7 @@ msgstr "암호" #: js/share.js:229 msgid "Allow Public Upload" -msgstr "퍼블릭 업로드 허용" +msgstr "공개 업로드 허용" #: js/share.js:233 msgid "Email link to person" @@ -361,7 +364,7 @@ msgstr "공유 해제" #: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "이메일로 알림" #: js/share.js:408 msgid "can edit" @@ -417,7 +420,7 @@ msgstr "객체 유형이 지정되지 않았습니다." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "새로운 값 입력" #: js/tags.js:27 msgid "Delete" @@ -429,19 +432,19 @@ msgstr "추가" #: js/tags.js:39 msgid "Edit tags" -msgstr "태크 편집" +msgstr "태그 편집" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "대화 상자 템플릿을 불러오는 중 오류 발생: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "삭제할 태그를 선택하지 않았습니다." #: js/update.js:8 msgid "Please reload the page." -msgstr "페이지를 새로고침 해주세요" +msgstr "페이지를 새로 고치십시오." #: js/update.js:17 msgid "" @@ -457,7 +460,7 @@ msgstr "업데이트가 성공하였습니다. ownCloud로 돌아갑니다." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "%s 비밀번호 재설정" +msgstr "%s 암호 재설정" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -468,11 +471,11 @@ 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 "비밀번호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.
    만약 수분이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하세요.
    만약 없다면, 메일 관리자에게 문의하세요." +msgstr "암호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.
    만약 수 분 이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하십시오.
    스팸 메일함에도 없다면, 메일 관리자에게 문의하십시오." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "요청이 실패했습니다!
    email 주소와 사용자 명을 정확하게 넣으셨나요?" +msgstr "요청이 실패했습니다!
    이메일 주소와 사용자 이름을 정확하게 입력하셨습니까?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." @@ -489,11 +492,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:27 msgid "Yes, I really want to reset my password now" -msgstr "네, 전 제 비밀번호를 리셋하길 원합니다" +msgstr "예, 지금 내 암호를 재설정합니다" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" @@ -537,7 +540,7 @@ msgstr "도움말" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "태그 불러오기 오류" #: tags/controller.php:48 msgid "Tag already exists" @@ -545,23 +548,23 @@ msgstr "태그가 이미 존재합니다" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "태그 삭제 오류" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "태그 추가 오류" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "태그 해제 오류" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "즐겨찾기 추가 오류" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "즐겨찾기 삭제 오류" #: templates/403.php:12 msgid "Access forbidden" @@ -579,16 +582,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "안녕하세요,\n\n%s 님이 %s을(를) 공유하였음을 알려 드립니다.\n보기 링크: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "이 공유는 %s 까지 유지됩니다." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "화이팅!" +msgstr "감사합니다!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -627,7 +630,7 @@ msgstr ".htaccess 파일이 처리되지 않아서 데이터 디렉터리와 파 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "올바른 서버 설정을 위한 정보는 문서를 참조하세요." +msgstr "올바른 서버 설정을 위한 정보는 문서를 참조하십시오." #: templates/installation.php:48 msgid "Create an admin account" @@ -677,19 +680,19 @@ msgstr "설치 완료" #: templates/installation.php:185 msgid "Finishing …" -msgstr "종료중 ..." +msgstr "완료 중 ..." #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "이 애플리케이션을 올바르게 사용하려면 자바스크립트를 활성화해야 합니다. 자바스크립트를 활성화한 다음 인터페이스를 새로 고치십시오." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s는 사용가능합니다. 업데이트방법에 대해서 더 많은 정보를 얻으세요." +msgstr "%s을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 자세한 정보를 얻으십시오." #: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" @@ -715,7 +718,7 @@ msgstr "서버 인증 실패!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "관리자에게 문의하세요." +msgstr "관리자에게 문의하십시오." #: templates/login.php:44 msgid "Lost your password?" @@ -731,32 +734,32 @@ msgstr "로그인" #: templates/login.php:58 msgid "Alternative Logins" -msgstr "대체 " +msgstr "대체 로그인" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

    " -msgstr "" +msgstr "안녕하세요,

    %s 님이 %s을(를) 공유하였음을 알려 드립니다.
    지금 보기!

    " #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "ownCloud 인스턴스가 현재 단일 사용자 모드로 동작 중입니다." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "현재 시스템 관리자만 인스턴스를 사용할 수 있습니다." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "이 메시지가 계속 표시되거나, 예상하지 못하였을 때 표시된다면 시스템 관리자에게 연락하십시오" #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "기다려 주셔서 감사합니다." #: templates/update.admin.php:3 #, php-format @@ -766,8 +769,8 @@ msgstr "ownCloud를 버전 %s(으)로 업데이트합니다. 잠시 기다려 #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "ownCloud 인스턴스가 현재 업데이트 중입니다. 잠시만 기다려 주십시오." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "잠시 후 페이지를 다시 불러온 다음 ownCloud를 사용해 주십시오." diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index f1c34c056be..a8e6361cce5 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -4,13 +4,15 @@ # # Translators: # 책읽는달팽 , 2013 +# Shinjo Park , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-01 02:20+0000\n" -"Last-Translator: 책읽는달팽 \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 13:40+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" @@ -20,21 +22,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "복구키가 성공적으로 활성화 되었습니다" +msgstr "복구 키가 성공적으로 활성화되었습니다" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "복구키를 활성화 할수 없습니다. 복구키의 비밀번호를 확인해주세요!" +msgstr "복구 키를 활성화 할 수 없습니다. 복구 키의 암호를 확인해 주세요!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "복구키가 성공적으로 비활성화 되었습니다" +msgstr "복구 키가 성공적으로 비활성화 되었습니다" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "복구키를 비활성화 할수 없습니다. 복구키의 비밀번호를 확인해주세요!" +msgstr "복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해주세요!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -42,11 +44,11 @@ msgstr "암호가 성공적으로 변경되었습니다" #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "암호를 변경할수 없습니다. 아마도 예전 암호가 정확하지 않은것 같습니다." +msgstr "암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "개인키 암호가 성공적으로 업데이트 됨." +msgstr "개인 키 암호가 성공적으로 업데이트 됨." #: ajax/updatePrivateKeyPassword.php:54 msgid "" @@ -81,18 +83,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" msgstr "" @@ -123,7 +125,7 @@ msgstr "" #: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "키 비밀번호 복구" +msgstr "복구 키 암호" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" @@ -139,15 +141,15 @@ msgstr "비활성화" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "복구 키 비밀번호 변경" +msgstr "복구 키 암호 변경:" #: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "예전 복구 키 비밀번호" +msgstr "이전 복구 키 암호" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "새 복구 키 비밀번호" +msgstr "새 복구 키 암호" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" @@ -173,7 +175,7 @@ msgstr "" #: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "예전 로그인 암호" +msgstr "이전 로그인 암호" #: templates/settings-personal.php:28 msgid "Current log-in password" @@ -199,4 +201,4 @@ msgstr "파일 복구 설정 업데이트됨" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "파일 복구를 업데이트 할수 없습니다" +msgstr "파일 복구를 업데이트 할 수 없습니다" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index eafcf147b51..7d21cd8d9d3 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -4,13 +4,15 @@ # # Translators: # 책읽는달팽 , 2013 +# Park Shinjo , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:24+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" @@ -20,11 +22,11 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "이 공유는 암호로 보호되어 있습니다" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." -msgstr "비밀번호가 틀립니다. 다시 입력해주세요." +msgstr "암호가 잘못되었습니다. 다시 입력해 주십시오." #: templates/authenticate.php:10 msgid "Password" @@ -32,7 +34,7 @@ msgstr "암호" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "죄송합니다만 이 링크는 더이상 작동되지 않습니다." +msgstr "죄송합니다. 이 링크는 더 이상 작동하지 않습니다." #: templates/part.404.php:4 msgid "Reasons might be:" @@ -40,19 +42,19 @@ msgstr "이유는 다음과 같을 수 있습니다:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "이 항목은 삭제되었습니다" +msgstr "항목이 삭제됨" #: templates/part.404.php:7 msgid "the link expired" -msgstr "링크가 만료되었습니다" +msgstr "링크가 만료됨" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "공유가 비활성되었습니다" +msgstr "공유가 비활성화됨" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "더 자세한 설명은 링크를 보내신 분에게 여쭤보십시오" +msgstr "자세한 정보는 링크를 보낸 사람에게 문의하십시오." #: templates/public.php:18 #, php-format @@ -82,4 +84,4 @@ msgstr "다음 항목을 미리 볼 수 없음:" #: templates/public.php:99 msgid "Direct link" -msgstr "" +msgstr "직접 링크" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 69e2045c576..b1fbf718762 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -3,15 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 , 2013 +# chohy , 2013 # chohy , 2013 +# Park Shinjo , 2013 # 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:20+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" @@ -57,7 +60,7 @@ msgstr "\"%s\" 업그레이드에 실패했습니다." #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "알수없는 파일형식" +msgstr "알 수 없는 파일 형식" #: private/avatar.php:71 msgid "Invalid image" @@ -74,7 +77,7 @@ msgstr "\"%s\"을(를) 열 수 없습니다." #: private/files.php:231 msgid "ZIP download is turned off." -msgstr "ZIP 다운로드가 비활성화되었습니다." +msgstr "ZIP 다운로드가 비활성화 되었습니다." #: private/files.php:232 msgid "Files need to be downloaded one by one." @@ -92,7 +95,7 @@ msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오" #: private/installer.php:63 msgid "No source specified when installing app" @@ -100,7 +103,7 @@ msgstr "앱을 설치할 때 소스가 지정되지 않았습니다." #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "http에서 앱을 설치할 대 href가 지정되지 않았습니다." +msgstr "http에서 앱을 설치할 때 href가 지정되지 않았습니다." #: private/installer.php:75 msgid "No path specified when installing app from local file" @@ -121,7 +124,7 @@ msgstr "앱에서 info.xml 파일이 제공되지 않았습니다." #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다. " +msgstr "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다." #: private/installer.php:140 msgid "" @@ -133,22 +136,22 @@ msgstr "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "출하되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." +msgstr "출시되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." #: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. " +msgstr "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다." #: private/installer.php:169 msgid "App directory already exists" -msgstr "앱 디렉토리가 이미 존재합니다. " +msgstr "앱 디렉터리가 이미 존재합니다." #: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s " +msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s" #: private/json.php:28 msgid "Application is not enabled" @@ -177,17 +180,17 @@ msgstr "그림" #: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "데이터베이스 사용자 명을 %s 에 입력해주십시오" +msgstr "%s 데이터베이스 사용자 이름을 입력해 주십시오." #: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." -msgstr "데이터베이스 명을 %s 에 입력해주십시오" +msgstr "%s 데이터베이스 이름을 입력하십시오." #: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다" +msgstr "%s 데이터베이스 이름에는 마침표를 사용할 수 없습니다" #: private/setup/mssql.php:20 #, php-format @@ -234,16 +237,16 @@ msgstr "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "이 사용자를 MySQL에서 뺍니다." +msgstr "이 사용자를 MySQL에서 삭제하십시오" #: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다. " +msgstr "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다." #: private/setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "이 사용자를 MySQL에서 뺍니다." +msgstr "이 사용자를 MySQL에서 삭제하십시오." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -260,15 +263,15 @@ msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s" #: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL의 사용자 명 혹은 비밀번호가 잘못되었습니다" +msgstr "PostgreSQL의 사용자 이름 또는 암호가 잘못되었습니다" #: private/setup.php:28 msgid "Set an admin username." -msgstr "관리자 이름 설정" +msgstr "관리자의 사용자 이름을 설정합니다." #: private/setup.php:31 msgid "Set an admin password." -msgstr "관리자 비밀번호 설정" +msgstr "관리자의 암호를 설정합니다." #: private/setup.php:195 msgid "" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index 3f4b8bc0bb4..e63287131e5 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -5,18 +5,19 @@ # Translators: # aoiob4305 , 2013 # aoiob4305 , 2013 +# 책읽는달팽 , 2013 # 남자사람 , 2012 # 남자사람 , 2012 # Shinjo Park , 2013 # Shinjo Park , 2013 -# smallsnail , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 14:50+0000\n" -"Last-Translator: smallsnail \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:18+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/nl/files.po b/l10n/nl/files.po index 311a25dcfe2..bd5ede56598 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-23 08:30+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +51,7 @@ msgstr "Geen geldige bron" #: ajax/newfile.php:86 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Server mag geen URS's openen, controleer de server configuratie" #: ajax/newfile.php:103 #, php-format @@ -180,7 +180,7 @@ msgstr "Kon niet creëren map" #: js/file-upload.js:661 msgid "Error fetching URL" -msgstr "" +msgstr "Fout bij ophalen URL" #: js/fileactions.js:125 msgid "Share" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 241fd0cce29..e1f8d178420 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -7,6 +7,7 @@ # alfsoft , 2013 # lord93 , 2013 # foool , 2013 +# Evgeniy Spitsyn , 2013 # jekader , 2013 # Mescalinich , 2013 # stushev , 2013 @@ -22,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 17:10+0000\n" +"Last-Translator: Evgeniy Spitsyn \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" @@ -706,7 +707,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Это приложение требует включённый JavaScript для корректной работы. Пожалуйста, включите JavaScript и перезагрузите интерфейс." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 2b3959f2cb8..71eb028f582 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -4,6 +4,7 @@ # # Translators: # lord93 , 2013 +# Evgeniy Spitsyn , 2013 # jekader , 2013 # eurekafag , 2013 # Victor Bravo <>, 2013 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 17:50+0000\n" +"Last-Translator: Evgeniy Spitsyn \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" @@ -58,7 +59,7 @@ msgstr "Неправильный источник" #: ajax/newfile.php:86 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера" #: ajax/newfile.php:103 #, php-format @@ -187,7 +188,7 @@ msgstr "Не удалось создать папку" #: js/file-upload.js:661 msgid "Error fetching URL" -msgstr "" +msgstr "Ошибка получения URL" #: js/fileactions.js:125 msgid "Share" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 19a44609b6a..86cfda2cae8 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -7,6 +7,7 @@ # Alexander Shashkevych , 2013 # alfsoft , 2013 # lord93 , 2013 +# Evgeniy Spitsyn , 2013 # jekader , 2013 # eurekafag , 2013 # unixoid , 2013 @@ -20,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-18 11:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 19:50+0000\n" +"Last-Translator: Evgeniy Spitsyn \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" @@ -260,7 +261,7 @@ msgstr "Предупреждение безопасности" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS." #: templates/admin.php:39 msgid "" @@ -298,14 +299,14 @@ msgstr "PHP-модуль 'fileinfo' отсутствует. Мы настоят #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Ваша версия PHP устарела" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом." #: templates/admin.php:93 msgid "Locale not working" @@ -319,14 +320,14 @@ msgstr "" msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Это значит, что могут быть проблемы с некоторыми символами в именах файлов." #: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s." #: templates/admin.php:118 msgid "Internet connection not working" @@ -616,7 +617,7 @@ msgstr "Шифрование" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы" #: templates/personal.php:158 msgid "Log-in password" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index ace287afe36..48127d2fa35 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 1e01c27457f..dfffa5c15c9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 db6eb00e67b..08574b76258 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 7f9e1c9da8f..e7fbfd07631 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 2363b5dd68d..94193ef88f7 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 b602e6a84f7..aa1754355c5 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 fd3bb9f7371..7b855de8847 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 db622e224c0..10b54b6ed78 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 3bd57f188b6..9641b126b16 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 e3f7a420549..f1daa6e2dae 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 0b7d1cd6f8c..f34bc45d321 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\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 4cb7ab6a539..aa8ae5a4323 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 5c065d3125b..94422046343 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-23 15:00+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index a2eeee98bf5..ec801bc49d4 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-23 17:20+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -273,7 +273,7 @@ msgstr "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli d msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz." +msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin." #: js/files.js:349 msgid "" @@ -332,7 +332,7 @@ msgstr "Çoklu dosya ve dizin indirmesi için gerekli." #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP indirmeyi aktif et" +msgstr "ZIP indirmeyi etkinleştir" #: templates/admin.php:20 msgid "0 is unlimited" @@ -340,7 +340,7 @@ msgstr "0 limitsiz demektir" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP dosyaları için en fazla girdi sayısı" +msgstr "ZIP dosyaları için en fazla girdi boyutu" #: templates/admin.php:26 msgid "Save" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 76406839e85..b78d6f28701 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 23:50+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,7 +76,7 @@ msgstr "\"%s\" açılamıyor" #: private/files.php:231 msgid "ZIP download is turned off." -msgstr "ZIP indirmeleri kapatılmıştır." +msgstr "ZIP indirmeleri kapatıldı." #: private/files.php:232 msgid "Files need to be downloaded one by one." @@ -88,7 +88,7 @@ msgstr "Dosyalara dön" #: private/files.php:258 msgid "Selected files too large to generate zip file." -msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." +msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyük." #: private/files.php:259 msgid "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 8374a9c9831..d075dae4d74 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-15 13:10+0000\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-23 16:11+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -244,7 +244,7 @@ msgstr "Sadece ölümcül konular" #: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" -msgstr "Güvenlik Uyarisi" +msgstr "Güvenlik Uyarısı" #: templates/admin.php:25 #, php-format @@ -425,7 +425,7 @@ msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için l #: templates/admin.php:254 msgid "Log" -msgstr "Kayıtlar" +msgstr "Günlük" #: templates/admin.php:255 msgid "Log level" @@ -615,7 +615,7 @@ msgstr "Oturum açma parolası" #: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "Tüm dosyaların şifresini çözme" +msgstr "Tüm dosyaların şifresini çöz" #: templates/users.php:21 msgid "Login Name" diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index 86494c76802..b33ad01546f 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -8,50 +8,51 @@ $TRANSLATIONS = array( "Users" => "사용자", "Admin" => "관리자", "Failed to upgrade \"%s\"." => "\"%s\" 업그레이드에 실패했습니다.", -"Unknown filetype" => "알수없는 파일형식", +"Unknown filetype" => "알 수 없는 파일 형식", "Invalid image" => "잘못된 그림", "web services under your control" => "내가 관리하는 웹 서비스", "cannot open \"%s\"" => "\"%s\"을(를) 열 수 없습니다.", -"ZIP download is turned off." => "ZIP 다운로드가 비활성화되었습니다.", +"ZIP download is turned off." => "ZIP 다운로드가 비활성화 되었습니다.", "Files need to be downloaded one by one." => "파일을 개별적으로 다운로드해야 합니다.", "Back to Files" => "파일로 돌아가기", "Selected files too large to generate zip file." => "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오", "No source specified when installing app" => "앱을 설치할 때 소스가 지정되지 않았습니다.", -"No href specified when installing app from http" => "http에서 앱을 설치할 대 href가 지정되지 않았습니다.", +"No href specified when installing app from http" => "http에서 앱을 설치할 때 href가 지정되지 않았습니다.", "No path specified when installing app from local file" => "로컬 파일에서 앱을 설치할 때 경로가 지정되지 않았습니다.", "Archives of type %s are not supported" => "%s 타입 아카이브는 지원되지 않습니다.", "Failed to open archive when installing app" => "앱을 설치할 때 아카이브를 열지 못했습니다.", "App does not provide an info.xml file" => "앱에서 info.xml 파일이 제공되지 않았습니다.", -"App can't be installed because of not allowed code in the App" => "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다. ", +"App can't be installed because of not allowed code in the App" => "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다.", "App can't be installed because it is not compatible with this version of ownCloud" => "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 수 없습니다.", -"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "출하되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다.", -"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. ", -"App directory already exists" => "앱 디렉토리가 이미 존재합니다. ", -"Can't create app folder. Please fix permissions. %s" => "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s ", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "출시되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다.", +"App directory already exists" => "앱 디렉터리가 이미 존재합니다.", +"Can't create app folder. Please fix permissions. %s" => "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s", "Application is not enabled" => "앱이 활성화되지 않았습니다", "Authentication error" => "인증 오류", "Token expired. Please reload page." => "토큰이 만료되었습니다. 페이지를 새로 고치십시오.", "Files" => "파일", "Text" => "텍스트", "Images" => "그림", -"%s enter the database username." => "데이터베이스 사용자 명을 %s 에 입력해주십시오", -"%s enter the database name." => "데이터베이스 명을 %s 에 입력해주십시오", -"%s you may not use dots in the database name" => "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다", +"%s enter the database username." => "%s 데이터베이스 사용자 이름을 입력해 주십시오.", +"%s enter the database name." => "%s 데이터베이스 이름을 입력하십시오.", +"%s you may not use dots in the database name" => "%s 데이터베이스 이름에는 마침표를 사용할 수 없습니다", "MS SQL username and/or password not valid: %s" => "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s", "You need to enter either an existing account or the administrator." => "기존 계정이나 administrator(관리자)를 입력해야 합니다.", "MySQL username and/or password not valid" => "MySQL 사용자 이름이나 암호가 잘못되었습니다.", "DB Error: \"%s\"" => "DB 오류: \"%s\"", "Offending command was: \"%s\"" => "잘못된 명령: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다.", -"Drop this user from MySQL" => "이 사용자를 MySQL에서 뺍니다.", -"MySQL user '%s'@'%%' already exists" => "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다. ", -"Drop this user from MySQL." => "이 사용자를 MySQL에서 뺍니다.", +"Drop this user from MySQL" => "이 사용자를 MySQL에서 삭제하십시오", +"MySQL user '%s'@'%%' already exists" => "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다.", +"Drop this user from MySQL." => "이 사용자를 MySQL에서 삭제하십시오.", "Oracle connection could not be established" => "Oracle 연결을 수립할 수 없습니다.", "Oracle username and/or password not valid" => "Oracle 사용자 이름이나 암호가 잘못되었습니다.", "Offending command was: \"%s\", name: %s, password: %s" => "잘못된 명령: \"%s\", 이름: %s, 암호: %s", -"PostgreSQL username and/or password not valid" => "PostgreSQL의 사용자 명 혹은 비밀번호가 잘못되었습니다", -"Set an admin username." => "관리자 이름 설정", -"Set an admin password." => "관리자 비밀번호 설정", +"PostgreSQL username and/or password not valid" => "PostgreSQL의 사용자 이름 또는 암호가 잘못되었습니다", +"Set an admin username." => "관리자의 사용자 이름을 설정합니다.", +"Set an admin password." => "관리자의 암호를 설정합니다.", "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." => "설치 가이드를 다시 한 번 확인하십시오.", "Could not find category \"%s\"" => "분류 \"%s\"을(를) 찾을 수 없습니다.", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index d4abbcd4b3c..d59b6519c3c 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -12,10 +12,10 @@ $TRANSLATIONS = array( "Invalid image" => "Geçersiz resim", "web services under your control" => "Bilgileriniz güvenli ve şifreli", "cannot open \"%s\"" => "\"%s\" açılamıyor", -"ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", +"ZIP download is turned off." => "ZIP indirmeleri kapatıldı.", "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", "Back to Files" => "Dosyalara dön", -"Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür.", +"Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyük.", "Please download the files separately in smaller chunks or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. ", "No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", "No href specified when installing app from http" => "Uygulama kuruluyorken http'de href belirtilmedi", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 71a751c1a59..ab285389a5c 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -54,12 +54,15 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Σφάλματα και καίρια ζητήματα", "Fatal issues only" => "Καίρια ζητήματα μόνο", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .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. ", +"Your PHP version is outdated" => "Η έκδοση PHP είναι απαρχαιωμένη", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Η έκδοση PHP είναι απαρχαιωμένη. Συνιστούμε ανεπιφύλακτα να ενημερώσετε στην 5.3.8 ή νεώτερη καθώς παλαιότερες εκδόσεις είναι γνωστό πως περιέχουν σφάλματα. Είναι πιθανόν ότι αυτή η εγκατάσταση δεν λειτουργεί σωστά.", "Locale not working" => "Η μετάφραση δεν δουλεύει", "System locale can not be set to a one which supports UTF-8." => "Οι ρυθμίσεις τοποθεσίας συστήματος δεν μπορούν να οριστούν σε κάποιες που δεν υποστηρίζουν UTF-8.", "This means that there might be problems with certain characters in file names." => "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων.", @@ -122,6 +125,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Επιλογή νέου από τα Αρχεία", "Remove image" => "Αφαίρεση εικόνας", "Either png or jpg. Ideally square but you will be able to crop it." => "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε.", +"Your avatar is provided by your original account." => "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό.", "Abort" => "Ματαίωση", "Choose as profile image" => "Επιλογή εικόνας προφίλ", "Language" => "Γλώσσα", @@ -129,6 +133,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Χρήση αυτής της διεύθυνσης πρόσβαση των Αρχείων σας μέσω WebDAV", "Encryption" => "Κρυπτογράφηση", +"The encryption app is no longer enabled, please decrypt all your files" => "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας", "Log-in password" => "Συνθηματικό εισόδου", "Decrypt all Files" => "Αποκρυπτογράφηση όλων των Αρχείων", "Login Name" => "Όνομα Σύνδεσης", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 4e6e547b0eb..08bab35244c 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -54,15 +54,15 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Errori e problemi gravi", "Fatal issues only" => "Solo problemi gravi", "Security Warning" => "Avviso di sicurezza", -"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sei connesso a %s con il protocollo HTTP. Ti suggeriamo fortemente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP.", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web.", "Setup Warning" => "Avviso di configurazione", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the installation guides." => "Leggi attentamente le guide d'installazione.", "Module 'fileinfo' missing" => "Modulo 'fileinfo' mancante", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", -"Your PHP version is outdated" => "La tua versione di PHP è superata", -"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "La tua versione di PHP è superata. Ti raccomandiamo di aggiornare alla versione 5.3.8 o superiore poiché è risaputo che le vecchie versioni siano fallate. L'installazione attuale potrebbe non funzionare correttamente.", +"Your PHP version is outdated" => "La tua versione di PHP è obsoleta", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente.", "Locale not working" => "Locale non funzionante", "System locale can not be set to a one which supports UTF-8." => "La localizzazione di sistema non può essere impostata a una che supporta UTF-8.", "This means that there might be problems with certain characters in file names." => "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.", @@ -125,7 +125,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Seleziona nuova da file", "Remove image" => "Rimuovi immagine", "Either png or jpg. Ideally square but you will be able to crop it." => "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla.", -"Your avatar is provided by your original account." => "Il tuo avatar è ottenuto da tuo account originale.", +"Your avatar is provided by your original account." => "Il tuo avatar è ottenuto dal tuo account originale.", "Abort" => "Interrompi", "Choose as profile image" => "Scegli come immagine del profilo", "Language" => "Lingua", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 932f692893d..8b6a075002f 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -54,13 +54,18 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Ошибки и критические проблемы", "Fatal issues only" => "Только критические проблемы", "Security Warning" => "Предупреждение безопасности", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .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-type) файлов.", +"Your PHP version is outdated" => "Ваша версия PHP устарела", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом.", "Locale not working" => "Локализация не работает", +"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 one of the following locales: %s." => "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s.", "Internet connection not working" => "Интернет-соединение не работает", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности.", "Cron" => "Планировщик задач по расписанию", @@ -126,6 +131,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Используйте этот адресс для доступа к вашим файлам через WebDAV", "Encryption" => "Шифрование", +"The encryption app is no longer enabled, please decrypt all your files" => "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы", "Log-in password" => "Пароль входа", "Decrypt all Files" => "Снять шифрование со всех файлов", "Login Name" => "Имя пользователя", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 4c5e30e8e67..6099d4badc7 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -53,7 +53,7 @@ $TRANSLATIONS = array( "Warnings, errors and fatal issues" => "Uyarılar, hatalar ve ölümcül konular", "Errors and fatal issues" => "Hatalar ve ölümcül konular", "Fatal issues only" => "Sadece ölümcül konular", -"Security Warning" => "Güvenlik Uyarisi", +"Security Warning" => "Güvenlik Uyarısı", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.", "Setup Warning" => "Kurulum Uyarısı", @@ -90,7 +90,7 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın.", -"Log" => "Kayıtlar", +"Log" => "Günlük", "Log level" => "Günlük seviyesi", "More" => "Daha fazla", "Less" => "Az", @@ -135,7 +135,7 @@ $TRANSLATIONS = array( "Encryption" => "Şifreleme", "The encryption app is no longer enabled, please decrypt all your files" => "Şifreleme uygulaması artık etkin değil, tüm dosyalarınızın şifrelemesini kaldırın", "Log-in password" => "Oturum açma parolası", -"Decrypt all Files" => "Tüm dosyaların şifresini çözme", +"Decrypt all Files" => "Tüm dosyaların şifresini çöz", "Login Name" => "Giriş Adı", "Create" => "Oluştur", "Admin Recovery Password" => "Yönetici Kurtarma Parolası", -- cgit v1.2.3 From 7b2f4b08ac6b711409c79b02328d1a2ffd27ebb6 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 26 Dec 2013 01:55:34 -0500 Subject: [tx-robot] updated from transifex --- core/l10n/el.php | 33 ++++++++++++++--- l10n/el/core.po | 72 ++++++++++++++++++------------------- l10n/el/lib.po | 49 ++++++++++++------------- 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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/el.php | 16 +++++++-- 16 files changed, 115 insertions(+), 79 deletions(-) (limited to 'lib') diff --git a/core/l10n/el.php b/core/l10n/el.php index ab6dcff47b8..f726a232f0d 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -5,9 +5,14 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Η κατάσταση συντήρησης ενεργοποιήθηκε", "Turned off maintenance mode" => "Η κατάσταση συντήρησης απενεργοποιήθηκε", "Updated database" => "Ενημερωμένη βάση δεδομένων", +"Updating filecache, this may take really long..." => "Ενημέρωση αποθηκευμένων αρχείων, αυτό μπορεί να πάρα πολύ ώρα...", +"Updated filecache" => "Ενημέρωση αποθηκευμένων αρχείων", +"... %d%% done ..." => "... %d%% ολοκληρώθηκαν ...", "No image or file provided" => "Δεν δόθηκε εικόνα ή αρχείο", "Unknown filetype" => "Άγνωστος τύπος αρχείου", "Invalid image" => "Μη έγκυρη εικόνα", +"No temporary profile picture available, try again" => "Δεν υπάρχει προσωρινή φωτογραφία προφίλ διαθέσιμη, δοκιμάστε ξανά", +"No crop data provided" => "Δεν δόθηκαν δεδομένα περικοπής", "Sunday" => "Κυριακή", "Monday" => "Δευτέρα", "Tuesday" => "Τρίτη", @@ -30,25 +35,29 @@ $TRANSLATIONS = array( "Settings" => "Ρυθμίσεις", "seconds ago" => "δευτερόλεπτα πριν", "_%n minute ago_::_%n minutes ago_" => array("%n λεπτό πριν","%n λεπτά πριν"), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("%n ώρα πριν","%n ώρες πριν"), "today" => "σήμερα", "yesterday" => "χτες", -"_%n day ago_::_%n days ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("%n ημέρα πριν","%n ημέρες πριν"), "last month" => "τελευταίο μήνα", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("%n μήνας πριν","%n μήνες πριν"), "months ago" => "μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", "Choose" => "Επιλέξτε", +"Error loading file picker template: {error}" => "Σφάλμα κατά την φόρτωση προτύπου επιλογέα αρχείων: {σφάλμα}", "Yes" => "Ναι", "No" => "Όχι", "Ok" => "Οκ", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Error loading message template: {error}" => "Σφάλμα φόρτωσης προτύπου μηνυμάτων: {σφάλμα}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} αρχείο διαφέρει","{count} αρχεία διαφέρουν"), +"One file conflict" => "Ένα αρχείο διαφέρει", "Which files do you want to keep?" => "Ποια αρχεία θέλετε να κρατήσετε;", "If you select both versions, the copied file will have a number added to its name." => "Εάν επιλέξετε και τις δυο εκδοχές, ένας αριθμός θα προστεθεί στο αντιγραφόμενο αρχείο.", "Cancel" => "Άκυρο", "Continue" => "Συνέχεια", "(all selected)" => "(όλα τα επιλεγμένα)", +"({count} selected)" => "({count} επιλέχθησαν)", "Shared" => "Κοινόχρηστα", "Share" => "Διαμοιρασμός", "Error" => "Σφάλμα", @@ -90,8 +99,12 @@ $TRANSLATIONS = array( "Delete" => "Διαγραφή", "Add" => "Προσθήκη", "Edit tags" => "Επεξεργασία ετικετών", +"Error loading dialog template: {error}" => "Σφάλμα φόρτωσης προτύπου διαλόγων: {σφάλμα}", +"No tags selected for deletion." => "Καμμία ετικέτα δεν επιλέχθηκε για διαγραφή.", +"Please reload the page." => "Παρακαλώ επαναφορτώστε τη σελίδα.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην κοινότητα ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.", +"%s password reset" => "%s επαναφορά κωδικού πρόσβασης", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {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 ." => "Ο σύνδεσμος για να επανακτήσετε τον κωδικό σας έχει σταλεί στο email
    αν δεν το λάβετε μέσα σε ορισμένο διάστημα, ελέγξετε τους φακελλους σας spam/junk
    αν δεν είναι εκεί ρωτήστε τον τοπικό σας διαχειριστή ", "Request failed!
    Did you make sure your email/username was right?" => "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? ", @@ -109,10 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Εφαρμογές", "Admin" => "Διαχειριστής", "Help" => "Βοήθεια", +"Error loading tags" => "Σφάλμα φόρτωσης ετικετών", "Tag already exists" => "Υπάρχει ήδη η ετικέτα", +"Error deleting tag(s)" => "Σφάλμα διαγραφής ετικέτας(ων)", +"Error tagging" => "Σφάλμα προσθήκης ετικέτας", +"Error untagging" => "Σφάλμα αφαίρεσης ετικέτας", +"Error favoriting" => "Σφάλμα προσθήκης στα αγαπημένα", +"Error unfavoriting" => "Σφάλμα αφαίρεσης από τα αγαπημένα", "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Γειά χαρά,\n\nαπλά σας ενημερώνω πως ο %s μοιράστηκε το %s με εσάς.\nΔείτε το: %s\n\n", "The share will expire on %s." => "Ο διαμοιρασμός θα λήξει σε %s.", +"Cheers!" => "Χαιρετισμούς!", "Security Warning" => "Προειδοποίηση Ασφαλείας", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια.", @@ -132,6 +153,7 @@ $TRANSLATIONS = array( "Database host" => "Διακομιστής βάσης δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", "Finishing …" => "Ολοκλήρωση...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Αυτή η εφαρμογή απαιτεί η JavaScript να είναι ενεργοποιημένη για σωστή λειτουργία. Παρακαλώ ενεργοποιήστε τη JavaScript και επαναφορτώστε αυτή τη διεπαφή.", "%s is available. Get more information on how to update." => "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε.", "Log out" => "Αποσύνδεση", "Automatic logon rejected!" => "Απορρίφθηκε η αυτόματη σύνδεση!", @@ -143,6 +165,9 @@ $TRANSLATIONS = array( "remember" => "απομνημόνευση", "Log in" => "Είσοδος", "Alternative Logins" => "Εναλλακτικές Συνδέσεις", +"Hey there,

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

    " => "Γειά χαρά,

    απλά σας ενημερώνω πως ο %s μοιράστηκε το »%s« με εσάς.
    Δείτε το!

    ", +"This ownCloud instance is currently in single user mode." => "Αυτή η εγκατάσταση ownCloud είναι τώρα σε κατάσταση ενός χρήστη.", +"This means only administrators can use the instance." => "Αυτό σημαίνει ότι μόνο διαχειριστές μπορούν να χρησιμοποιήσουν την εγκατάσταση.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα.", "Thank you for your patience." => "Σας ευχαριστούμε για την υπομονή σας.", "Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο.", diff --git a/l10n/el/core.po b/l10n/el/core.po index 281b58a6969..8a35a68e851 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"PO-Revision-Date: 2013-12-25 17:30+0000\n" +"Last-Translator: vkehayas \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" @@ -50,16 +50,16 @@ msgstr "Ενημερωμένη βάση δεδομένων" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Ενημέρωση αποθηκευμένων αρχείων, αυτό μπορεί να πάρα πολύ ώρα..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Ενημέρωση αποθηκευμένων αρχείων" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% ολοκληρώθηκαν ..." #: avatar/controller.php:62 msgid "No image or file provided" @@ -75,11 +75,11 @@ msgstr "Μη έγκυρη εικόνα" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Δεν υπάρχει προσωρινή φωτογραφία προφίλ διαθέσιμη, δοκιμάστε ξανά" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Δεν δόθηκαν δεδομένα περικοπής" #: js/config.php:32 msgid "Sunday" @@ -174,8 +174,8 @@ msgstr[1] "%n λεπτά πριν" #: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n ώρα πριν" +msgstr[1] "%n ώρες πριν" #: js/js.js:872 msgid "today" @@ -188,8 +188,8 @@ msgstr "χτες" #: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n ημέρα πριν" +msgstr[1] "%n ημέρες πριν" #: js/js.js:875 msgid "last month" @@ -198,8 +198,8 @@ msgstr "τελευταίο μήνα" #: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n μήνας πριν" +msgstr[1] "%n μήνες πριν" #: js/js.js:877 msgid "months ago" @@ -219,7 +219,7 @@ msgstr "Επιλέξτε" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Σφάλμα κατά την φόρτωση προτύπου επιλογέα αρχείων: {σφάλμα}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -235,17 +235,17 @@ msgstr "Οκ" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Σφάλμα φόρτωσης προτύπου μηνυμάτων: {σφάλμα}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} αρχείο διαφέρει" +msgstr[1] "{count} αρχεία διαφέρουν" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Ένα αρχείο διαφέρει" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" @@ -271,7 +271,7 @@ msgstr "(όλα τα επιλεγμένα)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} επιλέχθησαν)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" @@ -444,15 +444,15 @@ msgstr "Επεξεργασία ετικετών" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Σφάλμα φόρτωσης προτύπου διαλόγων: {σφάλμα}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Καμμία ετικέτα δεν επιλέχθηκε για διαγραφή." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Παρακαλώ επαναφορτώστε τη σελίδα." #: js/update.js:17 msgid "" @@ -468,7 +468,7 @@ msgstr "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s επαναφορά κωδικού πρόσβασης" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -548,7 +548,7 @@ msgstr "Βοήθεια" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Σφάλμα φόρτωσης ετικετών" #: tags/controller.php:48 msgid "Tag already exists" @@ -556,23 +556,23 @@ msgstr "Υπάρχει ήδη η ετικέτα" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Σφάλμα διαγραφής ετικέτας(ων)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Σφάλμα προσθήκης ετικέτας" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Σφάλμα αφαίρεσης ετικέτας" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Σφάλμα προσθήκης στα αγαπημένα" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Σφάλμα αφαίρεσης από τα αγαπημένα" #: templates/403.php:12 msgid "Access forbidden" @@ -590,7 +590,7 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Γειά χαρά,\n\nαπλά σας ενημερώνω πως ο %s μοιράστηκε το %s με εσάς.\nΔείτε το: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format @@ -599,7 +599,7 @@ msgstr "Ο διαμοιρασμός θα λήξει σε %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Χαιρετισμούς!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -695,7 +695,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Αυτή η εφαρμογή απαιτεί η JavaScript να είναι ενεργοποιημένη για σωστή λειτουργία. Παρακαλώ ενεργοποιήστε τη JavaScript και επαναφορτώστε αυτή τη διεπαφή." #: templates/layout.user.php:44 #, php-format @@ -749,15 +749,15 @@ msgstr "Εναλλακτικές Συνδέσεις" msgid "" "Hey there,

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

    " -msgstr "" +msgstr "Γειά χαρά,

    απλά σας ενημερώνω πως ο %s μοιράστηκε το »%s« με εσάς.
    Δείτε το!

    " #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Αυτή η εγκατάσταση ownCloud είναι τώρα σε κατάσταση ενός χρήστη." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Αυτό σημαίνει ότι μόνο διαχειριστές μπορούν να χρησιμοποιήσουν την εγκατάσταση." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index b5ed1140dd7..61d27f050ec 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 +# vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"PO-Revision-Date: 2013-12-25 17:50+0000\n" +"Last-Translator: vkehayas \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" @@ -18,38 +19,38 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση του ownCloud." -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" -msgstr "" +msgstr "Δεν προδιορίστηκε όνομα εφαρμογής" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "Βοήθεια" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" msgstr "Προσωπικά" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" msgstr "Ρυθμίσεις" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "Χρήστες" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "Διαχειριστής" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." @@ -95,38 +96,38 @@ msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Δεν προσδιορίστηκε πηγή κατά την εγκατάσταση της εφαρμογής" #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Δεν προσδιορίστηκε href κατά την εγκατάσταση της εφαρμογής μέσω http " #: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Δεν προσδιορίστηκε μονοπάτι κατά την εγκατάσταση εφαρμογής από τοπικό αρχείο" #: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Συλλογές αρχείων τύπου %s δεν υποστηρίζονται" #: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Αποτυχία ανοίγματος συλλογής αρχείων κατά την εγκατάσταση εφαρμογής" #: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "Η εφαρμογή δεν παρέχει αρχείο info.xml" #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί λόγω μη-επιτρεπόμενου κώδικα μέσα στην Εφαρμογή" #: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση ownCloud" #: private/installer.php:146 msgid "" @@ -299,7 +300,7 @@ msgstr[1] "%n λεπτά πριν" msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n ώρες πριν" #: private/template/functions.php:133 msgid "today" @@ -313,7 +314,7 @@ msgstr "χτες" msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n ημέρες πριν" #: private/template/functions.php:138 msgid "last month" @@ -323,7 +324,7 @@ msgstr "τελευταίο μήνα" msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n μήνες πριν" #: private/template/functions.php:141 msgid "last year" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index dabebe5860d..0eb5a20e8a3 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 8ad1b90d3e4..a9ff10a1404 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 57ecf1bcf10..1a15c449fc4 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 9dfafa74d5d..130fa3e8d6d 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 909827c7783..9da398cbb49 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 076201631fe..f86ad09f831 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 516cd2e02bb..5e50c86c475 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 013cbbb9d1e..2f8a5fca095 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 71ce835cbc6..319d2ae8a76 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 91f7a03d57a..aa12cea9a87 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 55fe40e5359..958ed0ad1db 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\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 e7eea931a42..cd2ccac078b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"POT-Creation-Date: 2013-12-26 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 1de06407c32..041eb8a0e5a 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -1,5 +1,7 @@ "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση του ownCloud.", +"No app name specified" => "Δεν προδιορίστηκε όνομα εφαρμογής", "Help" => "Βοήθεια", "Personal" => "Προσωπικά", "Settings" => "Ρυθμίσεις", @@ -14,6 +16,14 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", "Selected files too large to generate zip file." => "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip.", +"No source specified when installing app" => "Δεν προσδιορίστηκε πηγή κατά την εγκατάσταση της εφαρμογής", +"No href specified when installing app from http" => "Δεν προσδιορίστηκε href κατά την εγκατάσταση της εφαρμογής μέσω http ", +"No path specified when installing app from local file" => "Δεν προσδιορίστηκε μονοπάτι κατά την εγκατάσταση εφαρμογής από τοπικό αρχείο", +"Archives of type %s are not supported" => "Συλλογές αρχείων τύπου %s δεν υποστηρίζονται", +"Failed to open archive when installing app" => "Αποτυχία ανοίγματος συλλογής αρχείων κατά την εγκατάσταση εφαρμογής", +"App does not provide an info.xml file" => "Η εφαρμογή δεν παρέχει αρχείο info.xml", +"App can't be installed because of not allowed code in the App" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί λόγω μη-επιτρεπόμενου κώδικα μέσα στην Εφαρμογή", +"App can't be installed because it is not compatible with this version of ownCloud" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση ownCloud", "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", "Token expired. Please reload page." => "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα.", @@ -43,12 +53,12 @@ $TRANSLATIONS = array( "Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"", "seconds ago" => "δευτερόλεπτα πριν", "_%n minute ago_::_%n minutes ago_" => array("","%n λεπτά πριν"), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("","%n ώρες πριν"), "today" => "σήμερα", "yesterday" => "χτες", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("","%n ημέρες πριν"), "last month" => "τελευταίο μήνα", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","%n μήνες πριν"), "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν" ); -- cgit v1.2.3 From 64a001edab25d727f82fe7b1d15146dadd6fb877 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 27 Dec 2013 01:55:35 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/hu_HU.php | 2 ++ apps/files_encryption/l10n/hu_HU.php | 43 ++++++++++++++----------- l10n/el/lib.po | 12 +++---- l10n/hu_HU/files.po | 10 +++--- l10n/hu_HU/files_encryption.po | 61 ++++++++++++++++++------------------ 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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/el.php | 4 +++ 18 files changed, 84 insertions(+), 72 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index afb357dfe22..22c3926ed1c 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Az állomány neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!", "The name %s is already used in the folder %s. Please choose a different name." => "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!", "Not a valid source" => "A kiinduló állomány érvénytelen", +"Server is not allowed to open URLs, please check the server configuration" => "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat", "Error while downloading %s to %s" => "Hiba történt miközben %s-t letöltöttük %s-be", "Error when creating the file" => "Hiba történt az állomány létrehozásakor", "Folder name cannot be empty." => "A mappa neve nem maradhat kitöltetlenül", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} már létezik", "Could not create file" => "Az állomány nem hozható létre", "Could not create folder" => "A mappa nem hozható létre", +"Error fetching URL" => "A megadott URL-ről nem sikerül adatokat kapni", "Share" => "Megosztás", "Delete permanently" => "Végleges törlés", "Rename" => "Átnevezés", diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index 58313494684..163011ff80b 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -1,39 +1,44 @@ "Visszaállítási kulcs sikeresen bekapcsolva", -"Could not enable recovery key. Please check your recovery key password!" => "Visszaállítási kulcsot nem lehetett engedélyezni. Ellenörizd a visszaállítási kulcsod jelszavát!", -"Recovery key successfully disabled" => "Visszaállítási kulcs sikeresen kikapcsolva", -"Could not disable recovery key. Please check your recovery key password!" => "Visszaállítási kulcsot nem lehetett kikapcsolni. Ellenörizd a visszaállítási kulcsod jelszavát!", -"Password successfully changed." => "Jelszó sikeresen megváltoztatva.", +"Recovery key successfully enabled" => "A helyreállítási kulcs sikeresen bekapcsolva", +"Could not enable recovery key. Please check your recovery key password!" => "A helyreállítási kulcsot nem lehetett engedélyezni. Ellenőrizze a helyreállítási kulcsa jelszavát!", +"Recovery key successfully disabled" => "A helyreállítási kulcs sikeresen kikapcsolva", +"Could not disable recovery key. Please check your recovery key password!" => "A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!", +"Password successfully changed." => "A jelszót sikeresen megváltoztattuk.", "Could not change the password. Maybe the old password was not correct." => "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó.", -"Private key password successfully updated." => "Privát kulcs jelszava sikeresen frissült.", -"Could not update the private key password. Maybe the old password was not correct." => "A privát kulcs jelszavát nem lehetet frissiteni. Lehet, hogy hibás volt a régi jelszó.", -"Unknown error please check your system settings or contact your administrator" => "Ismeretlen hiba. Ellenörizd a rendszer beállításokat vagy keresd meg az adminisztrátort", +"Private key password successfully updated." => "A személyes kulcsának jelszava frissítésre került.", +"Could not update the private key password. Maybe the old password was not correct." => "A személyes kulcsa jelszavát nem lehetett frissíteni. Lehet, hogy hibás volt a régi jelszó.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!", +"Unknown error please check your system settings or contact your administrator" => "Ismeretlen hiba. Ellenőrizze a rendszer beállításait vagy forduljon a rendszergazdához!", "Missing requirements." => "Hiányzó követelmények.", -"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kérem gondoskodjon arról, hogy PHP 5.3.3 vagy annál frissebb legyen telepítve, továbbá az OpenSSL a megfelelő PHP-bővítménnyel együtt rendelkezésre álljon és helyesen legyen konfigurálva! A titkosító modul egyelőre kikapcsolásra került.", "Following users are not set up for encryption:" => "A következő felhasználók nem állították be a titkosítást:", -"Initial encryption started... This can take some time. Please wait." => "Első titkosítás elkezdődött... Ez eltarhat hosszabb ideig. Kérlek várj.", +"Initial encryption started... This can take some time. Please wait." => "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon.", "Saving..." => "Mentés...", -"Go directly to your " => "Rövid úton a dolgaidhoz", +"Go directly to your " => "Ugrás ide:", "personal settings" => "személyes beállítások", "Encryption" => "Titkosítás", +"Enable recovery key (allow to recover users files in case of password loss):" => "A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):", "Recovery key password" => "A helyreállítási kulcs jelszava", -"Repeat Recovery key password" => "Ismételd a Helyreállítási kulcs jelszavát", +"Repeat Recovery key password" => "Ismételje meg a helyreállítási kulcs jelszavát", "Enabled" => "Bekapcsolva", "Disabled" => "Kikapcsolva", "Change recovery key password:" => "A helyreállítási kulcs jelszavának módosítása:", "Old Recovery key password" => "Régi Helyreállítási Kulcs Jelszava", "New Recovery key password" => "Új Helyreállítási kulcs jelszava", -"Repeat New Recovery key password" => "Ismételd az Új Helyreállítási kulcs jelszavát", +"Repeat New Recovery key password" => "Ismételje meg az új helyreállítási kulcs jelszavát", "Change Password" => "Jelszó megváltoztatása", -"Your private key password no longer match your log-in password:" => "A privát kulcs jelszavad mostantól nem azonos a belépési jelszavaddal:", -"Set your old private key password to your current log-in password." => "Állítsd vissza a régi privát kulcs jelszavát a jelenlegi bejelentkezési jelszavadra.", -" If you don't remember your old password you can ask your administrator to recover your files." => "Ha nem emlékszel a régi jelszavadra akkor keresed meg a rendszeradminisztátort a file-jaid visszaállításával kapcsolatban.", +"Your private key password no longer match your log-in password:" => "A személyes kulcs jelszava mostantól nem azonos a belépési jelszavával:", +"Set your old private key password to your current log-in password." => "Állítsuk be a személyes kulcs jelszavát a jelenlegi bejelentkezési jelszavunkra.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait.", "Old log-in password" => "Régi bejelentkezési jelszó", "Current log-in password" => "Jelenlegi bejelentkezési jelszó", -"Update Private Key Password" => "Privát kulcs jelszó frissítése", +"Update Private Key Password" => "A személyest kulcs jelszó frissítése", "Enable password recovery:" => "Jelszó-visszaállítás bekapcsolása", -"File recovery settings updated" => "File helyreállítási beállításai frissültek", -"Could not update file recovery" => "A file helyreállítás nem frissíthető" +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát", +"File recovery settings updated" => "A fájlhelyreállítási beállítások frissültek", +"Could not update file recovery" => "A fájlhelyreállítás nem frissíthető" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 61d27f050ec..f59d5fe6101 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" -"PO-Revision-Date: 2013-12-25 17:50+0000\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" +"PO-Revision-Date: 2013-12-26 13:10+0000\n" "Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Παρακαλώ κάντε λήψη των αρχείων σε μικρότερα κομμάτια ή ζητήστε το από το διαχειριστή σας." #: private/installer.php:63 msgid "No source specified when installing app" @@ -139,16 +139,16 @@ msgstr "" msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή η έκδοση στο info.xml/version δεν είναι η ίδια με την έκδοση που αναφέρεται στο κατάστημα εφαρμογών" #: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "Ο κατάλογος εφαρμογών υπάρχει ήδη" #: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Δεν είναι δυνατόν να δημιουργηθεί ο φάκελος εφαρμογής. Παρακαλώ διορθώστε τις άδειες πρόσβασης. %s" #: private/json.php:28 msgid "Application is not enabled" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index f91b8031ac6..cec4785ed74 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" +"PO-Revision-Date: 2013-12-26 11:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +51,7 @@ msgstr "A kiinduló állomány érvénytelen" #: ajax/newfile.php:86 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat" #: ajax/newfile.php:103 #, php-format @@ -180,7 +180,7 @@ msgstr "A mappa nem hozható létre" #: js/file-upload.js:661 msgid "Error fetching URL" -msgstr "" +msgstr "A megadott URL-ről nem sikerül adatokat kapni" #: js/fileactions.js:125 msgid "Share" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index e921a75e195..ee719e9280a 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # blackc0de , 2013 # ebela , 2013 +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-14 22:00+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" +"PO-Revision-Date: 2013-12-26 13:50+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,25 +22,25 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "Visszaállítási kulcs sikeresen bekapcsolva" +msgstr "A helyreállítási kulcs sikeresen bekapcsolva" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "Visszaállítási kulcsot nem lehetett engedélyezni. Ellenörizd a visszaállítási kulcsod jelszavát!" +msgstr "A helyreállítási kulcsot nem lehetett engedélyezni. Ellenőrizze a helyreállítási kulcsa jelszavát!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "Visszaállítási kulcs sikeresen kikapcsolva" +msgstr "A helyreállítási kulcs sikeresen kikapcsolva" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "Visszaállítási kulcsot nem lehetett kikapcsolni. Ellenörizd a visszaállítási kulcsod jelszavát!" +msgstr "A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "Jelszó sikeresen megváltoztatva." +msgstr "A jelszót sikeresen megváltoztattuk." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." @@ -47,20 +48,20 @@ msgstr "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi je #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "Privát kulcs jelszava sikeresen frissült." +msgstr "A személyes kulcsának jelszava frissítésre került." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "A privát kulcs jelszavát nem lehetet frissiteni. Lehet, hogy hibás volt a régi jelszó." +msgstr "A személyes kulcsa jelszavát nem lehetett frissíteni. Lehet, hogy hibás volt a régi jelszó." #: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!" #: files/error.php:16 #, php-format @@ -68,38 +69,38 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!" #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "Ismeretlen hiba. Ellenörizd a rendszer beállításokat vagy keresd meg az adminisztrátort" +msgstr "Ismeretlen hiba. Ellenőrizze a rendszer beállításait vagy forduljon a rendszergazdához!" -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." msgstr "Hiányzó követelmények." -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás." +msgstr "Kérem gondoskodjon arról, hogy PHP 5.3.3 vagy annál frissebb legyen telepítve, továbbá az OpenSSL a megfelelő PHP-bővítménnyel együtt rendelkezésre álljon és helyesen legyen konfigurálva! A titkosító modul egyelőre kikapcsolásra került." -#: hooks/hooks.php:278 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" msgstr "A következő felhasználók nem állították be a titkosítást:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "Első titkosítás elkezdődött... Ez eltarhat hosszabb ideig. Kérlek várj." +msgstr "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon." #: js/settings-admin.js:13 msgid "Saving..." @@ -107,7 +108,7 @@ msgstr "Mentés..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "Rövid úton a dolgaidhoz" +msgstr "Ugrás ide:" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -120,7 +121,7 @@ msgstr "Titkosítás" #: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):" #: templates/settings-admin.php:11 msgid "Recovery key password" @@ -128,7 +129,7 @@ msgstr "A helyreállítási kulcs jelszava" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "Ismételd a Helyreállítási kulcs jelszavát" +msgstr "Ismételje meg a helyreállítási kulcs jelszavát" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -152,7 +153,7 @@ msgstr "Új Helyreállítási kulcs jelszava" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "Ismételd az Új Helyreállítási kulcs jelszavát" +msgstr "Ismételje meg az új helyreállítási kulcs jelszavát" #: templates/settings-admin.php:58 msgid "Change Password" @@ -160,17 +161,17 @@ msgstr "Jelszó megváltoztatása" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "A privát kulcs jelszavad mostantól nem azonos a belépési jelszavaddal:" +msgstr "A személyes kulcs jelszava mostantól nem azonos a belépési jelszavával:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "Állítsd vissza a régi privát kulcs jelszavát a jelenlegi bejelentkezési jelszavadra." +msgstr "Állítsuk be a személyes kulcs jelszavát a jelenlegi bejelentkezési jelszavunkra." #: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "Ha nem emlékszel a régi jelszavadra akkor keresed meg a rendszeradminisztátort a file-jaid visszaállításával kapcsolatban." +msgstr "Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait." #: templates/settings-personal.php:22 msgid "Old log-in password" @@ -182,7 +183,7 @@ msgstr "Jelenlegi bejelentkezési jelszó" #: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "Privát kulcs jelszó frissítése" +msgstr "A személyest kulcs jelszó frissítése" #: templates/settings-personal.php:42 msgid "Enable password recovery:" @@ -192,12 +193,12 @@ msgstr "Jelszó-visszaállítás bekapcsolása" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát" #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "File helyreállítási beállításai frissültek" +msgstr "A fájlhelyreállítási beállítások frissültek" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "A file helyreállítás nem frissíthető" +msgstr "A fájlhelyreállítás nem frissíthető" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0eb5a20e8a3..c53b1a0de66 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 a9ff10a1404..b3354707d95 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 1a15c449fc4..3f9fc31ca2b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 130fa3e8d6d..bb793eed4a3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 9da398cbb49..f8abfdfe529 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 f86ad09f831..0d314d6f818 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 5e50c86c475..d0df96fe69e 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 2f8a5fca095..f05397b719c 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 319d2ae8a76..c4edb515bfc 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 aa12cea9a87..e9a53a43dc3 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 958ed0ad1db..d4880e254fa 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\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 cd2ccac078b..deea51b9195 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-26 01:55-0500\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 041eb8a0e5a..7f7797bbc7a 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", "Selected files too large to generate zip file." => "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Παρακαλώ κάντε λήψη των αρχείων σε μικρότερα κομμάτια ή ζητήστε το από το διαχειριστή σας.", "No source specified when installing app" => "Δεν προσδιορίστηκε πηγή κατά την εγκατάσταση της εφαρμογής", "No href specified when installing app from http" => "Δεν προσδιορίστηκε href κατά την εγκατάσταση της εφαρμογής μέσω http ", "No path specified when installing app from local file" => "Δεν προσδιορίστηκε μονοπάτι κατά την εγκατάσταση εφαρμογής από τοπικό αρχείο", @@ -24,6 +25,9 @@ $TRANSLATIONS = array( "App does not provide an info.xml file" => "Η εφαρμογή δεν παρέχει αρχείο info.xml", "App can't be installed because of not allowed code in the App" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί λόγω μη-επιτρεπόμενου κώδικα μέσα στην Εφαρμογή", "App can't be installed because it is not compatible with this version of ownCloud" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση ownCloud", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή η έκδοση στο info.xml/version δεν είναι η ίδια με την έκδοση που αναφέρεται στο κατάστημα εφαρμογών", +"App directory already exists" => "Ο κατάλογος εφαρμογών υπάρχει ήδη", +"Can't create app folder. Please fix permissions. %s" => "Δεν είναι δυνατόν να δημιουργηθεί ο φάκελος εφαρμογής. Παρακαλώ διορθώστε τις άδειες πρόσβασης. %s", "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", "Token expired. Please reload page." => "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα.", -- cgit v1.2.3 From 9ea96384900083b051a5ab78fb6ccf46aa4de47c Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 30 Dec 2013 01:55:38 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ak.php | 7 + apps/user_ldap/l10n/ak.php | 6 + core/l10n/ak.php | 9 + l10n/ak/core.po | 775 ++++++++++++++++++++++++++++++++++++ l10n/ak/files.po | 413 +++++++++++++++++++ l10n/ak/files_encryption.po | 201 ++++++++++ l10n/ak/files_external.po | 123 ++++++ l10n/ak/files_sharing.po | 84 ++++ l10n/ak/files_trashbin.po | 60 +++ l10n/ak/files_versions.po | 43 ++ l10n/ak/lib.po | 333 ++++++++++++++++ l10n/ak/settings.po | 668 +++++++++++++++++++++++++++++++ l10n/ak/user_ldap.po | 513 ++++++++++++++++++++++++ l10n/ak/user_webdavauth.po | 33 ++ l10n/ko/settings.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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/ak.php | 8 + 28 files changed, 3290 insertions(+), 14 deletions(-) create mode 100644 apps/files/l10n/ak.php create mode 100644 apps/user_ldap/l10n/ak.php create mode 100644 core/l10n/ak.php create mode 100644 l10n/ak/core.po create mode 100644 l10n/ak/files.po create mode 100644 l10n/ak/files_encryption.po create mode 100644 l10n/ak/files_external.po create mode 100644 l10n/ak/files_sharing.po create mode 100644 l10n/ak/files_trashbin.po create mode 100644 l10n/ak/files_versions.po create mode 100644 l10n/ak/lib.po create mode 100644 l10n/ak/settings.po create mode 100644 l10n/ak/user_ldap.po create mode 100644 l10n/ak/user_webdavauth.po create mode 100644 lib/l10n/ak.php (limited to 'lib') diff --git a/apps/files/l10n/ak.php b/apps/files/l10n/ak.php new file mode 100644 index 00000000000..f229792722d --- /dev/null +++ b/apps/files/l10n/ak.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=n > 1;"; diff --git a/apps/user_ldap/l10n/ak.php b/apps/user_ldap/l10n/ak.php new file mode 100644 index 00000000000..dd5f66761d6 --- /dev/null +++ b/apps/user_ldap/l10n/ak.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=n > 1;"; diff --git a/core/l10n/ak.php b/core/l10n/ak.php new file mode 100644 index 00000000000..09e36ba1786 --- /dev/null +++ b/core/l10n/ak.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=n > 1;"; diff --git a/l10n/ak/core.po b/l10n/ak/core.po new file mode 100644 index 00000000000..71758432e20 --- /dev/null +++ b/l10n/ak/core.po @@ -0,0 +1,775 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:398 +msgid "Settings" +msgstr "" + +#: js/js.js:869 +msgid "seconds ago" +msgstr "" + +#: js/js.js:870 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:871 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:872 +msgid "today" +msgstr "" + +#: js/js.js:873 +msgid "yesterday" +msgstr "" + +#: js/js.js:874 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:875 +msgid "last month" +msgstr "" + +#: js/js.js:876 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:877 +msgid "months ago" +msgstr "" + +#: js/js.js:878 +msgid "last year" +msgstr "" + +#: js/js.js:879 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:72 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/ak/files.po b/l10n/ak/files.po new file mode 100644 index 00000000000..4544710bb34 --- /dev/null +++ b/l10n/ak/files.po @@ -0,0 +1,413 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ak/files_encryption.po b/l10n/ak/files_encryption.po new file mode 100644 index 00000000000..b2b29d74f0a --- /dev/null +++ b/l10n/ak/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:62 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:63 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:281 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ak/files_external.po b/l10n/ak/files_external.po new file mode 100644 index 00000000000..95dcbe86db8 --- /dev/null +++ b/l10n/ak/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:474 +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 "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ak/files_sharing.po b/l10n/ak/files_sharing.po new file mode 100644 index 00000000000..da92ef7b372 --- /dev/null +++ b/l10n/ak/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ak/files_trashbin.po b/l10n/ak/files_trashbin.po new file mode 100644 index 00000000000..ee5c134734d --- /dev/null +++ b/l10n/ak/files_trashbin.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ak/files_versions.po b/l10n/ak/files_versions.po new file mode 100644 index 00000000000..8d9c2e6ff62 --- /dev/null +++ b/l10n/ak/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po new file mode 100644 index 00000000000..3778c524ce2 --- /dev/null +++ b/l10n/ak/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: private/app.php:245 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:257 +msgid "No app name specified" +msgstr "" + +#: private/app.php:362 +msgid "Help" +msgstr "" + +#: private/app.php:375 +msgid "Personal" +msgstr "" + +#: private/app.php:386 +msgid "Settings" +msgstr "" + +#: private/app.php:398 +msgid "Users" +msgstr "" + +#: private/app.php:411 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po new file mode 100644 index 00000000000..90a872fc261 --- /dev/null +++ b/l10n/ak/settings.po @@ -0,0 +1,668 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:39 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/ak/user_ldap.po b/l10n/ak/user_ldap.po new file mode 100644 index 00000000000..3e48b498995 --- /dev/null +++ b/l10n/ak/user_ldap.po @@ -0,0 +1,513 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/ak/user_webdavauth.po b/l10n/ak/user_webdavauth.po new file mode 100644 index 00000000000..d1477c074ad --- /dev/null +++ b/l10n/ak/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index af3ecd1e65a..cb273b0aacf 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" -"PO-Revision-Date: 2013-12-28 13:54+0000\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 14: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" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0a7c7b3fcf5..9fd034bfa99 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 764486fd0ce..97fb8b03098 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 b62ea1a8d13..3f1115737a1 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 2a05c1b0c6c..e74cbc7f281 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 92b6f08b1d7..83eff80eb94 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 3a843120061..7c652523203 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 b3f7d01204d..0a7f25a9030 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 f56485e1b31..825243ce55c 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index c71f4dc251a..7d9174ab585 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 5309cf2e7ba..4551ca14552 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 668f5bb734f..c738d224a4f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\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 48db34cae46..a6318d6fc85 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/ak.php b/lib/l10n/ak.php new file mode 100644 index 00000000000..4124ad0d880 --- /dev/null +++ b/lib/l10n/ak.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=n > 1;"; -- cgit v1.2.3 From 760fa9ea3005e7df81a1fac54f207dbe7d8ef312 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 31 Dec 2013 01:55:42 -0500 Subject: [tx-robot] updated from transifex --- apps/user_ldap/l10n/id.php | 1 + core/l10n/id.php | 97 +++++++++++++++++---- l10n/el/files.po | 4 +- l10n/id/core.po | 162 ++++++++++++++++++------------------ l10n/id/lib.po | 94 ++++++++++----------- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 6 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/id.php | 52 ++++++++---- 20 files changed, 263 insertions(+), 181 deletions(-) (limited to 'lib') diff --git a/apps/user_ldap/l10n/id.php b/apps/user_ldap/l10n/id.php index 6f4ddd21483..03071bb1d0f 100644 --- a/apps/user_ldap/l10n/id.php +++ b/apps/user_ldap/l10n/id.php @@ -30,6 +30,7 @@ $TRANSLATIONS = array( "One Base DN per line" => "Satu Base DN per baris", "You can specify Base DN for users and groups in the Advanced tab" => "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan", "Back" => "Kembali", +"Continue" => "Lanjutkan", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Peringatan: Modul LDAP PHP tidak terpasang, perangkat tidak akan bekerja. Silakan minta administrator sistem untuk memasangnya.", "Connection Settings" => "Pengaturan Koneksi", "Configuration Active" => "Konfigurasi Aktif", diff --git a/core/l10n/id.php b/core/l10n/id.php index aca262a8f30..2fa7ae8e3c5 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,5 +1,18 @@ "%s membagikan »%s« dengan anda", +"Couldn't send mail to following users: %s " => "Tidak dapat mengirim Email ke pengguna berikut: %s", +"Turned on maintenance mode" => "Hidupkan mode perawatan", +"Turned off maintenance mode" => "Matikan mode perawatan", +"Updated database" => "Basis data terbaru", +"Updating filecache, this may take really long..." => "Memperbarui filecache, mungkin memerlukan waktu sangat lama...", +"Updated filecache" => "Filecache terbaru", +"... %d%% done ..." => "... %d%% selesai ...", +"No image or file provided" => "Tidak ada gambar atau file yang disediakan", +"Unknown filetype" => "Tipe berkas tak dikenal", +"Invalid image" => "Gambar tidak sah", +"No temporary profile picture available, try again" => "Tidak ada gambar profil sementara yang tersedia, coba lagi", +"No crop data provided" => "Tidak ada data krop tersedia", "Sunday" => "Minggu", "Monday" => "Senin", "Tuesday" => "Selasa", @@ -19,37 +32,49 @@ $TRANSLATIONS = array( "October" => "Oktober", "November" => "November", "December" => "Desember", -"Settings" => "Setelan", +"Settings" => "Pengaturan", "seconds ago" => "beberapa detik yang lalu", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n menit yang lalu"), +"_%n hour ago_::_%n hours ago_" => array("%n jam yang lalu"), "today" => "hari ini", "yesterday" => "kemarin", -"_%n day ago_::_%n days ago_" => array(""), +"_%n day ago_::_%n days ago_" => array("%n hari yang lalu"), "last month" => "bulan kemarin", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), "months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "Choose" => "Pilih", +"Error loading file picker template: {error}" => "Galat memuat templat berkas pemilih: {error}", "Yes" => "Ya", "No" => "Tidak", "Ok" => "Oke", -"_{count} file conflict_::_{count} file conflicts_" => array(""), +"Error loading message template: {error}" => "Galat memuat templat pesan: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} berkas konflik"), +"One file conflict" => "Satu berkas konflik", +"Which files do you want to keep?" => "Berkas mana yang ingin anda pertahankan?", +"If you select both versions, the copied file will have a number added to its name." => "Jika anda memilih kedua versi, berkas yang disalin akan memiliki nomor yang ditambahkan sesuai namanya.", "Cancel" => "Batal", +"Continue" => "Lanjutkan", +"(all selected)" => "(semua terpilih)", +"({count} selected)" => "({count} terpilih)", +"Error loading file exists template" => "Galat memuat templat berkas yang sudah ada", "Shared" => "Dibagikan", "Share" => "Bagikan", "Error" => "Galat", "Error while sharing" => "Galat ketika membagikan", "Error while unsharing" => "Galat ketika membatalkan pembagian", "Error while changing permissions" => "Galat ketika mengubah izin", -"Shared with you and the group {group} by {owner}" => "Dibagikan dengan Anda dan grup {group} oleh {owner}", -"Shared with you by {owner}" => "Dibagikan dengan Anda oleh {owner}", +"Shared with you and the group {group} by {owner}" => "Dibagikan dengan anda dan grup {group} oleh {owner}", +"Shared with you by {owner}" => "Dibagikan dengan anda oleh {owner}", +"Share with user or group …" => "Bagikan dengan pengguna atau grup ...", +"Share link" => "Bagikan tautan", "Password protect" => "Lindungi dengan sandi", "Password" => "Sandi", +"Allow Public Upload" => "Izinkan Unggahan Publik", "Email link to person" => "Emailkan tautan ini ke orang", "Send" => "Kirim", -"Set expiration date" => "Setel tanggal kedaluwarsa", +"Set expiration date" => "Atur tanggal kedaluwarsa", "Expiration date" => "Tanggal kedaluwarsa", "Share via email:" => "Bagian lewat email:", "No people found" => "Tidak ada orang ditemukan", @@ -57,42 +82,66 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Berbagi ulang tidak diizinkan", "Shared in {item} with {user}" => "Dibagikan dalam {item} dengan {user}", "Unshare" => "Batalkan berbagi", -"can edit" => "dapat mengedit", +"notify by email" => "notifikasi via email", +"can edit" => "dapat sunting", "access control" => "kontrol akses", "create" => "buat", "update" => "perbarui", "delete" => "hapus", "share" => "bagikan", -"Password protected" => "Dilindungi sandi", +"Password protected" => "Sandi dilindungi", "Error unsetting expiration date" => "Galat ketika menghapus tanggal kedaluwarsa", -"Error setting expiration date" => "Galat ketika menyetel tanggal kedaluwarsa", +"Error setting expiration date" => "Galat ketika mengatur tanggal kedaluwarsa", "Sending ..." => "Mengirim ...", "Email sent" => "Email terkirim", "Warning" => "Peringatan", "The object type is not specified." => "Tipe objek tidak ditentukan.", +"Enter new" => "Masukkan baru", "Delete" => "Hapus", "Add" => "Tambah", +"Edit tags" => "Sunting tag", +"Error loading dialog template: {error}" => "Galat memuat templat dialog: {error}", +"No tags selected for deletion." => "Tidak ada tag yang terpilih untuk dihapus.", +"Please reload the page." => "Silakan muat ulang halaman.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Pembaruan gagal. Silakan laporkan masalah ini ke komunitas ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud.", +"%s password reset" => "%s sandi diatur ulang", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {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 ." => "Tautan untuk mengatur ulang sandi anda telah dikirimkan ke email Anda.
    Jika anda tidak menerimanya selama waktu yang wajar, periksa folder spam/sampah Anda.
    Jika tidak ada juga, coba tanyakanlah kepada administrator lokal anda.", +"Request failed!
    Did you make sure your email/username was right?" => "Permintaan gagal!
    Apakah anda yakin email/nama pengguna anda benar?", "You will receive a link to reset your password via Email." => "Anda akan menerima tautan penyetelan ulang sandi lewat Email.", "Username" => "Nama pengguna", -"Your password was reset" => "Sandi Anda telah disetel ulang", +"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?" => "Berkas anda terenkripsi. Jika sebelumnya anda belum mengaktifkan kunci pemulihan, tidak akan ada cara lagi untuk mendapatkan data anda kembali setelah sandi anda diatur ulang. Jika anda tidak yakin dengan apa yang harus dilakukan, silakan hubungi administrator anda sebelum melanjutkan. Apakah anda benar-benar ingin melanjutkan?", +"Yes, I really want to reset my password now" => "Ya, Saya sungguh ingin mengatur ulang sandi saya sekarang", +"Reset" => "Atur Ulang", +"Your password was reset" => "Sandi Anda telah diatur ulang", "To login page" => "Ke halaman masuk", "New password" => "Sandi baru", -"Reset password" => "Setel ulang sandi", +"Reset password" => "Atur ulang sandi", "Personal" => "Pribadi", "Users" => "Pengguna", "Apps" => "Aplikasi", "Admin" => "Admin", "Help" => "Bantuan", +"Error loading tags" => "Galat saat memuat tag", +"Tag already exists" => "Tag sudah ada", +"Error deleting tag(s)" => "Galat saat menghapus tag", +"Error tagging" => "Galat saat memberikan tag", +"Error untagging" => "Galat saat menghapus tag", +"Error favoriting" => "Galat saat memberikan sebagai favorit", +"Error unfavoriting" => "Galat saat menghapus sebagai favorit", "Access forbidden" => "Akses ditolak", "Cloud not found" => "Cloud tidak ditemukan", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hai,\n\nhanya supaya anda tahu bahwa %s membagikan %s dengan anda.\nLihat: %s\n\n", +"The share will expire on %s." => "Pembagian akan berakhir pada %s.", +"Cheers!" => "Horee!", "Security Warning" => "Peringatan Keamanan", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Silakan perbarui instalasi PHP anda untuk menggunakan %s dengan aman.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generator acak yang aman tidak tersedia, silakan aktifkan ekstensi OpenSSL pada PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Tanpa generator acak, penyerang mungkin dapat menebak token penyetelan sandi dan mengambil alih akun Anda.", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Kemungkinan direktori data dan berkas Anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Kemungkinan direktori data dan berkas anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi.", +"For information how to properly configure your server, please see the documentation." => "Untuk informasi cara mengkonfigurasi server anda dengan benar, silakan lihat dokumentasi.", "Create an admin account" => "Buat sebuah akun admin", "Advanced" => "Lanjutan", "Data folder" => "Folder data", @@ -104,14 +153,26 @@ $TRANSLATIONS = array( "Database tablespace" => "Tablespace basis data", "Database host" => "Host basis data", "Finish setup" => "Selesaikan instalasi", +"Finishing …" => "Menyelesaikan ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Aplikasi ini memerlukan JavaScript yang diaktifkan untuk beroperasi dengan benar. Silahkan aktifkan JavaScript and re-load this interface.", +"%s is available. Get more information on how to update." => "%s tersedia. Dapatkan informasi lebih lanjut tentang cara memperbarui.", "Log out" => "Keluar", "Automatic logon rejected!" => "Masuk otomatis ditolak!", -"If you did not change your password recently, your account may be compromised!" => "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!", -"Please change your password to secure your account again." => "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda.", +"If you did not change your password recently, your account may be compromised!" => "Jika anda tidak pernah mengubah sandi baru-baru ini, akun anda mungkin dalam bahaya!", +"Please change your password to secure your account again." => "Silakan ubah sandi anda untuk mengamankan kembali akun anda.", +"Server side authentication failed!" => "Otentikasi dari sisi server gagal!", +"Please contact your administrator." => "Silahkan hubungi administrator anda.", "Lost your password?" => "Lupa sandi?", "remember" => "selalu masuk", "Log in" => "Masuk", "Alternative Logins" => "Cara Alternatif untuk Masuk", -"Updating ownCloud to version %s, this may take a while." => "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa saat." +"Hey there,

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

    " => "Hai,

    hanya supaya anda tahu bahwa %s membagikan »%s« dengan anda.
    Lihat!

    ", +"This ownCloud instance is currently in single user mode." => "ownCloud ini sedang dalam mode pengguna tunggal.", +"This means only administrators can use the instance." => "Ini berarti hanya administrator yang dapat menggunakan ownCloud.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Hubungi administrator sistem anda jika pesan ini terus muncul atau muncul tiba-tiba.", +"Thank you for your patience." => "Terima kasih atas kesabaran anda.", +"Updating ownCloud to version %s, this may take a while." => "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa saat.", +"This ownCloud instance is currently being updated, which may take a while." => "ownCloud ini sedang diperbarui, yang mungkin memakan waktu cukup lama.", +"Please reload this page after a short time to continue using ownCloud." => "Muat ulang halaman ini setelah beberapa saat untuk tetap menggunakan ownCloud." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/l10n/el/files.po b/l10n/el/files.po index 57933787756..1171a1f7284 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" -"PO-Revision-Date: 2013-12-28 22:20+0000\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-30 16:00+0000\n" "Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 082ab3fdd93..d102e4fe617 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 03:40+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,57 +20,57 @@ msgstr "" #: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s membagikan »%s« dengan anda" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Tidak dapat mengirim Email ke pengguna berikut: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Hidupkan mode perawatan" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Matikan mode perawatan" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Basis data terbaru" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Memperbarui filecache, mungkin memerlukan waktu sangat lama..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Filecache terbaru" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% selesai ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Tidak ada gambar atau file yang disediakan" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Tipe berkas tak dikenal" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Gambar tidak sah" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Tidak ada gambar profil sementara yang tersedia, coba lagi" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Tidak ada data krop tersedia" #: js/config.php:32 msgid "Sunday" @@ -150,7 +150,7 @@ msgstr "Desember" #: js/js.js:398 msgid "Settings" -msgstr "Setelan" +msgstr "Pengaturan" #: js/js.js:869 msgid "seconds ago" @@ -159,12 +159,12 @@ msgstr "beberapa detik yang lalu" #: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n menit yang lalu" #: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n jam yang lalu" #: js/js.js:872 msgid "today" @@ -177,7 +177,7 @@ msgstr "kemarin" #: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n hari yang lalu" #: js/js.js:875 msgid "last month" @@ -186,7 +186,7 @@ msgstr "bulan kemarin" #: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n bulan yang lalu" #: js/js.js:877 msgid "months ago" @@ -206,7 +206,7 @@ msgstr "Pilih" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Galat memuat templat berkas pemilih: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -222,26 +222,26 @@ msgstr "Oke" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Galat memuat templat pesan: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" +msgstr[0] "{count} berkas konflik" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Satu berkas konflik" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Berkas mana yang ingin anda pertahankan?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Jika anda memilih kedua versi, berkas yang disalin akan memiliki nomor yang ditambahkan sesuai namanya." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -249,19 +249,19 @@ msgstr "Batal" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Lanjutkan" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(semua terpilih)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} terpilih)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Galat memuat templat berkas yang sudah ada" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -290,19 +290,19 @@ msgstr "Galat ketika mengubah izin" #: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" -msgstr "Dibagikan dengan Anda dan grup {group} oleh {owner}" +msgstr "Dibagikan dengan anda dan grup {group} oleh {owner}" #: js/share.js:189 msgid "Shared with you by {owner}" -msgstr "Dibagikan dengan Anda oleh {owner}" +msgstr "Dibagikan dengan anda oleh {owner}" #: js/share.js:213 msgid "Share with user or group …" -msgstr "" +msgstr "Bagikan dengan pengguna atau grup ..." #: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "Bagikan tautan" #: js/share.js:222 msgid "Password protect" @@ -314,7 +314,7 @@ msgstr "Sandi" #: js/share.js:229 msgid "Allow Public Upload" -msgstr "" +msgstr "Izinkan Unggahan Publik" #: js/share.js:233 msgid "Email link to person" @@ -326,7 +326,7 @@ msgstr "Kirim" #: js/share.js:239 msgid "Set expiration date" -msgstr "Setel tanggal kedaluwarsa" +msgstr "Atur tanggal kedaluwarsa" #: js/share.js:240 msgid "Expiration date" @@ -358,11 +358,11 @@ msgstr "Batalkan berbagi" #: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "notifikasi via email" #: js/share.js:408 msgid "can edit" -msgstr "dapat mengedit" +msgstr "dapat sunting" #: js/share.js:410 msgid "access control" @@ -386,7 +386,7 @@ msgstr "bagikan" #: js/share.js:694 msgid "Password protected" -msgstr "Dilindungi sandi" +msgstr "Sandi dilindungi" #: js/share.js:707 msgid "Error unsetting expiration date" @@ -394,7 +394,7 @@ msgstr "Galat ketika menghapus tanggal kedaluwarsa" #: js/share.js:719 msgid "Error setting expiration date" -msgstr "Galat ketika menyetel tanggal kedaluwarsa" +msgstr "Galat ketika mengatur tanggal kedaluwarsa" #: js/share.js:734 msgid "Sending ..." @@ -414,7 +414,7 @@ msgstr "Tipe objek tidak ditentukan." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Masukkan baru" #: js/tags.js:27 msgid "Delete" @@ -426,19 +426,19 @@ msgstr "Tambah" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Sunting tag" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Galat memuat templat dialog: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Tidak ada tag yang terpilih untuk dihapus." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Silakan muat ulang halaman." #: js/update.js:17 msgid "" @@ -454,7 +454,7 @@ msgstr "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s sandi diatur ulang" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -465,11 +465,11 @@ 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 "" +msgstr "Tautan untuk mengatur ulang sandi anda telah dikirimkan ke email Anda.
    Jika anda tidak menerimanya selama waktu yang wajar, periksa folder spam/sampah Anda.
    Jika tidak ada juga, coba tanyakanlah kepada administrator lokal anda." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "" +msgstr "Permintaan gagal!
    Apakah anda yakin email/nama pengguna anda benar?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." @@ -486,19 +486,19 @@ 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 "Berkas anda terenkripsi. Jika sebelumnya anda belum mengaktifkan kunci pemulihan, tidak akan ada cara lagi untuk mendapatkan data anda kembali setelah sandi anda diatur ulang. Jika anda tidak yakin dengan apa yang harus dilakukan, silakan hubungi administrator anda sebelum melanjutkan. Apakah anda benar-benar ingin melanjutkan?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ya, Saya sungguh ingin mengatur ulang sandi saya sekarang" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Atur Ulang" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Sandi Anda telah disetel ulang" +msgstr "Sandi Anda telah diatur ulang" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -510,7 +510,7 @@ msgstr "Sandi baru" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Setel ulang sandi" +msgstr "Atur ulang sandi" #: strings.php:5 msgid "Personal" @@ -534,31 +534,31 @@ msgstr "Bantuan" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Galat saat memuat tag" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Tag sudah ada" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Galat saat menghapus tag" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Galat saat memberikan tag" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Galat saat menghapus tag" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Galat saat memberikan sebagai favorit" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Galat saat menghapus sebagai favorit" #: templates/403.php:12 msgid "Access forbidden" @@ -576,16 +576,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Hai,\n\nhanya supaya anda tahu bahwa %s membagikan %s dengan anda.\nLihat: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Pembagian akan berakhir pada %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Horee!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -599,7 +599,7 @@ msgstr "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Silakan perbarui instalasi PHP anda untuk menggunakan %s dengan aman." #: templates/installation.php:33 msgid "" @@ -617,14 +617,14 @@ msgstr "Tanpa generator acak, penyerang mungkin dapat menebak token penyetelan s msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Kemungkinan direktori data dan berkas Anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi." +msgstr "Kemungkinan direktori data dan berkas anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi." #: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Untuk informasi cara mengkonfigurasi server anda dengan benar, silakan lihat dokumentasi." #: templates/installation.php:48 msgid "Create an admin account" @@ -674,19 +674,19 @@ msgstr "Selesaikan instalasi" #: templates/installation.php:185 msgid "Finishing …" -msgstr "" +msgstr "Menyelesaikan ..." #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Aplikasi ini memerlukan JavaScript yang diaktifkan untuk beroperasi dengan benar. Silahkan aktifkan JavaScript and re-load this interface." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s tersedia. Dapatkan informasi lebih lanjut tentang cara memperbarui." #: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" @@ -700,19 +700,19 @@ msgstr "Masuk otomatis ditolak!" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!" +msgstr "Jika anda tidak pernah mengubah sandi baru-baru ini, akun anda mungkin dalam bahaya!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda." +msgstr "Silakan ubah sandi anda untuk mengamankan kembali akun anda." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Otentikasi dari sisi server gagal!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Silahkan hubungi administrator anda." #: templates/login.php:44 msgid "Lost your password?" @@ -735,25 +735,25 @@ msgstr "Cara Alternatif untuk Masuk" msgid "" "Hey there,

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

    " -msgstr "" +msgstr "Hai,

    hanya supaya anda tahu bahwa %s membagikan »%s« dengan anda.
    Lihat!

    " #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "ownCloud ini sedang dalam mode pengguna tunggal." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Ini berarti hanya administrator yang dapat menggunakan ownCloud." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Hubungi administrator sistem anda jika pesan ini terus muncul atau muncul tiba-tiba." #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Terima kasih atas kesabaran anda." #: templates/update.admin.php:3 #, php-format @@ -763,8 +763,8 @@ msgstr "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa sa #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "ownCloud ini sedang diperbarui, yang mungkin memakan waktu cukup lama." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Muat ulang halaman ini setelah beberapa saat untuk tetap menggunakan ownCloud." diff --git a/l10n/id/lib.po b/l10n/id/lib.po index e94cb6f90d3..c2c84a614cb 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 03:40+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,58 +17,58 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "Apl \"%s\" tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud." -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" -msgstr "" +msgstr "Tidak ada nama apl yang ditentukan" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "Bantuan" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" msgstr "Pribadi" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" -msgstr "Setelan" +msgstr "Pengaturan" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "Pengguna" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Gagal memperbarui \"%s\"." #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Tipe berkas tak dikenal" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Gambar tidak sah" #: private/defaults.php:34 msgid "web services under your control" -msgstr "layanan web dalam kontrol Anda" +msgstr "layanan web dalam kendali anda" #: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "tidak dapat membuka \"%s\"" #: private/files.php:231 msgid "ZIP download is turned off." @@ -80,7 +80,7 @@ msgstr "Berkas harus diunduh satu persatu." #: private/files.php:233 private/files.php:261 msgid "Back to Files" -msgstr "Kembali ke Daftar Berkas" +msgstr "Kembali ke Berkas" #: private/files.php:258 msgid "Selected files too large to generate zip file." @@ -90,63 +90,63 @@ msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Silahkan unduh berkas secara terpisah dalam bentuk potongan kecil atau meminta ke administrator anda." #: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Tidak ada sumber yang ditentukan saat menginstal apl" #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Href tidak ditentukan saat menginstal apl dari http" #: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Lokasi tidak ditentukan saat menginstal apl dari berkas lokal" #: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Arsip dengan tipe %s tidak didukung" #: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Gagal membuka arsip saat menginstal apl" #: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "Apl tidak menyediakan berkas info.xml" #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "Apl tidak dapat diinstal karena terdapat kode yang tidak diizinkan didalam Apl" #: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "Apl tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud" #: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "Apl tidak dapat diinstal karena mengandung tag true yang tidak diizinkan untuk apl yang bukan bawaan." #: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Apl tidak dapat diinstal karena versi di info.xml/versi tidak sama dengan versi yang dilansir dari toko apl" #: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "Direktori Apl sudah ada" #: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s" #: private/json.php:28 msgid "Application is not enabled" @@ -154,11 +154,11 @@ msgstr "Aplikasi tidak diaktifkan" #: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" -msgstr "Galat saat autentikasi" +msgstr "Galat saat otentikasi" #: private/json.php:51 msgid "Token expired. Please reload page." -msgstr "Token kedaluwarsa. Silakan muat ulang halaman." +msgstr "Token sudah kedaluwarsa. Silakan muat ulang halaman." #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -185,12 +185,12 @@ msgstr "%s masukkan nama basis data." #: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data" +msgstr "%s anda tidak boleh menggunakan karakter titik pada nama basis data" #: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nama pengguna dan/atau sandi MySQL tidak valid: %s" +msgstr "Nama pengguna dan/atau sandi MySQL tidak sah: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 #: private/setup/oci.php:114 private/setup/postgresql.php:24 @@ -200,7 +200,7 @@ msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." #: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi MySQL tidak valid" +msgstr "Nama pengguna dan/atau sandi MySQL tidak sah" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -245,11 +245,11 @@ msgstr "Hapus pengguna ini dari MySQL." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Koneksi Oracle tidak dapat dibuat" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi Oracle tidak valid" +msgstr "Nama pengguna dan/atau sandi Oracle tidak sah" #: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format @@ -262,11 +262,11 @@ msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid" #: private/setup.php:28 msgid "Set an admin username." -msgstr "Setel nama pengguna admin." +msgstr "Atur nama pengguna admin." #: private/setup.php:31 msgid "Set an admin password." -msgstr "Setel sandi admin." +msgstr "Atur sandi admin." #: private/setup.php:195 msgid "" @@ -282,7 +282,7 @@ msgstr "Silakan periksa ulang panduan instalasi." #: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" -msgstr "Tidak dapat menemukan kategori \"%s\"" +msgstr "Tidak menemukan kategori \"%s\"" #: private/template/functions.php:130 msgid "seconds ago" @@ -291,12 +291,12 @@ msgstr "beberapa detik yang lalu" #: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n menit yang lalu" #: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n jam yang lalu" #: private/template/functions.php:133 msgid "today" @@ -309,7 +309,7 @@ msgstr "kemarin" #: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n hari yang lalu" #: private/template/functions.php:138 msgid "last month" @@ -318,7 +318,7 @@ msgstr "bulan kemarin" #: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n bulan yang lalu" #: private/template/functions.php:141 msgid "last year" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index ef608cffc5e..e3cda0a7e3c 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-11 15:51+0000\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 03:40+0000\n" "Last-Translator: arifpedia \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 9ba576827d8..368aef3c674 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-30 17:20+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" @@ -283,7 +283,7 @@ msgstr "Kembali" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Lanjutkan" #: templates/settings.php:11 msgid "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 9fd034bfa99..1f4787c9377 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 97fb8b03098..6d56c9a74d2 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 3f1115737a1..fad13d15ad2 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 e74cbc7f281..9c0832ce1bf 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 83eff80eb94..a6dcbfb84cb 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 7c652523203..3159737b002 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 0a7f25a9030..8f71a031548 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 825243ce55c..bd60797a602 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 7d9174ab585..a2857326996 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 4551ca14552..96f6cd08a93 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 c738d224a4f..3e164c6803e 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\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 a6318d6fc85..f2d1682c36b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 0cbcddcc6dd..27d7843104b 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -1,49 +1,69 @@ "Apl \"%s\" tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud.", +"No app name specified" => "Tidak ada nama apl yang ditentukan", "Help" => "Bantuan", "Personal" => "Pribadi", -"Settings" => "Setelan", +"Settings" => "Pengaturan", "Users" => "Pengguna", "Admin" => "Admin", -"web services under your control" => "layanan web dalam kontrol Anda", +"Failed to upgrade \"%s\"." => "Gagal memperbarui \"%s\".", +"Unknown filetype" => "Tipe berkas tak dikenal", +"Invalid image" => "Gambar tidak sah", +"web services under your control" => "layanan web dalam kendali anda", +"cannot open \"%s\"" => "tidak dapat membuka \"%s\"", "ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", "Files need to be downloaded one by one." => "Berkas harus diunduh satu persatu.", -"Back to Files" => "Kembali ke Daftar Berkas", +"Back to Files" => "Kembali ke Berkas", "Selected files too large to generate zip file." => "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Silahkan unduh berkas secara terpisah dalam bentuk potongan kecil atau meminta ke administrator anda.", +"No source specified when installing app" => "Tidak ada sumber yang ditentukan saat menginstal apl", +"No href specified when installing app from http" => "Href tidak ditentukan saat menginstal apl dari http", +"No path specified when installing app from local file" => "Lokasi tidak ditentukan saat menginstal apl dari berkas lokal", +"Archives of type %s are not supported" => "Arsip dengan tipe %s tidak didukung", +"Failed to open archive when installing app" => "Gagal membuka arsip saat menginstal apl", +"App does not provide an info.xml file" => "Apl tidak menyediakan berkas info.xml", +"App can't be installed because of not allowed code in the App" => "Apl tidak dapat diinstal karena terdapat kode yang tidak diizinkan didalam Apl", +"App can't be installed because it is not compatible with this version of ownCloud" => "Apl tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Apl tidak dapat diinstal karena mengandung tag true yang tidak diizinkan untuk apl yang bukan bawaan.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Apl tidak dapat diinstal karena versi di info.xml/versi tidak sama dengan versi yang dilansir dari toko apl", +"App directory already exists" => "Direktori Apl sudah ada", +"Can't create app folder. Please fix permissions. %s" => "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s", "Application is not enabled" => "Aplikasi tidak diaktifkan", -"Authentication error" => "Galat saat autentikasi", -"Token expired. Please reload page." => "Token kedaluwarsa. Silakan muat ulang halaman.", +"Authentication error" => "Galat saat otentikasi", +"Token expired. Please reload page." => "Token sudah kedaluwarsa. Silakan muat ulang halaman.", "Files" => "Berkas", "Text" => "Teks", "Images" => "Gambar", "%s enter the database username." => "%s masukkan nama pengguna basis data.", "%s enter the database name." => "%s masukkan nama basis data.", -"%s you may not use dots in the database name" => "%sAnda tidak boleh menggunakan karakter titik pada nama basis data", -"MS SQL username and/or password not valid: %s" => "Nama pengguna dan/atau sandi MySQL tidak valid: %s", +"%s you may not use dots in the database name" => "%s anda tidak boleh menggunakan karakter titik pada nama basis data", +"MS SQL username and/or password not valid: %s" => "Nama pengguna dan/atau sandi MySQL tidak sah: %s", "You need to enter either an existing account or the administrator." => "Anda harus memasukkan akun yang sudah ada atau administrator.", -"MySQL username and/or password not valid" => "Nama pengguna dan/atau sandi MySQL tidak valid", +"MySQL username and/or password not valid" => "Nama pengguna dan/atau sandi MySQL tidak sah", "DB Error: \"%s\"" => "Galat Basis Data: \"%s\"", "Offending command was: \"%s\"" => "Perintah yang bermasalah: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "Pengguna MySQL '%s'@'localhost' sudah ada.", "Drop this user from MySQL" => "Hapus pengguna ini dari MySQL", "MySQL user '%s'@'%%' already exists" => "Pengguna MySQL '%s'@'%%' sudah ada.", "Drop this user from MySQL." => "Hapus pengguna ini dari MySQL.", -"Oracle username and/or password not valid" => "Nama pengguna dan/atau sandi Oracle tidak valid", +"Oracle connection could not be established" => "Koneksi Oracle tidak dapat dibuat", +"Oracle username and/or password not valid" => "Nama pengguna dan/atau sandi Oracle tidak sah", "Offending command was: \"%s\", name: %s, password: %s" => "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s", "PostgreSQL username and/or password not valid" => "Nama pengguna dan/atau sandi PostgreSQL tidak valid", -"Set an admin username." => "Setel nama pengguna admin.", -"Set an admin password." => "Setel sandi admin.", +"Set an admin username." => "Atur nama pengguna admin.", +"Set an admin password." => "Atur sandi admin.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", "Please double check the installation guides." => "Silakan periksa ulang panduan instalasi.", -"Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"", +"Could not find category \"%s\"" => "Tidak menemukan kategori \"%s\"", "seconds ago" => "beberapa detik yang lalu", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n menit yang lalu"), +"_%n hour ago_::_%n hours ago_" => array("%n jam yang lalu"), "today" => "hari ini", "yesterday" => "kemarin", -"_%n day go_::_%n days ago_" => array(""), +"_%n day go_::_%n days ago_" => array("%n hari yang lalu"), "last month" => "bulan kemarin", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu" ); -- cgit v1.2.3 From ae5671d2813f74562b77ae4288f01b4ed5ed52be Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 31 Dec 2013 14:36:02 +0100 Subject: new config parameter 'front_controller_active' which will instruct the url generator to generate urls without index.php --- lib/private/server.php | 5 +++-- lib/private/urlgenerator.php | 25 ++++++++++++++++++++++++- 2 files changed, 27 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/private/server.php b/lib/private/server.php index 77c3732a9ca..17565fafa46 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -120,7 +120,8 @@ class Server extends SimpleContainer implements IServerContainer { return new \OC\L10N\Factory(); }); $this->registerService('URLGenerator', function($c) { - return new \OC\URLGenerator(); + $config = $this->getConfig(); + return new \OC\URLGenerator($config); }); $this->registerService('AppHelper', function($c) { return new \OC\AppHelper(); @@ -249,7 +250,7 @@ class Server extends SimpleContainer implements IServerContainer { } /** - * @return \OC\Config + * @return \OCP\IConfig */ function getConfig() { return $this->query('AllConfig'); diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index 7795011fd06..4e3c1109000 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -15,6 +15,19 @@ use RuntimeException; * Class to generate URLs */ class URLGenerator implements IURLGenerator { + + /** + * @var \OCP\IConfig + */ + private $config; + + /** + * @param \OCP\IConfig $config + */ + public function __construct($config) { + $this->config = $config; + } + /** * @brief Creates an url using a defined route * @param $route @@ -41,12 +54,18 @@ class URLGenerator implements IURLGenerator { * Returns a url to the given app and file. */ public function linkTo( $app, $file, $args = array() ) { + $frontControllerActive=($this->config->getSystemValue('front_controller_active', 'false') == 'true'); + if( $app != '' ) { $app_path = \OC_App::getAppPath($app); // Check if the app is in the app folder if ($app_path && file_exists($app_path . '/' . $file)) { if (substr($file, -3) == 'php' || substr($file, -3) == 'css') { + $urlLinkTo = \OC::$WEBROOT . '/index.php/apps/' . $app; + if ($frontControllerActive) { + $urlLinkTo = \OC::$WEBROOT . '/apps/' . $app; + } $urlLinkTo .= ($file != 'index.php') ? '/' . $file : ''; } else { $urlLinkTo = \OC_App::getAppWebPath($app) . '/' . $file; @@ -58,7 +77,11 @@ class URLGenerator implements IURLGenerator { if (file_exists(\OC::$SERVERROOT . '/core/' . $file)) { $urlLinkTo = \OC::$WEBROOT . '/core/' . $file; } else { - $urlLinkTo = \OC::$WEBROOT . '/' . $file; + if ($frontControllerActive && $file === 'index.php') { + $urlLinkTo = \OC::$WEBROOT; + } else { + $urlLinkTo = \OC::$WEBROOT . '/' . $file; + } } } -- cgit v1.2.3 From 6254f0a403e315461f8e20ebccf71cb91e9313a3 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 31 Dec 2013 15:12:17 +0100 Subject: use getAppWebPath() in here as well --- lib/private/template/cssresourcelocator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/template/cssresourcelocator.php b/lib/private/template/cssresourcelocator.php index 8e7831ca549..e26daa25827 100644 --- a/lib/private/template/cssresourcelocator.php +++ b/lib/private/template/cssresourcelocator.php @@ -22,7 +22,7 @@ class CSSResourceLocator extends ResourceLocator { $app = substr($style, 0, strpos($style, '/')); $style = substr($style, strpos($style, '/')+1); $app_path = \OC_App::getAppPath($app); - $app_url = $this->webroot . '/index.php/apps/' . $app; + $app_url = \OC_App::getAppWebPath($app); if ($this->appendIfExist($app_path, $style.$this->form_factor.'.css', $app_url) || $this->appendIfExist($app_path, $style.'.css', $app_url) ) { -- cgit v1.2.3 From 4c179850abc1fd8d750b9a13e700819556c6be7d Mon Sep 17 00:00:00 2001 From: Niklas Sombert Date: Wed, 1 Jan 2014 13:43:23 +0100 Subject: Revert "Added support for extra backends (see pull request #5043)" This reverts commit 2d75914f2a97cbfd34ae7c2ef27f5bd8185b81eb, reversing changes made to 760fa9ea3005e7df81a1fac54f207dbe7d8ef312. --- lib/private/connector/sabre/auth.php | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib') diff --git a/lib/private/connector/sabre/auth.php b/lib/private/connector/sabre/auth.php index 43beb5e3f66..0c84fa6b757 100644 --- a/lib/private/connector/sabre/auth.php +++ b/lib/private/connector/sabre/auth.php @@ -36,8 +36,6 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { return true; } else { OC_Util::setUpFS();//login hooks may need early access to the filesystem - //setup extra user backends - OC_User::setupBackends();//if you do not want to use Owncloud's integrated login if(OC_User::login($username, $password)) { OC_Util::setUpFS(OC_User::getUser()); return true; -- cgit v1.2.3 From d5382ac05dd80fe5e963fd84bf00c970bda934c9 Mon Sep 17 00:00:00 2001 From: lolozere Date: Wed, 1 Jan 2014 14:09:02 +0100 Subject: Add support mimetype Add support mimetype for extension .sh, .bash and .sh-lib --- lib/private/mimetypes.list.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 3034c2777f7..740982910e0 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -108,4 +108,7 @@ return array( 'cc' => 'text/x-c', 'cpp' => 'text/x-c++src', 'c++' => 'text/x-c++src', + 'sh' => 'text/x-shellscript', + 'bash' => 'text/x-shellscript', + 'sh-lib' => 'text/x-shellscript', ); -- cgit v1.2.3 From 9b4a827e0bd9dc02fe7f2c9487fed21f50447ea0 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 1 Jan 2014 09:52:19 -0800 Subject: don't specify path to 3rdparty directory when registering Pimple autoloader The core 3rdparty directory is in the include_path from lib/base.php anyway, so this is unnecessary, and causes problems for downstream distributors who unbundle Pimple. --- lib/private/appframework/utility/simplecontainer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/appframework/utility/simplecontainer.php b/lib/private/appframework/utility/simplecontainer.php index 7e4db63bde5..e631e657756 100644 --- a/lib/private/appframework/utility/simplecontainer.php +++ b/lib/private/appframework/utility/simplecontainer.php @@ -3,7 +3,7 @@ namespace OC\AppFramework\Utility; // register 3rdparty autoloaders -require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php'; +require_once 'Pimple/Pimple.php'; /** * Class SimpleContainer -- cgit v1.2.3 From 095f9b8ee047f4bf7b51d5adfcbb74c4d5c713d5 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 2 Jan 2014 01:56:21 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/es_MX.php | 94 ++++++++- apps/files/l10n/tr.php | 2 +- apps/files_encryption/l10n/es_MX.php | 44 ++++ apps/files_external/l10n/es_MX.php | 28 +++ apps/files_sharing/l10n/es_MX.php | 20 ++ apps/files_trashbin/l10n/es_MX.php | 12 +- apps/files_versions/l10n/es_MX.php | 10 + apps/user_ldap/l10n/es_MX.php | 108 +++++++++- apps/user_webdavauth/l10n/es_MX.php | 7 + core/l10n/es_MX.php | 179 +++++++++++++++- core/l10n/tr.php | 2 +- l10n/es_MX/core.po | 388 +++++++++++++++++------------------ l10n/es_MX/files.po | 194 +++++++++--------- l10n/es_MX/files_encryption.po | 92 ++++----- l10n/es_MX/files_external.po | 62 +++--- l10n/es_MX/files_sharing.po | 54 ++--- l10n/es_MX/files_trashbin.po | 48 ++--- l10n/es_MX/files_versions.po | 30 +-- l10n/es_MX/lib.po | 162 +++++++-------- l10n/es_MX/settings.po | 312 ++++++++++++++-------------- l10n/es_MX/user_ldap.po | 252 +++++++++++------------ l10n/es_MX/user_webdavauth.po | 14 +- 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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 6 +- l10n/tr/files.po | 6 +- l10n/tr/lib.po | 22 +- lib/l10n/es_MX.php | 70 ++++++- lib/l10n/tr.php | 2 +- settings/l10n/es_MX.php | 153 ++++++++++++++ 40 files changed, 1545 insertions(+), 852 deletions(-) create mode 100644 apps/files_encryption/l10n/es_MX.php create mode 100644 apps/files_external/l10n/es_MX.php create mode 100644 apps/files_sharing/l10n/es_MX.php create mode 100644 apps/files_versions/l10n/es_MX.php create mode 100644 apps/user_webdavauth/l10n/es_MX.php create mode 100644 settings/l10n/es_MX.php (limited to 'lib') diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index 0157af093e9..0b7571defc7 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -1,7 +1,95 @@ array("",""), -"_%n file_::_%n files_" => array("",""), -"_Uploading %n file_::_Uploading %n files_" => array("","") +"Could not move %s - File with this name already exists" => "No se pudo mover %s - Ya existe un archivo con ese nombre.", +"Could not move %s" => "No se pudo mover %s", +"File name cannot be empty." => "El nombre de archivo no puede estar vacío.", +"File name must not contain \"/\". Please choose a different name." => "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"The name %s is already used in the folder %s. Please choose a different name." => "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente.", +"Not a valid source" => "No es un origen válido", +"Server is not allowed to open URLs, please check the server configuration" => "El servidor no puede acceder URLs; revise la configuración del servidor.", +"Error while downloading %s to %s" => "Error mientras se descargaba %s a %s", +"Error when creating the file" => "Error al crear el archivo", +"Folder name cannot be empty." => "El nombre de la carpeta no puede estar vacío.", +"Folder name must not contain \"/\". Please choose a different name." => "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"Error when creating the folder" => "Error al crear la carpeta.", +"Unable to set upload directory." => "Incapaz de crear directorio de subida.", +"Invalid Token" => "Token Inválido", +"No file was uploaded. Unknown error" => "No se subió ningún archivo. Error desconocido", +"There is no error, the file uploaded with success" => "No hubo ningún problema, el archivo se subió con éxito", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML", +"The uploaded file was only partially uploaded" => "El archivo subido fue sólo subido parcialmente", +"No file was uploaded" => "No se subió ningún archivo", +"Missing a temporary folder" => "Falta la carpeta temporal", +"Failed to write to disk" => "Falló al escribir al disco", +"Not enough storage available" => "No hay suficiente espacio disponible", +"Upload failed. Could not get file info." => "Actualización fallida. No se pudo obtener información del archivo.", +"Upload failed. Could not find uploaded file" => "Actualización fallida. No se pudo encontrar el archivo subido", +"Invalid directory." => "Directorio inválido.", +"Files" => "Archivos", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes", +"Not enough space available" => "No hay suficiente espacio disponible", +"Upload cancelled." => "Subida cancelada.", +"Could not get result from server." => "No se pudo obtener respuesta del servidor.", +"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", +"URL cannot be empty" => "La dirección URL no puede estar vacía", +"In the home folder 'Shared' is a reserved filename" => "En la carpeta de inicio, 'Shared' es un nombre reservado", +"{new_name} already exists" => "{new_name} ya existe", +"Could not create file" => "No se pudo crear el archivo", +"Could not create folder" => "No se pudo crear la carpeta", +"Error fetching URL" => "Error al descargar URL.", +"Share" => "Compartir", +"Delete permanently" => "Eliminar permanentemente", +"Rename" => "Renombrar", +"Pending" => "Pendiente", +"Could not rename file" => "No se pudo renombrar el archivo", +"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", +"undo" => "deshacer", +"Error deleting file." => "Error borrando el archivo.", +"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), +"_%n file_::_%n files_" => array("%n archivo","%n archivos"), +"{dirs} and {files}" => "{dirs} y {files}", +"_Uploading %n file_::_Uploading %n files_" => array("Subiendo %n archivo","Subiendo %n archivos"), +"'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", +"Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!", +"Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", +"Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes.", +"Error moving file" => "Error moviendo archivo", +"Error" => "Error", +"Name" => "Nombre", +"Size" => "Tamaño", +"Modified" => "Modificado", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", +"%s could not be renamed" => "%s no pudo ser renombrado", +"Upload" => "Subir", +"File handling" => "Administración de archivos", +"Maximum upload size" => "Tamaño máximo de subida", +"max. possible: " => "máx. posible:", +"Needed for multi-file and folder downloads." => "Necesario para multi-archivo y descarga de carpetas", +"Enable ZIP-download" => "Habilitar descarga en ZIP", +"0 is unlimited" => "0 significa ilimitado", +"Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", +"Save" => "Guardar", +"New" => "Nuevo", +"New text file" => "Nuevo archivo de texto", +"Text file" => "Archivo de texto", +"New folder" => "Nueva carpeta", +"Folder" => "Carpeta", +"From link" => "Desde enlace", +"Deleted files" => "Archivos eliminados", +"Cancel upload" => "Cancelar subida", +"You don’t have permission to upload or create files here" => "No tienes permisos para subir o crear archivos aquí.", +"Nothing in here. Upload something!" => "No hay nada aquí. ¡Suba algo!", +"Download" => "Descargar", +"Delete" => "Eliminar", +"Upload too large" => "Subida demasido grande", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", +"Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", +"Current scanning" => "Escaneo actual", +"Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos..." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index ebe0b78916f..a9e0935b74e 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -52,7 +52,7 @@ $TRANSLATIONS = array( "_Uploading %n file_::_Uploading %n files_" => array("%n dosya yükleniyor","%n dosya yükleniyor"), "'.' is an invalid file name." => "'.' geçersiz bir dosya adı.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", -"Your storage is full, files can not be updated or synced anymore!" => "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkronizasyon edilmeyecek.", +"Your storage is full, files can not be updated or synced anymore!" => "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek.", "Your storage is almost full ({usedSpacePercent}%)" => "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın", "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin.", diff --git a/apps/files_encryption/l10n/es_MX.php b/apps/files_encryption/l10n/es_MX.php new file mode 100644 index 00000000000..3906e3cacbe --- /dev/null +++ b/apps/files_encryption/l10n/es_MX.php @@ -0,0 +1,44 @@ + "Se ha habilitado la recuperación de archivos", +"Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña.", +"Recovery key successfully disabled" => "Clave de recuperación deshabilitada", +"Could not disable recovery key. Please check your recovery key password!" => "No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!", +"Password successfully changed." => "Su contraseña ha sido cambiada", +"Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", +"Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", +"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.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.", +"Unknown error please check your system settings or contact your administrator" => "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador", +"Missing requirements." => "Requisitos incompletos.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", +"Following users are not set up for encryption:" => "Los siguientes usuarios no han sido configurados para el cifrado:", +"Initial encryption started... This can take some time. Please wait." => "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere.", +"Saving..." => "Guardando...", +"Go directly to your " => "Ir directamente a 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 archivos del usuario en caso de pérdida de la contraseña);", +"Recovery key password" => "Contraseña de clave de recuperación", +"Repeat Recovery key password" => "Repite la 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" => "Antigua clave de recuperación", +"New Recovery key password" => "Nueva clave de recuperación", +"Repeat New Recovery key password" => "Repetir 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 archivos.", +"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 archivos 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" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/es_MX.php b/apps/files_external/l10n/es_MX.php new file mode 100644 index 00000000000..b508df8476a --- /dev/null +++ b/apps/files_external/l10n/es_MX.php @@ -0,0 +1,28 @@ + "Acceso concedido", +"Error configuring Dropbox storage" => "Error configurando el almacenamiento de Dropbox", +"Grant access" => "Conceder acceso", +"Please provide a valid Dropbox app key and secret." => "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta.", +"Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Advertencia: El cliente \"smbclient\" no se encuentra instalado. El montado de carpetas CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.", +"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." => "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de carpetas FTP no es posible. Por favor pida al administrador de su sistema que lo instale.", +"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." => "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.", +"External Storage" => "Almacenamiento externo", +"Folder name" => "Nombre de la carpeta", +"External storage" => "Almacenamiento externo", +"Configuration" => "Configuración", +"Options" => "Opciones", +"Applicable" => "Aplicable", +"Add storage" => "Añadir almacenamiento", +"None set" => "No se ha configurado", +"All Users" => "Todos los usuarios", +"Groups" => "Grupos", +"Users" => "Usuarios", +"Delete" => "Eliminar", +"Enable User External Storage" => "Habilitar almacenamiento externo de usuario", +"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo", +"SSL root certificates" => "Certificados raíz SSL", +"Import Root Certificate" => "Importar certificado raíz" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es_MX.php b/apps/files_sharing/l10n/es_MX.php new file mode 100644 index 00000000000..9100ef8b35f --- /dev/null +++ b/apps/files_sharing/l10n/es_MX.php @@ -0,0 +1,20 @@ + "Este elemento compartido esta protegido por contraseña", +"The password is wrong. Try again." => "La contraseña introducida es errónea. Inténtelo de nuevo.", +"Password" => "Contraseña", +"Sorry, this link doesn’t seem to work anymore." => "Lo siento, este enlace al parecer ya no funciona.", +"Reasons might be:" => "Las causas podrían ser:", +"the item was removed" => "el elemento fue eliminado", +"the link expired" => "el enlace expiró", +"sharing is disabled" => "compartir está desactivado", +"For more info, please ask the person who sent this link." => "Para mayor información, contacte a la persona que le envió el enlace.", +"%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", +"%s shared the file %s with you" => "%s compartió el archivo %s contigo", +"Download" => "Descargar", +"Upload" => "Subir", +"Cancel upload" => "Cancelar subida", +"No preview available for" => "No hay vista previa disponible para", +"Direct link" => "Enlace directo" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/es_MX.php b/apps/files_trashbin/l10n/es_MX.php index 0acad00e8b5..db7a617729b 100644 --- a/apps/files_trashbin/l10n/es_MX.php +++ b/apps/files_trashbin/l10n/es_MX.php @@ -1,6 +1,14 @@ array("",""), -"_%n file_::_%n files_" => array("","") +"Couldn't delete %s permanently" => "No se puede eliminar %s permanentemente", +"Couldn't restore %s" => "No se puede restaurar %s", +"Error" => "Error", +"restored" => "recuperado", +"Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", +"Name" => "Nombre", +"Restore" => "Recuperar", +"Deleted" => "Eliminado", +"Delete" => "Eliminar", +"Deleted Files" => "Archivos Eliminados" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/es_MX.php b/apps/files_versions/l10n/es_MX.php new file mode 100644 index 00000000000..b7acc376978 --- /dev/null +++ b/apps/files_versions/l10n/es_MX.php @@ -0,0 +1,10 @@ + "No se puede revertir: %s", +"Versions" => "Revisiones", +"Failed to revert {file} to revision {timestamp}." => "No se ha podido revertir {archivo} a revisión {timestamp}.", +"More versions..." => "Más versiones...", +"No other versions available" => "No hay otras versiones disponibles", +"Restore" => "Recuperar" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/es_MX.php b/apps/user_ldap/l10n/es_MX.php index 3a1e002311c..16aaa91fd51 100644 --- a/apps/user_ldap/l10n/es_MX.php +++ b/apps/user_ldap/l10n/es_MX.php @@ -1,6 +1,110 @@ array("",""), -"_%s user found_::_%s users found_" => array("","") +"Failed to clear the mappings." => "Ocurrió un fallo al borrar las asignaciones.", +"Failed to delete the server configuration" => "No se pudo 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 puede establecerse!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales.", +"The configuration is invalid. Please have a look at the logs for further details." => "La configuración no es válida. Por favor, busque en el log para más detalles.", +"No action specified" => "No se ha especificado la acción", +"No configuration specified" => "No se ha especificado la configuración", +"No data specified" => "No se han especificado los datos", +" Could not set configuration %s" => "No se pudo establecer la configuración %s", +"Deletion failed" => "Falló el borrado", +"Take over settings from recent server configuration?" => "¿Asumir los ajustes actuales de la configuración del servidor?", +"Keep settings?" => "¿Mantener la configuración?", +"Cannot add server configuration" => "No se puede añadir la configuración del servidor", +"mappings cleared" => "Asignaciones borradas", +"Success" => "Éxito", +"Error" => "Error", +"Configuration OK" => "Configuración OK", +"Configuration incorrect" => "Configuración Incorrecta", +"Configuration incomplete" => "Configuración incompleta", +"Select groups" => "Seleccionar grupos", +"Select object classes" => "Seleccionar la clase de objeto", +"Select attributes" => "Seleccionar atributos", +"Connection test succeeded" => "La prueba de conexión fue exitosa", +"Connection test failed" => "La prueba de conexión falló", +"Do you really want to delete the current Server Configuration?" => "¿Realmente desea eliminar la configuración actual del servidor?", +"Confirm Deletion" => "Confirmar eliminación", +"_%s group found_::_%s groups found_" => array("Grupo %s encontrado","Grupos %s encontrados"), +"_%s user found_::_%s users found_" => array("Usuario %s encontrado","Usuarios %s encontrados"), +"Invalid Host" => "Host inválido", +"Could not find the desired feature" => "No se puede encontrar la función deseada.", +"Save" => "Guardar", +"Test Configuration" => "Configuración de prueba", +"Help" => "Ayuda", +"Limit the access to %s to groups meeting this criteria:" => "Limitar el acceso a %s a los grupos que cumplan este criterio:", +"only those object classes:" => "solamente de estas clases de objeto:", +"only from those groups:" => "solamente de estos grupos:", +"Edit raw filter instead" => "Editar el filtro en bruto en su lugar", +"Raw LDAP filter" => "Filtro LDAP en bruto", +"The filter specifies which LDAP groups shall have access to the %s instance." => "El filtro especifica que grupos LDAP tendrán acceso a %s.", +"groups found" => "grupos encontrados", +"What attribute shall be used as login name:" => "Que atributo debe ser usado como login:", +"LDAP Username:" => "Nombre de usuario LDAP:", +"LDAP Email Address:" => "Dirección e-mail LDAP:", +"Other Attributes:" => "Otros atributos:", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"", +"Add Server Configuration" => "Agregar configuracion del servidor", +"Host" => "Servidor", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", +"Port" => "Puerto", +"User DN" => "DN usuario", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos.", +"Password" => "Contraseña", +"For anonymous access, leave DN and Password empty." => "Para acceso anónimo, deje DN y contraseña vacíos.", +"One Base DN per line" => "Un DN Base por línea", +"You can specify Base DN for users and groups in the Advanced tab" => "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado", +"Limit the access to %s to users meeting this criteria:" => "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:", +"The filter specifies which LDAP users shall have access to the %s instance." => "El filtro especifica que usuarios LDAP pueden tener acceso a %s.", +"users found" => "usuarios encontrados", +"Back" => "Atrás", +"Continue" => "Continuar", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al su administrador de sistemas para desactivar uno de ellos.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Advertencia: El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo.", +"Connection Settings" => "Configuración de conexión", +"Configuration Active" => "Configuracion activa", +"When unchecked, this configuration will be skipped." => "Cuando deseleccione, esta configuracion sera omitida.", +"Backup (Replica) Host" => "Servidor de copia de seguridad (Replica)", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD.", +"Backup (Replica) Port" => "Puerto para copias de seguridad (Replica)", +"Disable Main Server" => "Deshabilitar servidor principal", +"Only connect to the replica server." => "Conectar sólo con el servidor de réplica.", +"Case insensitve LDAP server (Windows)" => "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)", +"Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No se recomienda, ¡utilízalo únicamente para pruebas! Si la conexión únicamente funciona con esta opción, importa el certificado SSL del servidor LDAP en tu servidor %s.", +"Cache Time-To-Live" => "Cache TTL", +"in seconds. A change empties the cache." => "en segundos. Un cambio vacía la caché.", +"Directory Settings" => "Configuración de directorio", +"User Display Name Field" => "Campo de nombre de usuario a mostrar", +"The LDAP attribute to use to generate the user's display name." => "El campo LDAP a usar para generar el nombre para mostrar del usuario.", +"Base User Tree" => "Árbol base de usuario", +"One User Base DN per line" => "Un DN Base de Usuario por línea", +"User Search Attributes" => "Atributos de la busqueda de usuario", +"Optional; one attribute per line" => "Opcional; un atributo por linea", +"Group Display Name Field" => "Campo de nombre de grupo a mostrar", +"The LDAP attribute to use to generate the groups's display name." => "El campo LDAP a usar para generar el nombre para mostrar del grupo.", +"Base Group Tree" => "Árbol base de grupo", +"One Group Base DN per line" => "Un DN Base de Grupo por línea", +"Group Search Attributes" => "Atributos de busqueda de grupo", +"Group-Member association" => "Asociación Grupo-Miembro", +"Special Attributes" => "Atributos especiales", +"Quota Field" => "Cuota", +"Quota Default" => "Cuota por defecto", +"in bytes" => "en bytes", +"Email Field" => "E-mail", +"User Home Folder Naming Rule" => "Regla para la carpeta Home 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, especifique un atributo LDAP/AD.", +"Internal Username" => "Nombre de usuario interno", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente.", +"Internal Username Attribute:" => "Atributo Nombre de usuario Interno:", +"Override UUID detection" => "Sobrescribir la detección UUID", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente.", +"UUID Attribute for Users:" => "Atributo UUID para usuarios:", +"UUID Attribute for Groups:" => "Atributo UUID para Grupos:", +"Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo 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" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/es_MX.php b/apps/user_webdavauth/l10n/es_MX.php new file mode 100644 index 00000000000..951aabe24ae --- /dev/null +++ b/apps/user_webdavauth/l10n/es_MX.php @@ -0,0 +1,7 @@ + "Autenticación mediante WevDAV", +"Address: " => "Dirección:", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Las credenciales de usuario se enviarán a esta dirección. 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." +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_MX.php b/core/l10n/es_MX.php index ffcdde48d47..776233c1ab5 100644 --- a/core/l10n/es_MX.php +++ b/core/l10n/es_MX.php @@ -1,9 +1,178 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), -"_{count} file conflict_::_{count} file conflicts_" => array("","") +"%s shared »%s« with you" => "%s ha compartido »%s« contigo", +"Couldn't send mail to following users: %s " => "No se pudo enviar el mensaje a los siguientes usuarios: %s", +"Turned on maintenance mode" => "Modo mantenimiento activado", +"Turned off maintenance mode" => "Modo mantenimiento desactivado", +"Updated database" => "Base de datos actualizada", +"Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar bastante tiempo...", +"Updated filecache" => "Caché de archivos actualizada", +"... %d%% done ..." => "... %d%% hecho ...", +"No image or file provided" => "No se especificó ningún archivo o imagen", +"Unknown filetype" => "Tipo de archivo desconocido", +"Invalid image" => "Imagen inválida", +"No temporary profile picture available, try again" => "No hay disponible una imagen temporal de perfil, pruebe de nuevo", +"No crop data provided" => "No se proporcionó datos del recorte", +"Sunday" => "Domingo", +"Monday" => "Lunes", +"Tuesday" => "Martes", +"Wednesday" => "Miércoles", +"Thursday" => "Jueves", +"Friday" => "Viernes", +"Saturday" => "Sábado", +"January" => "Enero", +"February" => "Febrero", +"March" => "Marzo", +"April" => "Abril", +"May" => "Mayo", +"June" => "Junio", +"July" => "Julio", +"August" => "Agosto", +"September" => "Septiembre", +"October" => "Octubre", +"November" => "Noviembre", +"December" => "Diciembre", +"Settings" => "Ajustes", +"seconds ago" => "segundos antes", +"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), +"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), +"today" => "hoy", +"yesterday" => "ayer", +"_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), +"last month" => "el mes pasado", +"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), +"months ago" => "meses antes", +"last year" => "el año pasado", +"years ago" => "años antes", +"Choose" => "Seleccionar", +"Error loading file picker template: {error}" => "Error cargando plantilla del seleccionador de archivos: {error}", +"Yes" => "Sí", +"No" => "No", +"Ok" => "Aceptar", +"Error loading message template: {error}" => "Error cargando plantilla del mensaje: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicto de archivo","{count} conflictos de archivo"), +"One file conflict" => "Un conflicto de archivo", +"Which files do you want to keep?" => "¿Que archivos deseas mantener?", +"If you select both versions, the copied file will have a number added to its name." => "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre.", +"Cancel" => "Cancelar", +"Continue" => "Continuar", +"(all selected)" => "(todos seleccionados)", +"({count} selected)" => "({count} seleccionados)", +"Error loading file exists template" => "Error cargando plantilla de archivo existente", +"Shared" => "Compartido", +"Share" => "Compartir", +"Error" => "Error", +"Error while sharing" => "Error al compartir", +"Error while unsharing" => "Error al dejar de compartir", +"Error while changing permissions" => "Error al cambiar permisos", +"Shared with you and the group {group} by {owner}" => "Compartido contigo y el grupo {group} por {owner}", +"Shared with you by {owner}" => "Compartido contigo por {owner}", +"Share with user or group …" => "Compartido con el usuario o con el grupo …", +"Share link" => "Enlace compartido", +"Password protect" => "Protección con contraseña", +"Password" => "Contraseña", +"Allow Public Upload" => "Permitir Subida Pública", +"Email link to person" => "Enviar enlace por correo electrónico a una persona", +"Send" => "Enviar", +"Set expiration date" => "Establecer fecha de caducidad", +"Expiration date" => "Fecha de caducidad", +"Share via email:" => "Compartir por correo electrónico:", +"No people found" => "No se encontró gente", +"group" => "grupo", +"Resharing is not allowed" => "No se permite compartir de nuevo", +"Shared in {item} with {user}" => "Compartido en {item} con {user}", +"Unshare" => "Dejar de compartir", +"notify by email" => "notificar al usuario por correo electrónico", +"can edit" => "puede editar", +"access control" => "control de acceso", +"create" => "crear", +"update" => "actualizar", +"delete" => "eliminar", +"share" => "compartir", +"Password protected" => "Protegido con contraseña", +"Error unsetting expiration date" => "Error eliminando fecha de caducidad", +"Error setting expiration date" => "Error estableciendo fecha de caducidad", +"Sending ..." => "Enviando...", +"Email sent" => "Correo electrónico enviado", +"Warning" => "Precaución", +"The object type is not specified." => "El tipo de objeto no está especificado.", +"Enter new" => "Ingresar nueva", +"Delete" => "Eliminar", +"Add" => "Agregar", +"Edit tags" => "Editar etiquetas", +"Error loading dialog template: {error}" => "Error cargando plantilla de diálogo: {error}", +"No tags selected for deletion." => "No hay etiquetas seleccionadas para borrar.", +"Please reload the page." => "Vuelva a cargar la página.", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", +"The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", +"%s password reset" => "%s restablecer contraseña", +"Use the following link to reset your password: {link}" => "Utilice el siguiente enlace para restablecer su contraseña: {link}", +"The link to reset your password has been sent to your email.
    If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
    Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado.
    Si no está allí, pregunte a su administrador local.", +"Request failed!
    Did you make sure your email/username was right?" => "La petición ha fallado!
    ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?", +"You will receive a link to reset your password via Email." => "Recibirá un enlace por correo electrónico para restablecer su contraseña", +"Username" => "Nombre de usuario", +"Your files 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?" => "Sus archivos están cifrados. Si no ha habilitado la clave de recurperación, no habrá forma de recuperar sus datos luego de que la contraseña sea reseteada. Si no está seguro de qué hacer, contacte a su administrador antes de continuar. ¿Realmente desea continuar?", +"Yes, I really want to reset my password now" => "Sí. Realmente deseo resetear mi contraseña ahora", +"Reset" => "Reiniciar", +"Your password was reset" => "Su contraseña fue restablecida", +"To login page" => "A la página de inicio de sesión", +"New password" => "Nueva contraseña", +"Reset password" => "Restablecer contraseña", +"Personal" => "Personal", +"Users" => "Usuarios", +"Apps" => "Aplicaciones", +"Admin" => "Administración", +"Help" => "Ayuda", +"Error loading tags" => "Error cargando etiquetas.", +"Tag already exists" => "La etiqueta ya existe", +"Error deleting tag(s)" => "Error borrando etiqueta(s)", +"Error tagging" => "Error al etiquetar", +"Error untagging" => "Error al quitar etiqueta", +"Error favoriting" => "Error al marcar como favorito", +"Error unfavoriting" => "Error al quitar como favorito", +"Access forbidden" => "Acceso denegado", +"Cloud not found" => "No se encuentra la nube", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n", +"The share will expire on %s." => "El objeto dejará de ser compartido el %s.", +"Cheers!" => "¡Saludos!", +"Security Warning" => "Advertencia de seguridad", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Por favor, actualice su instalación PHP para usar %s con seguridad.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro, un atacante podría predecir los tokens de restablecimiento de contraseñas y tomar el control de su cuenta.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona.", +"For information how to properly configure your server, please see the documentation." => "Para información de cómo configurar apropiadamente su servidor, por favor vea la documentación.", +"Create an admin account" => "Crear una cuenta de administrador", +"Advanced" => "Avanzado", +"Data folder" => "Directorio de datos", +"Configure the database" => "Configurar la base de datos", +"will be used" => "se utilizarán", +"Database user" => "Usuario de la base de datos", +"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", +"Finish setup" => "Completar la instalación", +"Finishing …" => "Finalizando …", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Esta aplicación requiere que se habilite JavaScript para su correcta operación. Por favor habilite JavaScript y vuelva a cargar esta interfaz.", +"%s is available. Get more information on how to update." => "%s esta disponible. Obtener mas información de como actualizar.", +"Log out" => "Salir", +"Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", +"If you did not change your password recently, your account may be compromised!" => "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", +"Please change your password to secure your account again." => "Por favor cambie su contraseña para asegurar su cuenta nuevamente.", +"Server side authentication failed!" => "La autenticación a fallado en el servidor.", +"Please contact your administrator." => "Por favor, contacte con el administrador.", +"Lost your password?" => "¿Ha perdido su contraseña?", +"remember" => "recordar", +"Log in" => "Entrar", +"Alternative Logins" => "Accesos Alternativos", +"Hey there,

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

    " => "Hola:

    tan solo queremos informarte que %s compartió «%s» contigo.
    ¡Míralo acá!

    ", +"This ownCloud instance is currently in single user mode." => "Esta instalación de ownCloud se encuentra en modo de usuario único.", +"This means only administrators can use the instance." => "Esto quiere decir que solo un administrador puede usarla.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada.", +"Thank you for your patience." => "Gracias por su paciencia.", +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.", +"This ownCloud instance is currently being updated, which may take a while." => "Esta versión de ownCloud se está actualizando, esto puede demorar un tiempo.", +"Please reload this page after a short time to continue using ownCloud." => "Por favor, recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 82164c5c5b9..301959c7e5c 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -106,7 +106,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the ownCloud community." => "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.", "%s password reset" => "%s parola sıfırlama", -"Use the following link to reset your password: {link}" => "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}", +"Use the following link to reset your password: {link}" => "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {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 ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
    Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
    Eğer orada da bulamazsanız sistem yöneticinize sorunuz.", "Request failed!
    Did you make sure your email/username was right?" => "İstek başarısız!
    E-posta ve/veya kullanıcı adınızın doğru olduğundan emin misiniz?", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantıyı e-posta olarak alacaksınız.", diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 81be7d788f7..978e2ba5a47 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:23+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,470 +20,470 @@ msgstr "" #: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s ha compartido »%s« contigo" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Modo mantenimiento activado" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Modo mantenimiento desactivado" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Base de datos actualizada" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Actualizando caché de archivos, esto puede tardar bastante tiempo..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Caché de archivos actualizada" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% hecho ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "No se especificó ningún archivo o imagen" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "No hay disponible una imagen temporal de perfil, pruebe de nuevo" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "No se proporcionó datos del recorte" #: js/config.php:32 msgid "Sunday" -msgstr "" +msgstr "Domingo" #: js/config.php:33 msgid "Monday" -msgstr "" +msgstr "Lunes" #: js/config.php:34 msgid "Tuesday" -msgstr "" +msgstr "Martes" #: js/config.php:35 msgid "Wednesday" -msgstr "" +msgstr "Miércoles" #: js/config.php:36 msgid "Thursday" -msgstr "" +msgstr "Jueves" #: js/config.php:37 msgid "Friday" -msgstr "" +msgstr "Viernes" #: js/config.php:38 msgid "Saturday" -msgstr "" +msgstr "Sábado" #: js/config.php:43 msgid "January" -msgstr "" +msgstr "Enero" #: js/config.php:44 msgid "February" -msgstr "" +msgstr "Febrero" #: js/config.php:45 msgid "March" -msgstr "" +msgstr "Marzo" #: js/config.php:46 msgid "April" -msgstr "" +msgstr "Abril" #: js/config.php:47 msgid "May" -msgstr "" +msgstr "Mayo" #: js/config.php:48 msgid "June" -msgstr "" +msgstr "Junio" #: js/config.php:49 msgid "July" -msgstr "" +msgstr "Julio" #: js/config.php:50 msgid "August" -msgstr "" +msgstr "Agosto" #: js/config.php:51 msgid "September" -msgstr "" +msgstr "Septiembre" #: js/config.php:52 msgid "October" -msgstr "" +msgstr "Octubre" #: js/config.php:53 msgid "November" -msgstr "" +msgstr "Noviembre" #: js/config.php:54 msgid "December" -msgstr "" +msgstr "Diciembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" -msgstr "" +msgstr "Ajustes" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" -msgstr "" +msgstr "segundos antes" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n minuto" +msgstr[1] "Hace %n minutos" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n hora" +msgstr[1] "Hace %n horas" -#: js/js.js:861 +#: js/js.js:872 msgid "today" -msgstr "" +msgstr "hoy" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" -msgstr "" +msgstr "ayer" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n día" +msgstr[1] "Hace %n días" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" -msgstr "" +msgstr "el mes pasado" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n mes" +msgstr[1] "Hace %n meses" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" -msgstr "" +msgstr "meses antes" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" -msgstr "" +msgstr "el año pasado" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" -msgstr "" +msgstr "años antes" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Seleccionar" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Error cargando plantilla del seleccionador de archivos: {error}" #: js/oc-dialogs.js:172 msgid "Yes" -msgstr "" +msgstr "Sí" #: js/oc-dialogs.js:182 msgid "No" -msgstr "" +msgstr "No" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "" +msgstr "Aceptar" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Error cargando plantilla del mensaje: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} conflicto de archivo" +msgstr[1] "{count} conflictos de archivo" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Un conflicto de archivo" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "¿Que archivos deseas mantener?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre." #: js/oc-dialogs.js:376 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(todos seleccionados)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} seleccionados)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Error cargando plantilla de archivo existente" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Compartido" #: js/share.js:109 msgid "Share" -msgstr "" +msgstr "Compartir" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 #: js/share.js:719 templates/installation.php:10 msgid "Error" -msgstr "" +msgstr "Error" #: js/share.js:160 js/share.js:747 msgid "Error while sharing" -msgstr "" +msgstr "Error al compartir" #: js/share.js:171 msgid "Error while unsharing" -msgstr "" +msgstr "Error al dejar de compartir" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Error al cambiar permisos" #: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Compartido contigo y el grupo {group} por {owner}" #: js/share.js:189 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Compartido contigo por {owner}" #: js/share.js:213 msgid "Share with user or group …" -msgstr "" +msgstr "Compartido con el usuario o con el grupo …" #: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "Enlace compartido" #: js/share.js:222 msgid "Password protect" -msgstr "" +msgstr "Protección con contraseña" #: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" -msgstr "" +msgstr "Contraseña" #: js/share.js:229 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitir Subida Pública" #: js/share.js:233 msgid "Email link to person" -msgstr "" +msgstr "Enviar enlace por correo electrónico a una persona" #: js/share.js:234 msgid "Send" -msgstr "" +msgstr "Enviar" #: js/share.js:239 msgid "Set expiration date" -msgstr "" +msgstr "Establecer fecha de caducidad" #: js/share.js:240 msgid "Expiration date" -msgstr "" +msgstr "Fecha de caducidad" #: js/share.js:275 msgid "Share via email:" -msgstr "" +msgstr "Compartir por correo electrónico:" #: js/share.js:278 msgid "No people found" -msgstr "" +msgstr "No se encontró gente" #: js/share.js:322 js/share.js:359 msgid "group" -msgstr "" +msgstr "grupo" #: js/share.js:333 msgid "Resharing is not allowed" -msgstr "" +msgstr "No se permite compartir de nuevo" #: js/share.js:375 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Compartido en {item} con {user}" #: js/share.js:397 msgid "Unshare" -msgstr "" +msgstr "Dejar de compartir" #: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "notificar al usuario por correo electrónico" #: js/share.js:408 msgid "can edit" -msgstr "" +msgstr "puede editar" #: js/share.js:410 msgid "access control" -msgstr "" +msgstr "control de acceso" #: js/share.js:413 msgid "create" -msgstr "" +msgstr "crear" #: js/share.js:416 msgid "update" -msgstr "" +msgstr "actualizar" #: js/share.js:419 msgid "delete" -msgstr "" +msgstr "eliminar" #: js/share.js:422 msgid "share" -msgstr "" +msgstr "compartir" #: js/share.js:694 msgid "Password protected" -msgstr "" +msgstr "Protegido con contraseña" #: js/share.js:707 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Error eliminando fecha de caducidad" #: js/share.js:719 msgid "Error setting expiration date" -msgstr "" +msgstr "Error estableciendo fecha de caducidad" #: js/share.js:734 msgid "Sending ..." -msgstr "" +msgstr "Enviando..." #: js/share.js:745 msgid "Email sent" -msgstr "" +msgstr "Correo electrónico enviado" #: js/share.js:769 msgid "Warning" -msgstr "" +msgstr "Precaución" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "El tipo de objeto no está especificado." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Ingresar nueva" #: js/tags.js:27 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: js/tags.js:31 msgid "Add" -msgstr "" +msgstr "Agregar" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Editar etiquetas" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Error cargando plantilla de diálogo: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "No hay etiquetas seleccionadas para borrar." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Vuelva a cargar la página." #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s restablecer contraseña" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Utilice el siguiente enlace para restablecer su contraseña: {link}" #: lostpassword/templates/lostpassword.php:7 msgid "" "The link to reset your password has been sent to your email.
    If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." -msgstr "" +msgstr "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
    Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado.
    Si no está allí, pregunte a su administrador local." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "" +msgstr "La petición ha fallado!
    ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" #: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 #: templates/login.php:31 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" #: lostpassword/templates/lostpassword.php:25 msgid "" @@ -491,87 +491,87 @@ 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 "Sus archivos están cifrados. Si no ha habilitado la clave de recurperación, no habrá forma de recuperar sus datos luego de que la contraseña sea reseteada. Si no está seguro de qué hacer, contacte a su administrador antes de continuar. ¿Realmente desea continuar?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sí. Realmente deseo resetear mi contraseña ahora" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Reiniciar" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "Su contraseña fue restablecida" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "A la página de inicio de sesión" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "Nueva contraseña" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "Restablecer contraseña" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Personal" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Usuarios" #: strings.php:7 templates/layout.user.php:111 msgid "Apps" -msgstr "" +msgstr "Aplicaciones" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Administración" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Ayuda" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Error cargando etiquetas." #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "La etiqueta ya existe" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Error borrando etiqueta(s)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Error al etiquetar" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Error al quitar etiqueta" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Error al marcar como favorito" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Error al quitar como favorito" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Acceso denegado" #: templates/404.php:15 msgid "Cloud not found" -msgstr "" +msgstr "No se encuentra la nube" #: templates/altmail.php:2 #, php-format @@ -581,195 +581,195 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "El objeto dejará de ser compartido el %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "¡Saludos!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "Advertencia de seguridad" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Por favor, actualice su instalación PHP para usar %s con seguridad." #: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP." #: templates/installation.php:34 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Sin un generador de números aleatorios seguro, un atacante podría predecir los tokens de restablecimiento de contraseñas y tomar el control de su cuenta." #: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona." #: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Para información de cómo configurar apropiadamente su servidor, por favor vea la documentación." #: templates/installation.php:48 msgid "Create an admin account" -msgstr "" +msgstr "Crear una cuenta de administrador" #: templates/installation.php:67 msgid "Advanced" -msgstr "" +msgstr "Avanzado" #: templates/installation.php:74 msgid "Data folder" -msgstr "" +msgstr "Directorio de datos" #: templates/installation.php:86 msgid "Configure the database" -msgstr "" +msgstr "Configurar la base de datos" #: templates/installation.php:91 templates/installation.php:103 #: templates/installation.php:114 templates/installation.php:125 #: templates/installation.php:137 msgid "will be used" -msgstr "" +msgstr "se utilizarán" #: templates/installation.php:149 msgid "Database user" -msgstr "" +msgstr "Usuario de la base de datos" #: templates/installation.php:156 msgid "Database password" -msgstr "" +msgstr "Contraseña de la base de datos" #: templates/installation.php:161 msgid "Database name" -msgstr "" +msgstr "Nombre de la base de datos" #: templates/installation.php:169 msgid "Database tablespace" -msgstr "" +msgstr "Espacio de tablas de la base de datos" #: templates/installation.php:176 msgid "Database host" -msgstr "" +msgstr "Host de la base de datos" #: templates/installation.php:185 msgid "Finish setup" -msgstr "" +msgstr "Completar la instalación" #: templates/installation.php:185 msgid "Finishing …" -msgstr "" +msgstr "Finalizando …" #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Esta aplicación requiere que se habilite JavaScript para su correcta operación. Por favor habilite JavaScript y vuelva a cargar esta interfaz." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s esta disponible. Obtener mas información de como actualizar." #: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" -msgstr "" +msgstr "Salir" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "¡Inicio de sesión automático rechazado!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "La autenticación a fallado en el servidor." #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Por favor, contacte con el administrador." #: templates/login.php:44 msgid "Lost your password?" -msgstr "" +msgstr "¿Ha perdido su contraseña?" #: templates/login.php:49 msgid "remember" -msgstr "" +msgstr "recordar" #: templates/login.php:52 msgid "Log in" -msgstr "" +msgstr "Entrar" #: templates/login.php:58 msgid "Alternative Logins" -msgstr "" +msgstr "Accesos Alternativos" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

    " -msgstr "" +msgstr "Hola:

    tan solo queremos informarte que %s compartió «%s» contigo.
    ¡Míralo acá!

    " #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Esta instalación de ownCloud se encuentra en modo de usuario único." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Esto quiere decir que solo un administrador puede usarla." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada." #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Gracias por su paciencia." #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Esta versión de ownCloud se está actualizando, esto puede demorar un tiempo." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Por favor, recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo." diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index cd03a94ccac..3ab8a00fc9a 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:10+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,394 +20,394 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "No se pudo mover %s" #: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." -msgstr "" +msgstr "El nombre de archivo no puede estar vacío." #: ajax/newfile.php:62 msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." #: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." -msgstr "" +msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." #: ajax/newfile.php:81 msgid "Not a valid source" -msgstr "" +msgstr "No es un origen válido" #: ajax/newfile.php:86 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "El servidor no puede acceder URLs; revise la configuración del servidor." #: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" -msgstr "" +msgstr "Error mientras se descargaba %s a %s" #: ajax/newfile.php:140 msgid "Error when creating the file" -msgstr "" +msgstr "Error al crear el archivo" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." -msgstr "" +msgstr "El nombre de la carpeta no puede estar vacío." #: ajax/newfolder.php:27 msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." #: ajax/newfolder.php:56 msgid "Error when creating the folder" -msgstr "" +msgstr "Error al crear la carpeta." #: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." -msgstr "" +msgstr "Incapaz de crear directorio de subida." #: ajax/upload.php:27 msgid "Invalid Token" -msgstr "" +msgstr "Token Inválido" #: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "No se subió ningún archivo. Error desconocido" #: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "No hubo ningún problema, el archivo se subió con éxito" #: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" #: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" #: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "El archivo subido fue sólo subido parcialmente" #: ajax/upload.php:76 msgid "No file was uploaded" -msgstr "" +msgstr "No se subió ningún archivo" #: ajax/upload.php:77 msgid "Missing a temporary folder" -msgstr "" +msgstr "Falta la carpeta temporal" #: ajax/upload.php:78 msgid "Failed to write to disk" -msgstr "" +msgstr "Falló al escribir al disco" #: ajax/upload.php:96 msgid "Not enough storage available" -msgstr "" +msgstr "No hay suficiente espacio disponible" #: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Actualización fallida. No se pudo obtener información del archivo." #: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Actualización fallida. No se pudo encontrar el archivo subido" #: ajax/upload.php:172 msgid "Invalid directory." -msgstr "" +msgstr "Directorio inválido." #: appinfo/app.php:11 msgid "Files" -msgstr "" +msgstr "Archivos" #: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes" #: js/file-upload.js:239 msgid "Not enough space available" -msgstr "" +msgstr "No hay suficiente espacio disponible" #: js/file-upload.js:306 msgid "Upload cancelled." -msgstr "" +msgstr "Subida cancelada." #: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "No se pudo obtener respuesta del servidor." #: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." #: js/file-upload.js:523 msgid "URL cannot be empty" -msgstr "" +msgstr "La dirección URL no puede estar vacía" #: js/file-upload.js:527 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" +msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" #: js/file-upload.js:529 js/filelist.js:379 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} ya existe" #: js/file-upload.js:595 msgid "Could not create file" -msgstr "" +msgstr "No se pudo crear el archivo" #: js/file-upload.js:611 msgid "Could not create folder" -msgstr "" +msgstr "No se pudo crear la carpeta" #: js/file-upload.js:661 msgid "Error fetching URL" -msgstr "" +msgstr "Error al descargar URL." #: js/fileactions.js:125 msgid "Share" -msgstr "" +msgstr "Compartir" #: js/fileactions.js:137 msgid "Delete permanently" -msgstr "" +msgstr "Eliminar permanentemente" #: js/fileactions.js:194 msgid "Rename" -msgstr "" +msgstr "Renombrar" #: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" -msgstr "" +msgstr "Pendiente" #: js/filelist.js:405 msgid "Could not rename file" -msgstr "" +msgstr "No se pudo renombrar el archivo" #: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "reemplazado {new_name} con {old_name}" #: js/filelist.js:539 msgid "undo" -msgstr "" +msgstr "deshacer" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "Error borrando el archivo." #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n carpeta" +msgstr[1] "%n carpetas" #: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n archivo" +msgstr[1] "%n archivos" #: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} y {files}" #: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Subiendo %n archivo" +msgstr[1] "Subiendo %n archivos" #: js/files.js:72 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' no es un nombre de archivo válido." #: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " #: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" #: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" #: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." #: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." #: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." #: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." #: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Error moviendo archivo" #: js/files.js:558 js/files.js:596 msgid "Error" -msgstr "" +msgstr "Error" #: js/files.js:613 templates/index.php:56 msgid "Name" -msgstr "" +msgstr "Nombre" #: js/files.js:614 templates/index.php:68 msgid "Size" -msgstr "" +msgstr "Tamaño" #: js/files.js:615 templates/index.php:70 msgid "Modified" -msgstr "" +msgstr "Modificado" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." #: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s no pudo ser renombrado" #: lib/helper.php:11 templates/index.php:16 msgid "Upload" -msgstr "" +msgstr "Subir" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Administración de archivos" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Tamaño máximo de subida" #: templates/admin.php:10 msgid "max. possible: " -msgstr "" +msgstr "máx. posible:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Necesario para multi-archivo y descarga de carpetas" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "" +msgstr "Habilitar descarga en ZIP" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "0 significa ilimitado" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Tamaño máximo para archivos ZIP de entrada" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/index.php:5 msgid "New" -msgstr "" +msgstr "Nuevo" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Nuevo archivo de texto" #: templates/index.php:8 msgid "Text file" -msgstr "" +msgstr "Archivo de texto" #: templates/index.php:10 msgid "New folder" -msgstr "" +msgstr "Nueva carpeta" #: templates/index.php:10 msgid "Folder" -msgstr "" +msgstr "Carpeta" #: templates/index.php:12 msgid "From link" -msgstr "" +msgstr "Desde enlace" #: templates/index.php:29 msgid "Deleted files" -msgstr "" +msgstr "Archivos eliminados" #: templates/index.php:34 msgid "Cancel upload" -msgstr "" +msgstr "Cancelar subida" #: templates/index.php:40 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "No tienes permisos para subir o crear archivos aquí." #: templates/index.php:45 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "No hay nada aquí. ¡Suba algo!" #: templates/index.php:62 msgid "Download" -msgstr "" +msgstr "Descargar" #: templates/index.php:73 templates/index.php:74 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: templates/index.php:86 msgid "Upload too large" -msgstr "" +msgstr "Subida demasido grande" #: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." #: templates/index.php:93 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Los archivos están siendo escaneados, por favor espere." #: templates/index.php:96 msgid "Current scanning" -msgstr "" +msgstr "Escaneo actual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Actualizando caché del sistema de archivos..." diff --git a/l10n/es_MX/files_encryption.po b/l10n/es_MX/files_encryption.po index 3d1289e86f9..568f9b2783c 100644 --- a/l10n/es_MX/files_encryption.po +++ b/l10n/es_MX/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:30+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +19,46 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Se ha habilitado la recuperación de archivos" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña." #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Clave de recuperación deshabilitada" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Su contraseña ha sido cambiada" #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Contraseña de clave privada actualizada con éxito." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta." #: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado." #: files/error.php:16 #, php-format @@ -66,136 +66,136 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador" -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." -msgstr "" +msgstr "Requisitos incompletos." -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." -#: hooks/hooks.php:273 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere." #: js/settings-admin.js:13 msgid "Saving..." -msgstr "" +msgstr "Guardando..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Ir directamente a su" #: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "opciones personales" #: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" -msgstr "" +msgstr "Cifrado" #: templates/settings-admin.php:7 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 archivos del usuario en caso de pérdida de la contraseña);" #: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "Contraseña de clave de recuperación" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Repite la contraseña de clave de recuperación" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" -msgstr "" +msgstr "Habilitar" #: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" -msgstr "" +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:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Antigua clave de recuperación" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "Nueva clave de recuperación" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Repetir la nueva clave de recuperación" #: templates/settings-admin.php:58 msgid "Change Password" -msgstr "" +msgstr "Cambiar contraseña" #: templates/settings-personal.php:9 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:12 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:14 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 archivos." #: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Contraseña de acceso antigua" #: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Contraseña de acceso actual" #: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "Actualizar Contraseña de Clave Privada" #: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Habilitar la recuperación de contraseña:" #: templates/settings-personal.php:44 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 archivos cifrados en caso de pérdida de contraseña" #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "Opciones de recuperación de archivos actualizada" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "No se pudo actualizar la recuperación de archivos" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index a6b6cd618ba..1f535c50fdf 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:50+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" -msgstr "" +msgstr "Acceso concedido" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Error configurando el almacenamiento de Dropbox" #: js/dropbox.js:65 js/google.js:86 msgid "Grant access" -msgstr "" +msgstr "Conceder acceso" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta." #: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:453 +#: lib/config.php:467 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Advertencia: El cliente \"smbclient\" no se encuentra instalado. El montado de carpetas CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:457 +#: lib/config.php:471 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de carpetas FTP no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:460 +#: lib/config.php:474 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 "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Almacenamiento externo" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "Nombre de la carpeta" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Almacenamiento externo" #: templates/settings.php:11 msgid "Configuration" -msgstr "" +msgstr "Configuración" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "Opciones" #: templates/settings.php:13 msgid "Applicable" -msgstr "" +msgstr "Aplicable" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Añadir almacenamiento" #: templates/settings.php:90 msgid "None set" -msgstr "" +msgstr "No se ha configurado" #: templates/settings.php:91 msgid "All Users" -msgstr "" +msgstr "Todos los usuarios" #: templates/settings.php:92 msgid "Groups" -msgstr "" +msgstr "Grupos" #: templates/settings.php:100 msgid "Users" -msgstr "" +msgstr "Usuarios" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "" +msgstr "Habilitar almacenamiento externo de usuario" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Permitir a los usuarios montar su propio almacenamiento externo" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "" +msgstr "Certificados raíz SSL" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "" +msgstr "Importar certificado raíz" diff --git a/l10n/es_MX/files_sharing.po b/l10n/es_MX/files_sharing.po index f9b9b2f3179..610c125b72b 100644 --- a/l10n/es_MX/files_sharing.po +++ b/l10n/es_MX/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:10+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,66 +19,66 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Este elemento compartido esta protegido por contraseña" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." -msgstr "" +msgstr "La contraseña introducida es errónea. Inténtelo de nuevo." #: templates/authenticate.php:10 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Lo siento, este enlace al parecer ya no funciona." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Las causas podrían ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "el elemento fue eliminado" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "el enlace expiró" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "compartir está desactivado" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para mayor información, contacte a la persona que le envió el enlace." -#: templates/public.php:17 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:20 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s compartió el archivo %s contigo" -#: templates/public.php:28 templates/public.php:94 +#: templates/public.php:29 templates/public.php:95 msgid "Download" -msgstr "" +msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" -msgstr "" +msgstr "Subir" -#: templates/public.php:58 +#: templates/public.php:59 msgid "Cancel upload" -msgstr "" +msgstr "Cancelar subida" -#: templates/public.php:91 +#: templates/public.php:92 msgid "No preview available for" -msgstr "" +msgstr "No hay vista previa disponible para" -#: templates/public.php:98 +#: templates/public.php:99 msgid "Direct link" -msgstr "" +msgstr "Enlace directo" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index c9ff11a354b..7a4bf2cfd79 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:50+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,44 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "No se puede eliminar %s permanentemente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "No se puede restaurar %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" -msgstr "" +msgstr "Error" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" -msgstr "" +msgstr "recuperado" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" -msgstr "" +msgstr "Nombre" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" -msgstr "" +msgstr "Recuperar" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" -msgstr "" +msgstr "Eliminado" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" -msgstr "" +msgstr "Eliminar" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" -msgstr "" +msgstr "Archivos Eliminados" diff --git a/l10n/es_MX/files_versions.po b/l10n/es_MX/files_versions.po index b1866ae6ce3..afc3a3238a7 100644 --- a/l10n/es_MX/files_versions.po +++ b/l10n/es_MX/files_versions.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:40+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +20,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "No se puede revertir: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" -msgstr "" +msgstr "Revisiones" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "No se ha podido revertir {archivo} a revisión {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Más versiones..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "No hay otras versiones disponibles" -#: js/versions.js:145 +#: js/versions.js:154 msgid "Restore" -msgstr "" +msgstr "Recuperar" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 27ff42b01b7..e47ddeeee98 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 00:20+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,190 +17,190 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" -msgstr "" +msgstr "No se ha especificado nombre de la aplicación" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" -msgstr "" +msgstr "Ayuda" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" -msgstr "" +msgstr "Personal" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" -msgstr "" +msgstr "Ajustes" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" -msgstr "" +msgstr "Usuarios" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" -msgstr "" +msgstr "Administración" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Falló la actualización \"%s\"." #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" #: private/defaults.php:34 msgid "web services under your control" -msgstr "" +msgstr "Servicios web bajo su control" #: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "No se puede abrir \"%s\"" #: private/files.php:231 msgid "ZIP download is turned off." -msgstr "" +msgstr "La descarga en ZIP está desactivada." #: private/files.php:232 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Los archivos deben ser descargados uno por uno." #: private/files.php:233 private/files.php:261 msgid "Back to Files" -msgstr "" +msgstr "Volver a Archivos" #: private/files.php:258 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." #: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador." #: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "No se ha especificado origen cuando se ha instalado la aplicación" #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "No href especificado cuando se ha instalado la aplicación" #: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Sin path especificado cuando se ha instalado la aplicación desde el archivo local" #: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Archivos de tipo %s no son soportados" #: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Fallo de abrir archivo mientras se instala la aplicación" #: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "La aplicación no suministra un archivo info.xml" #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "La aplicación no puede ser instalada por tener código no autorizado en la aplicación" #: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud" #: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "La aplicación no se puede instalar porque contiene la etiqueta\n\ntrue\n\nque no está permitida para aplicaciones no distribuidas" #: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store" #: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "El directorio de la aplicación ya existe" #: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s" #: private/json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "La aplicación no está habilitada" #: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" -msgstr "" +msgstr "Error de autenticación" #: private/json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token expirado. Por favor, recarga la página." #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" -msgstr "" +msgstr "Archivos" #: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" -msgstr "" +msgstr "Texto" #: private/search/provider/file.php:30 msgid "Images" -msgstr "" +msgstr "Imágenes" #: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s ingresar el usuario de la base de datos." #: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s ingresar el nombre de la base de datos" #: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s puede utilizar puntos en el nombre de la base de datos" #: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 #: private/setup/oci.php:114 private/setup/postgresql.php:24 #: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Tiene que ingresar una cuenta existente o la del administrador." #: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "Usuario y/o contraseña de MySQL no válidos" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -212,7 +212,7 @@ msgstr "" #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "Error BD: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 #: private/setup/oci.php:122 private/setup/oci.php:145 @@ -223,111 +223,111 @@ msgstr "" #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Comando infractor: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "Usuario MySQL '%s'@'localhost' ya existe." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Eliminar este usuario de MySQL" #: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "Usuario MySQL '%s'@'%%' ya existe" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Eliminar este usuario de MySQL." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "No se pudo establecer la conexión a Oracle" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Usuario y/o contraseña de Oracle no válidos" #: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" #: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "Usuario y/o contraseña de PostgreSQL no válidos" #: private/setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "Configurar un nombre de usuario del administrador" #: private/setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "Configurar la contraseña del administrador." #: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." #: private/setup.php:196 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Por favor, vuelva a comprobar las guías de instalación." #: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "No puede encontrar la categoria \"%s\"" #: private/template/functions.php:130 msgid "seconds ago" -msgstr "" +msgstr "hace segundos" #: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n minuto" +msgstr[1] "Hace %n minutos" #: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n hora" +msgstr[1] "Hace %n horas" #: private/template/functions.php:133 msgid "today" -msgstr "" +msgstr "hoy" #: private/template/functions.php:134 msgid "yesterday" -msgstr "" +msgstr "ayer" #: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n día" +msgstr[1] "Hace %n días" #: private/template/functions.php:138 msgid "last month" -msgstr "" +msgstr "mes pasado" #: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n mes" +msgstr[1] "Hace %n meses" #: private/template/functions.php:141 msgid "last year" -msgstr "" +msgstr "año pasado" #: private/template/functions.php:142 msgid "years ago" -msgstr "" +msgstr "hace años" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 2e1d62a160e..62fafbc21c8 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:42+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,235 +19,235 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "No se pudo cargar la lista desde el App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:55 msgid "Authentication error" -msgstr "" +msgstr "Error de autenticación" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Se ha cambiado su nombre completo." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "No se puede cambiar el nombre completo" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "El grupo ya existe" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "No se pudo añadir el grupo" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "Correo electrónico guardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "Correo electrónico no válido" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "No se pudo eliminar el grupo" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "" +msgstr "No se pudo eliminar el usuario" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "Idioma cambiado" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "Petición no válida" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "No se pudo añadir el usuario al grupo %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "No se pudo eliminar al usuario del grupo %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "No se pudo actualizar la aplicación." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Contraseña incorrecta" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "No se especificó un usuario" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "No se ha podido cambiar la contraseña" #: js/apps.js:43 msgid "Update to {appversion}" -msgstr "" +msgstr "Actualizado a {appversion}" #: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" -msgstr "" +msgstr "Desactivar" #: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" -msgstr "" +msgstr "Activar" #: js/apps.js:71 msgid "Please wait...." -msgstr "" +msgstr "Espere, por favor...." #: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Error mientras se desactivaba la aplicación" #: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Error mientras se activaba la aplicación" #: js/apps.js:125 msgid "Updating...." -msgstr "" +msgstr "Actualizando...." #: js/apps.js:128 msgid "Error while updating app" -msgstr "" +msgstr "Error mientras se actualizaba la aplicación" #: js/apps.js:128 msgid "Error" -msgstr "" +msgstr "Error" #: js/apps.js:129 templates/apps.php:43 msgid "Update" -msgstr "" +msgstr "Actualizar" #: js/apps.js:132 msgid "Updated" -msgstr "" +msgstr "Actualizado" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Seleccionar una imagen de perfil" #: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." #: js/personal.js:287 msgid "Saving..." -msgstr "" +msgstr "Guardando..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "eliminado" #: js/users.js:47 msgid "undo" -msgstr "" +msgstr "deshacer" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Imposible eliminar al usuario" #: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" -msgstr "" +msgstr "Grupos" #: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" -msgstr "" +msgstr "Administrador del Grupo" #: js/users.js:123 templates/users.php:170 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: js/users.js:284 msgid "add group" -msgstr "" +msgstr "añadir Grupo" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" -msgstr "" +msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" -msgstr "" +msgstr "Error al crear usuario" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" -msgstr "" +msgstr "Se debe proporcionar una contraseña válida" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." #: personal.php:45 personal.php:46 msgid "__language_name__" -msgstr "" +msgstr "Español (México)" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Todo (Información, Avisos, Errores, debug y problemas fatales)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Información, Avisos, Errores y problemas fatales" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Advertencias, errores y problemas fatales" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Errores y problemas fatales" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "Problemas fatales solamente" #: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" -msgstr "" +msgstr "Advertencia de seguridad" #: templates/admin.php:25 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS." #: templates/admin.php:39 msgid "" @@ -256,68 +256,68 @@ msgid "" "configure your webserver in a way that the data directory is no longer " "accessible or you move the data directory outside the webserver document " "root." -msgstr "" +msgstr "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web." #: templates/admin.php:50 msgid "Setup Warning" -msgstr "" +msgstr "Advertencia de configuración" #: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." #: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Por favor, vuelva a comprobar las guías de instalación." #: templates/admin.php:65 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "No se ha encontrado el módulo \"fileinfo\"" #: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME." #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Su versión de PHP ha caducado" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello." #: templates/admin.php:93 msgid "Locale not working" -msgstr "" +msgstr "La configuración regional no está funcionando" #: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "No se puede escoger una configuración regional que soporte UTF-8." #: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos." #: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. " #: templates/admin.php:118 msgid "Internet connection not working" -msgstr "" +msgstr "La conexión a Internet no está funcionando" #: templates/admin.php:121 msgid "" @@ -326,118 +326,118 @@ msgid "" "installation of 3rd party apps don´t work. Accessing files from remote and " "sending of notification emails might also not work. We suggest to enable " "internet connection for this server if you want to have all features." -msgstr "" +msgstr "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones." #: templates/admin.php:135 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:142 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Ejecutar una tarea con cada página cargada" #: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "" +msgstr "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP." #: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." #: templates/admin.php:163 msgid "Sharing" -msgstr "" +msgstr "Compartiendo" #: templates/admin.php:169 msgid "Enable Share API" -msgstr "" +msgstr "Activar API de Compartición" #: templates/admin.php:170 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permitir a las aplicaciones utilizar la API de Compartición" #: templates/admin.php:177 msgid "Allow links" -msgstr "" +msgstr "Permitir enlaces" #: templates/admin.php:178 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" #: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "Permitir subidas públicas" #: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" #: templates/admin.php:195 msgid "Allow resharing" -msgstr "" +msgstr "Permitir re-compartición" #: templates/admin.php:196 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" #: templates/admin.php:203 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permitir a los usuarios compartir con cualquier persona" #: templates/admin.php:206 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" #: templates/admin.php:213 msgid "Allow mail notification" -msgstr "" +msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" #: templates/admin.php:221 msgid "Security" -msgstr "" +msgstr "Seguridad" #: templates/admin.php:234 msgid "Enforce HTTPS" -msgstr "" +msgstr "Forzar HTTPS" #: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." #: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." #: templates/admin.php:254 msgid "Log" -msgstr "" +msgstr "Registro" #: templates/admin.php:255 msgid "Log level" -msgstr "" +msgstr "Nivel de registro" #: templates/admin.php:287 msgid "More" -msgstr "" +msgstr "Más" #: templates/admin.php:288 msgid "Less" -msgstr "" +msgstr "Menos" #: templates/admin.php:294 templates/personal.php:173 msgid "Version" -msgstr "" +msgstr "Versión" #: templates/admin.php:298 templates/personal.php:176 msgid "" @@ -447,222 +447,222 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." #: templates/apps.php:13 msgid "Add your App" -msgstr "" +msgstr "Añade tu aplicación" #: templates/apps.php:28 msgid "More Apps" -msgstr "" +msgstr "Más aplicaciones" #: templates/apps.php:33 msgid "Select an App" -msgstr "" +msgstr "Seleccionar una aplicación" #: templates/apps.php:39 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Ver la página de aplicaciones en apps.owncloud.com" #: templates/apps.php:41 msgid "-licensed by " -msgstr "" +msgstr "-licencia otorgada por " #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "Documentación de usuario" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "Documentación de administrador" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "Documentación en línea" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Foro" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Rastreador de fallos" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "Soporte comercial" #: templates/personal.php:8 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Obtener las aplicaciones para sincronizar sus archivos" #: templates/personal.php:19 msgid "Show First Run Wizard again" -msgstr "" +msgstr "Mostrar nuevamente el Asistente de ejecución inicial" #: templates/personal.php:27 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Ha usado %s de los %s disponibles" #: templates/personal.php:39 templates/users.php:23 templates/users.php:89 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/personal.php:40 msgid "Your password was changed" -msgstr "" +msgstr "Su contraseña ha sido cambiada" #: templates/personal.php:41 msgid "Unable to change your password" -msgstr "" +msgstr "No se ha podido cambiar su contraseña" #: templates/personal.php:42 msgid "Current password" -msgstr "" +msgstr "Contraseña actual" #: templates/personal.php:44 msgid "New password" -msgstr "" +msgstr "Nueva contraseña" #: templates/personal.php:46 msgid "Change password" -msgstr "" +msgstr "Cambiar contraseña" #: templates/personal.php:58 templates/users.php:88 msgid "Full Name" -msgstr "" +msgstr "Nombre completo" #: templates/personal.php:73 msgid "Email" -msgstr "" +msgstr "Correo electrónico" #: templates/personal.php:75 msgid "Your email address" -msgstr "" +msgstr "Su dirección de correo" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Escriba una dirección de correo electrónico para restablecer la contraseña" #: templates/personal.php:86 msgid "Profile picture" -msgstr "" +msgstr "Foto de perfil" #: templates/personal.php:91 msgid "Upload new" -msgstr "" +msgstr "Subir otra" #: templates/personal.php:93 msgid "Select new from Files" -msgstr "" +msgstr "Seleccionar otra desde Archivos" #: templates/personal.php:94 msgid "Remove image" -msgstr "" +msgstr "Borrar imagen" #: templates/personal.php:95 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Su avatar es proporcionado por su cuenta original." #: templates/personal.php:101 msgid "Abort" -msgstr "" +msgstr "Cancelar" #: templates/personal.php:102 msgid "Choose as profile image" -msgstr "" +msgstr "Seleccionar como imagen de perfil" #: templates/personal.php:110 templates/personal.php:111 msgid "Language" -msgstr "" +msgstr "Idioma" #: templates/personal.php:130 msgid "Help translate" -msgstr "" +msgstr "Ayúdanos a traducir" #: templates/personal.php:137 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:139 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "" +msgstr "Utilice esta dirección para acceder a sus archivos vía WebDAV" #: templates/personal.php:150 msgid "Encryption" -msgstr "" +msgstr "Cifrado" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" #: templates/personal.php:158 msgid "Log-in password" -msgstr "" +msgstr "Contraseña de acceso" #: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "" +msgstr "Descifrar archivos" #: templates/users.php:21 msgid "Login Name" -msgstr "" +msgstr "Nombre de usuario" #: templates/users.php:30 msgid "Create" -msgstr "" +msgstr "Crear" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "Recuperación de la contraseña de administración" #: 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 "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña." #: templates/users.php:42 msgid "Default Storage" -msgstr "" +msgstr "Almacenamiento predeterminado" #: templates/users.php:44 templates/users.php:139 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" -msgstr "" +msgstr "Ilimitado" #: templates/users.php:66 templates/users.php:163 msgid "Other" -msgstr "" +msgstr "Otro" #: templates/users.php:87 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" #: templates/users.php:94 msgid "Storage" -msgstr "" +msgstr "Almacenamiento" #: templates/users.php:108 msgid "change full name" -msgstr "" +msgstr "cambiar el nombre completo" #: templates/users.php:112 msgid "set new password" -msgstr "" +msgstr "establecer nueva contraseña" #: templates/users.php:143 msgid "Default" -msgstr "" +msgstr "Predeterminado" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index 0a27d53a545..4a5d82737a3 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:50+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,429 +19,429 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Ocurrió un fallo al borrar las asignaciones." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "No se pudo borrar la configuración del servidor" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "¡La configuración es válida y la conexión puede establecerse!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "La configuración no es válida. Por favor, busque en el log para más detalles." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "No se ha especificado la acción" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "No se ha especificado la configuración" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "No se han especificado los datos" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "No se pudo establecer la configuración %s" #: js/settings.js:67 msgid "Deletion failed" -msgstr "" +msgstr "Falló el borrado" #: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "¿Asumir los ajustes actuales de la configuración del servidor?" #: js/settings.js:84 msgid "Keep settings?" -msgstr "" +msgstr "¿Mantener la configuración?" #: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "No se puede añadir la configuración del servidor" #: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "Asignaciones borradas" #: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "Éxito" #: js/settings.js:133 msgid "Error" -msgstr "" +msgstr "Error" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" -msgstr "" +msgstr "Configuración OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuración Incorrecta" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuración incompleta" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" -msgstr "" +msgstr "Seleccionar grupos" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" -msgstr "" +msgstr "Seleccionar la clase de objeto" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" -msgstr "" +msgstr "Seleccionar atributos" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" -msgstr "" +msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" -msgstr "" +msgstr "La prueba de conexión falló" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" -msgstr "" +msgstr "Confirmar eliminación" #: lib/wizard.php:79 lib/wizard.php:93 #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Grupo %s encontrado" +msgstr[1] "Grupos %s encontrados" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Usuario %s encontrado" +msgstr[1] "Usuarios %s encontrados" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" -msgstr "" +msgstr "Host inválido" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" -msgstr "" +msgstr "No se puede encontrar la función deseada." #: templates/part.settingcontrols.php:2 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/part.settingcontrols.php:4 msgid "Test Configuration" -msgstr "" +msgstr "Configuración de prueba" #: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 msgid "Help" -msgstr "" +msgstr "Ayuda" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "" +msgstr "Limitar el acceso a %s a los grupos que cumplan este criterio:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "solamente de estas clases de objeto:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "solamente de estos grupos:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Editar el filtro en bruto en su lugar" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Filtro LDAP en bruto" #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "El filtro especifica que grupos LDAP tendrán acceso a %s." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 msgid "What attribute shall be used as login name:" -msgstr "" +msgstr "Que atributo debe ser usado como login:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "Nombre de usuario LDAP:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "Dirección e-mail LDAP:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Otros atributos:" #: templates/part.wizard-loginfilter.php:38 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "" +msgstr "Agregar configuracion del servidor" #: templates/part.wizard-server.php:30 msgid "Host" -msgstr "" +msgstr "Servidor" #: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" #: templates/part.wizard-server.php:36 msgid "Port" -msgstr "" +msgstr "Puerto" #: templates/part.wizard-server.php:44 msgid "User DN" -msgstr "" +msgstr "DN usuario" #: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." #: templates/part.wizard-server.php:52 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Para acceso anónimo, deje DN y contraseña vacíos." #: templates/part.wizard-server.php:60 msgid "One Base DN per line" -msgstr "" +msgstr "Un DN Base por línea" #: templates/part.wizard-server.php:61 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit the access to %s to users meeting this criteria:" -msgstr "" +msgstr "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" +msgstr "El filtro especifica que usuarios LDAP pueden tener acceso a %s." #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "usuarios encontrados" #: templates/part.wizardcontrols.php:5 msgid "Back" -msgstr "" +msgstr "Atrás" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Continuar" #: templates/settings.php:11 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al su administrador de sistemas para desactivar uno de ellos." #: templates/settings.php:14 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Advertencia: El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo." #: templates/settings.php:20 msgid "Connection Settings" -msgstr "" +msgstr "Configuración de conexión" #: templates/settings.php:22 msgid "Configuration Active" -msgstr "" +msgstr "Configuracion activa" #: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Cuando deseleccione, esta configuracion sera omitida." #: templates/settings.php:23 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Servidor de copia de seguridad (Replica)" #: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD." #: templates/settings.php:24 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Puerto para copias de seguridad (Replica)" #: templates/settings.php:25 msgid "Disable Main Server" -msgstr "" +msgstr "Deshabilitar servidor principal" #: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "Conectar sólo con el servidor de réplica." #: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Apagar la validación por certificado SSL." #: templates/settings.php:27 #, php-format msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "No se recomienda, ¡utilízalo únicamente para pruebas! Si la conexión únicamente funciona con esta opción, importa el certificado SSL del servidor LDAP en tu servidor %s." #: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache TTL" #: templates/settings.php:28 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "en segundos. Un cambio vacía la caché." #: templates/settings.php:30 msgid "Directory Settings" -msgstr "" +msgstr "Configuración de directorio" #: templates/settings.php:32 msgid "User Display Name Field" -msgstr "" +msgstr "Campo de nombre de usuario a mostrar" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "El campo LDAP a usar para generar el nombre para mostrar del usuario." #: templates/settings.php:33 msgid "Base User Tree" -msgstr "" +msgstr "Árbol base de usuario" #: templates/settings.php:33 msgid "One User Base DN per line" -msgstr "" +msgstr "Un DN Base de Usuario por línea" #: templates/settings.php:34 msgid "User Search Attributes" -msgstr "" +msgstr "Atributos de la busqueda de usuario" #: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Opcional; un atributo por linea" #: templates/settings.php:35 msgid "Group Display Name Field" -msgstr "" +msgstr "Campo de nombre de grupo a mostrar" #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "El campo LDAP a usar para generar el nombre para mostrar del grupo." #: templates/settings.php:36 msgid "Base Group Tree" -msgstr "" +msgstr "Árbol base de grupo" #: templates/settings.php:36 msgid "One Group Base DN per line" -msgstr "" +msgstr "Un DN Base de Grupo por línea" #: templates/settings.php:37 msgid "Group Search Attributes" -msgstr "" +msgstr "Atributos de busqueda de grupo" #: templates/settings.php:38 msgid "Group-Member association" -msgstr "" +msgstr "Asociación Grupo-Miembro" #: templates/settings.php:40 msgid "Special Attributes" -msgstr "" +msgstr "Atributos especiales" #: templates/settings.php:42 msgid "Quota Field" -msgstr "" +msgstr "Cuota" #: templates/settings.php:43 msgid "Quota Default" -msgstr "" +msgstr "Cuota por defecto" #: templates/settings.php:43 msgid "in bytes" -msgstr "" +msgstr "en bytes" #: templates/settings.php:44 msgid "Email Field" -msgstr "" +msgstr "E-mail" #: templates/settings.php:45 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Regla para la carpeta Home de usuario" #: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." #: templates/settings.php:51 msgid "Internal Username" -msgstr "" +msgstr "Nombre de usuario interno" #: templates/settings.php:52 msgid "" @@ -457,15 +457,15 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente." #: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Atributo Nombre de usuario Interno:" #: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "Sobrescribir la detección UUID" #: templates/settings.php:55 msgid "" @@ -476,19 +476,19 @@ 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 behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." #: templates/settings.php:56 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "Atributo UUID para usuarios:" #: templates/settings.php:57 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "Atributo UUID para Grupos:" #: templates/settings.php:58 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Asignación del Nombre de usuario de un usuario LDAP" #: templates/settings.php:59 msgid "" @@ -502,12 +502,12 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "" +msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." #: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" #: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" diff --git a/l10n/es_MX/user_webdavauth.po b/l10n/es_MX/user_webdavauth.po index 9948a588c8b..063bdc8a6b7 100644 --- a/l10n/es_MX/user_webdavauth.po +++ b/l10n/es_MX/user_webdavauth.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:40+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "Autenticación mediante WevDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Dirección:" #: templates/settings.php:7 msgid "" "The user credentials will be sent to this address. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "Las credenciales de usuario se enviarán a esta dirección. 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/l10n/templates/core.pot b/l10n/templates/core.pot index 1f4787c9377..c528e78b933 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 6d56c9a74d2..d43c2a7ba4c 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 fad13d15ad2..0a94bd7f958 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 9c0832ce1bf..ca7592fbe7c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 a6dcbfb84cb..1a13b136858 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 3159737b002..1eb88f50775 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 8f71a031548..1f78fe56ae1 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 bd60797a602..51f7dadfc46 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index a2857326996..54dba8afe16 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 96f6cd08a93..852c12681fc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 3e164c6803e..6a3b1094bc4 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\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 f2d1682c36b..7206e4efddc 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 94422046343..50bf2d71013 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-23 15:00+0000\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 15:20+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -467,7 +467,7 @@ msgstr "%s parola sıfırlama" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}" +msgstr "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {link}" #: lostpassword/templates/lostpassword.php:7 msgid "" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index ec801bc49d4..89f82eb48b5 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-23 17:20+0000\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 15:40+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -250,7 +250,7 @@ msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakter #: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkronizasyon edilmeyecek." +msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek." #: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index b78d6f28701..8aef1c95bbc 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-22 23:50+0000\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 15:40+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -21,38 +21,38 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz." -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" msgstr "Uygulama adı belirtimedli" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "Yardım" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" msgstr "Kişisel" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" msgstr "Ayarlar" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "Kullanıcılar" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "Yönetici" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" yükseltme başarısız oldu." @@ -106,7 +106,7 @@ msgstr "Uygulama kuruluyorken http'de href belirtilmedi" #: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi" +msgstr "Uygulama yerel dosyadan kurulurken dosya yolu belirtilmedi" #: private/installer.php:89 #, php-format diff --git a/lib/l10n/es_MX.php b/lib/l10n/es_MX.php index 15f78e0bce6..7454d4966d8 100644 --- a/lib/l10n/es_MX.php +++ b/lib/l10n/es_MX.php @@ -1,8 +1,70 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day go_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("","") +"App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud", +"No app name specified" => "No se ha especificado nombre de la aplicación", +"Help" => "Ayuda", +"Personal" => "Personal", +"Settings" => "Ajustes", +"Users" => "Usuarios", +"Admin" => "Administración", +"Failed to upgrade \"%s\"." => "Falló la actualización \"%s\".", +"Unknown filetype" => "Tipo de archivo desconocido", +"Invalid image" => "Imagen inválida", +"web services under your control" => "Servicios web bajo su control", +"cannot open \"%s\"" => "No se puede abrir \"%s\"", +"ZIP download is turned off." => "La descarga en ZIP está desactivada.", +"Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", +"Back to Files" => "Volver a Archivos", +"Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador.", +"No source specified when installing app" => "No se ha especificado origen cuando se ha instalado la aplicación", +"No href specified when installing app from http" => "No href especificado cuando se ha instalado la aplicación", +"No path specified when installing app from local file" => "Sin path especificado cuando se ha instalado la aplicación desde el archivo local", +"Archives of type %s are not supported" => "Archivos de tipo %s no son soportados", +"Failed to open archive when installing app" => "Fallo de abrir archivo mientras se instala la aplicación", +"App does not provide an info.xml file" => "La aplicación no suministra un archivo info.xml", +"App can't be installed because of not allowed code in the App" => "La aplicación no puede ser instalada por tener código no autorizado en la aplicación", +"App can't be installed because it is not compatible with this version of ownCloud" => "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "La aplicación no se puede instalar porque contiene la etiqueta\n\ntrue\n\nque no está permitida para aplicaciones no distribuidas", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store", +"App directory already exists" => "El directorio de la aplicación ya existe", +"Can't create app folder. Please fix permissions. %s" => "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s", +"Application is not enabled" => "La aplicación no está habilitada", +"Authentication error" => "Error de autenticación", +"Token expired. Please reload page." => "Token expirado. Por favor, recarga la página.", +"Files" => "Archivos", +"Text" => "Texto", +"Images" => "Imágenes", +"%s enter the database username." => "%s ingresar el usuario de la base de datos.", +"%s enter the database name." => "%s ingresar el nombre de la base de datos", +"%s you may not use dots in the database name" => "%s puede utilizar puntos en el nombre de la base de datos", +"MS SQL username and/or password not valid: %s" => "Usuario y/o contraseña de MS SQL no válidos: %s", +"You need to enter either an existing account or the administrator." => "Tiene que ingresar una cuenta existente o la del administrador.", +"MySQL username and/or password not valid" => "Usuario y/o contraseña de MySQL no válidos", +"DB Error: \"%s\"" => "Error BD: \"%s\"", +"Offending command was: \"%s\"" => "Comando infractor: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Usuario MySQL '%s'@'localhost' ya existe.", +"Drop this user from MySQL" => "Eliminar este usuario de MySQL", +"MySQL user '%s'@'%%' already exists" => "Usuario MySQL '%s'@'%%' ya existe", +"Drop this user from MySQL." => "Eliminar este usuario de MySQL.", +"Oracle connection could not be established" => "No se pudo establecer la conexión a Oracle", +"Oracle username and/or password not valid" => "Usuario y/o contraseña de Oracle no válidos", +"Offending command was: \"%s\", name: %s, password: %s" => "Comando infractor: \"%s\", nombre: %s, contraseña: %s", +"PostgreSQL username and/or password not valid" => "Usuario y/o contraseña de PostgreSQL no válidos", +"Set an admin username." => "Configurar un nombre de usuario del administrador", +"Set an admin password." => "Configurar la contraseña del administrador.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", +"Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", +"Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"", +"seconds ago" => "hace segundos", +"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), +"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), +"today" => "hoy", +"yesterday" => "ayer", +"_%n day go_::_%n days ago_" => array("Hace %n día","Hace %n días"), +"last month" => "mes pasado", +"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), +"last year" => "año pasado", +"years ago" => "hace años" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index d59b6519c3c..0439ddab6a2 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -19,7 +19,7 @@ $TRANSLATIONS = array( "Please download the files separately in smaller chunks or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. ", "No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", "No href specified when installing app from http" => "Uygulama kuruluyorken http'de href belirtilmedi", -"No path specified when installing app from local file" => "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi", +"No path specified when installing app from local file" => "Uygulama yerel dosyadan kurulurken dosya yolu belirtilmedi", "Archives of type %s are not supported" => "%s arşiv türü desteklenmiyor", "Failed to open archive when installing app" => "Uygulama kuruluyorken arşiv dosyası açılamadı", "App does not provide an info.xml file" => "Uygulama info.xml dosyası sağlamıyor", diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php new file mode 100644 index 00000000000..520ab637ffc --- /dev/null +++ b/settings/l10n/es_MX.php @@ -0,0 +1,153 @@ + "No se pudo cargar la lista desde el App Store", +"Authentication error" => "Error de autenticación", +"Your full name has been changed." => "Se ha cambiado su nombre completo.", +"Unable to change full name" => "No se puede cambiar el nombre completo", +"Group already exists" => "El grupo ya existe", +"Unable to add group" => "No se pudo añadir el grupo", +"Email saved" => "Correo electrónico guardado", +"Invalid email" => "Correo electrónico no válido", +"Unable to delete group" => "No se pudo eliminar el grupo", +"Unable to delete user" => "No se pudo eliminar el usuario", +"Language changed" => "Idioma cambiado", +"Invalid request" => "Petición no válida", +"Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", +"Unable to add user to group %s" => "No se pudo añadir el usuario al grupo %s", +"Unable to remove user from group %s" => "No se pudo eliminar al usuario del grupo %s", +"Couldn't update app." => "No se pudo actualizar la aplicación.", +"Wrong password" => "Contraseña incorrecta", +"No user supplied" => "No se especificó un usuario", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario", +"Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.", +"Unable to change password" => "No se ha podido cambiar la contraseña", +"Update to {appversion}" => "Actualizado a {appversion}", +"Disable" => "Desactivar", +"Enable" => "Activar", +"Please wait...." => "Espere, por favor....", +"Error while disabling app" => "Error mientras se desactivaba la aplicación", +"Error while enabling app" => "Error mientras se activaba la aplicación", +"Updating...." => "Actualizando....", +"Error while updating app" => "Error mientras se actualizaba la aplicación", +"Error" => "Error", +"Update" => "Actualizar", +"Updated" => "Actualizado", +"Select a profile picture" => "Seleccionar una imagen de perfil", +"Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.", +"Saving..." => "Guardando...", +"deleted" => "eliminado", +"undo" => "deshacer", +"Unable to remove user" => "Imposible eliminar al usuario", +"Groups" => "Grupos", +"Group Admin" => "Administrador del Grupo", +"Delete" => "Eliminar", +"add group" => "añadir Grupo", +"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido", +"Error creating user" => "Error al crear usuario", +"A valid password must be provided" => "Se debe proporcionar una contraseña válida", +"Warning: Home directory for user \"{user}\" already exists" => "Atención: el directorio de inicio para el usuario \"{user}\" ya existe.", +"__language_name__" => "Español (México)", +"Everything (fatal issues, errors, warnings, info, debug)" => "Todo (Información, Avisos, Errores, debug y problemas fatales)", +"Info, warnings, errors and fatal issues" => "Información, Avisos, Errores y problemas fatales", +"Warnings, errors and fatal issues" => "Advertencias, errores y problemas fatales", +"Errors and fatal issues" => "Errores y problemas fatales", +"Fatal issues only" => "Problemas fatales solamente", +"Security Warning" => "Advertencia de seguridad", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web.", +"Setup Warning" => "Advertencia de configuración", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", +"Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", +"Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", +"Your PHP version is outdated" => "Su versión de PHP ha caducado", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello.", +"Locale not working" => "La configuración regional no está funcionando", +"System locale can not be set to a one which supports UTF-8." => "No se puede escoger una configuración regional que soporte UTF-8.", +"This means that there might be problems with certain characters in file names." => "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ", +"Internet connection not working" => "La conexión a Internet no está funcionando", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", +"Sharing" => "Compartiendo", +"Enable Share API" => "Activar API de Compartición", +"Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición", +"Allow links" => "Permitir enlaces", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos con el público mediante enlaces", +"Allow public uploads" => "Permitir subidas públicas", +"Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente", +"Allow resharing" => "Permitir re-compartición", +"Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", +"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", +"Allow mail notification" => "Permitir notificaciones por correo electrónico", +"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos", +"Security" => "Seguridad", +"Enforce HTTPS" => "Forzar HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL.", +"Log" => "Registro", +"Log level" => "Nivel de registro", +"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ñade tu aplicación", +"More Apps" => "Más aplicaciones", +"Select an App" => "Seleccionar una aplicación", +"See application page at apps.owncloud.com" => "Ver la página de aplicaciones en apps.owncloud.com", +"-licensed by " => "-licencia otorgada por ", +"User Documentation" => "Documentación de usuario", +"Administrator Documentation" => "Documentación de administrador", +"Online Documentation" => "Documentación en línea", +"Forum" => "Foro", +"Bugtracker" => "Rastreador de fallos", +"Commercial Support" => "Soporte comercial", +"Get the apps to sync your files" => "Obtener las aplicaciones para sincronizar sus archivos", +"Show First Run Wizard again" => "Mostrar nuevamente el Asistente de ejecución inicial", +"You have used %s of the available %s" => "Ha usado %s de los %s disponibles", +"Password" => "Contraseña", +"Your password was changed" => "Su contraseña ha sido cambiada", +"Unable to change your password" => "No se ha podido cambiar su contraseña", +"Current password" => "Contraseña actual", +"New password" => "Nueva contraseña", +"Change password" => "Cambiar contraseña", +"Full Name" => "Nombre completo", +"Email" => "Correo electrónico", +"Your email address" => "Su dirección de correo", +"Fill in an email address to enable password recovery" => "Escriba una dirección de correo electrónico para restablecer la contraseña", +"Profile picture" => "Foto de perfil", +"Upload new" => "Subir otra", +"Select new from Files" => "Seleccionar otra desde Archivos", +"Remove image" => "Borrar imagen", +"Either png or jpg. Ideally square but you will be able to crop it." => "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo.", +"Your avatar is provided by your original account." => "Su avatar es proporcionado por su cuenta original.", +"Abort" => "Cancelar", +"Choose as profile image" => "Seleccionar como imagen de perfil", +"Language" => "Idioma", +"Help translate" => "Ayúdanos a traducir", +"WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Utilice esta dirección para acceder a sus archivos vía WebDAV", +"Encryption" => "Cifrado", +"The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos", +"Log-in password" => "Contraseña de acceso", +"Decrypt all Files" => "Descifrar archivos", +"Login Name" => "Nombre de usuario", +"Create" => "Crear", +"Admin Recovery Password" => "Recuperación de la contraseña de administración", +"Enter the recovery password in order to recover the users files during password change" => "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.", +"Default Storage" => "Almacenamiento predeterminado", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", +"Unlimited" => "Ilimitado", +"Other" => "Otro", +"Username" => "Nombre de usuario", +"Storage" => "Almacenamiento", +"change full name" => "cambiar el nombre completo", +"set new password" => "establecer nueva contraseña", +"Default" => "Predeterminado" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; -- cgit v1.2.3 From 25370fcb8235d2129cab0f8a5843c4784b3673d0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 2 Jan 2014 13:19:10 +0100 Subject: Return SPACE_UNKNOWN if disk_free_space is disabled when getting the free space on a local storage --- lib/private/files/storage/local.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index 02e8df4af4e..db3c6bfca3a 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -256,7 +256,7 @@ if (\OC_Util::runningOnWindows()) { public function free_space($path) { $space = @disk_free_space($this->datadir . $path); - if ($space === false) { + if ($space === false || is_null($space)) { return \OC\Files\SPACE_UNKNOWN; } return $space; -- cgit v1.2.3 From 83f968ace2822a1e56ccb2804e3513d95b528e5a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 2 Jan 2014 16:12:56 +0100 Subject: Fix APCIterator syntax in \OC\Memcache\APCU::clear see http://www.php.net/manual/en/apciterator.construct.php --- lib/private/memcache/apcu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/memcache/apcu.php b/lib/private/memcache/apcu.php index ccc1aa6e562..dac0f5f208a 100644 --- a/lib/private/memcache/apcu.php +++ b/lib/private/memcache/apcu.php @@ -12,7 +12,7 @@ class APCu extends APC { public function clear($prefix = '') { $ns = $this->getNamespace() . $prefix; $ns = preg_quote($ns, '/'); - $iter = new \APCIterator('/^'.$ns.'/'); + $iter = new \APCIterator('user', '/^'.$ns.'/'); return apc_delete($iter); } -- cgit v1.2.3 From e4616199df5ca6b5ba490455a505d36dc954f0f6 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 5 Jan 2014 01:55:53 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/sk.php | 6 ++- apps/files_external/l10n/sk.php | 5 +++ apps/files_sharing/l10n/sk.php | 5 +++ apps/files_trashbin/l10n/sk.php | 3 +- apps/user_ldap/l10n/sk.php | 3 +- core/l10n/ca.php | 1 + core/l10n/sk.php | 28 ++++++++++++- core/l10n/tr.php | 2 +- l10n/ca/core.po | 10 ++--- l10n/sk/core.po | 82 ++++++++++++++++++------------------- l10n/sk/files.po | 14 +++---- l10n/sk/files_external.po | 22 +++++----- l10n/sk/files_sharing.po | 24 +++++------ l10n/sk/files_trashbin.po | 30 +++++++------- l10n/sk/lib.po | 26 ++++++------ l10n/sk/settings.po | 18 ++++---- l10n/sk/user_ldap.po | 38 ++++++++--------- 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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 8 ++-- lib/l10n/sk.php | 2 + settings/l10n/sk.php | 6 +++ 32 files changed, 203 insertions(+), 154 deletions(-) create mode 100644 apps/files_external/l10n/sk.php create mode 100644 apps/files_sharing/l10n/sk.php create mode 100644 settings/l10n/sk.php (limited to 'lib') diff --git a/apps/files/l10n/sk.php b/apps/files/l10n/sk.php index a3178a95c47..53daf549eaa 100644 --- a/apps/files/l10n/sk.php +++ b/apps/files/l10n/sk.php @@ -1,7 +1,11 @@ "Zdieľať", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), -"_Uploading %n file_::_Uploading %n files_" => array("","","") +"_Uploading %n file_::_Uploading %n files_" => array("","",""), +"Save" => "Uložiť", +"Download" => "Stiahnuť", +"Delete" => "Odstrániť" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_external/l10n/sk.php b/apps/files_external/l10n/sk.php new file mode 100644 index 00000000000..3129cf5c411 --- /dev/null +++ b/apps/files_external/l10n/sk.php @@ -0,0 +1,5 @@ + "Odstrániť" +); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_sharing/l10n/sk.php b/apps/files_sharing/l10n/sk.php new file mode 100644 index 00000000000..72c9039571e --- /dev/null +++ b/apps/files_sharing/l10n/sk.php @@ -0,0 +1,5 @@ + "Stiahnuť" +); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/sk.php b/apps/files_trashbin/l10n/sk.php index 94aaf9b3a94..3129cf5c411 100644 --- a/apps/files_trashbin/l10n/sk.php +++ b/apps/files_trashbin/l10n/sk.php @@ -1,6 +1,5 @@ array("","",""), -"_%n file_::_%n files_" => array("","","") +"Delete" => "Odstrániť" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/user_ldap/l10n/sk.php b/apps/user_ldap/l10n/sk.php index 8a689224737..2578bb55649 100644 --- a/apps/user_ldap/l10n/sk.php +++ b/apps/user_ldap/l10n/sk.php @@ -1,6 +1,7 @@ array("","",""), -"_%s user found_::_%s users found_" => array("","","") +"_%s user found_::_%s users found_" => array("","",""), +"Save" => "Uložiť" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/ca.php b/core/l10n/ca.php index d24cb680653..d8076172cee 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Ordinador central de la base de dades", "Finish setup" => "Acaba la configuració", "Finishing …" => "Acabant...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Aquesta aplicació necessita tenir JavaScript activat per funcionar correctament. Activeu JavaScript i carregueu aquesta interfície de nou.", "%s is available. Get more information on how to update." => "%s està disponible. Obtingueu més informació de com actualitzar.", "Log out" => "Surt", "Automatic logon rejected!" => "L'ha rebutjat l'acceditació automàtica!", diff --git a/core/l10n/sk.php b/core/l10n/sk.php index 50c3ecaf664..d9ab70db1a8 100644 --- a/core/l10n/sk.php +++ b/core/l10n/sk.php @@ -1,9 +1,35 @@ "Nedeľa", +"Monday" => "Pondelok", +"Tuesday" => "Utorok", +"Wednesday" => "Streda", +"Thursday" => "Štvrtok", +"Friday" => "Piatok", +"Saturday" => "Sobota", +"January" => "Január", +"February" => "Február", +"March" => "Marec", +"April" => "Apríl", +"May" => "Máj", +"June" => "Jún", +"July" => "Júl", +"August" => "August", +"September" => "September", +"October" => "Október", +"November" => "November", +"December" => "December", +"Settings" => "Nastavenia", "_%n minute ago_::_%n minutes ago_" => array("","",""), "_%n hour ago_::_%n hours ago_" => array("","",""), "_%n day ago_::_%n days ago_" => array("","",""), "_%n month ago_::_%n months ago_" => array("","",""), -"_{count} file conflict_::_{count} file conflicts_" => array("","","") +"_{count} file conflict_::_{count} file conflicts_" => array("","",""), +"Cancel" => "Zrušiť", +"Share" => "Zdieľať", +"group" => "skupina", +"Delete" => "Odstrániť", +"Personal" => "Osobné", +"Advanced" => "Pokročilé" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 301959c7e5c..fc08d68bb14 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -66,7 +66,7 @@ $TRANSLATIONS = array( "Error while unsharing" => "Paylaşım iptal edilirken hata", "Error while changing permissions" => "İzinleri değiştirirken hata oluştu", "Shared with you and the group {group} by {owner}" => "{owner} tarafından sizinle ve {group} ile paylaştırılmış", -"Shared with you by {owner}" => "{owner} trafından sizinle paylaştırıldı", +"Shared with you by {owner}" => "{owner} tarafından sizinle paylaşıldı", "Share with user or group …" => "Kullanıcı veya grup ile paylaş..", "Share link" => "Paylaşma bağlantısı", "Password protect" => "Parola koruması", diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 2efc821f286..2a27131c22e 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc, 2013 +# rogerc, 2013-2014 # rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 10:20+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -688,7 +688,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Aquesta aplicació necessita tenir JavaScript activat per funcionar correctament. Activeu JavaScript i carregueu aquesta interfície de nou." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/sk/core.po b/l10n/sk/core.po index df3eb5ac9b2..1d149c8a11b 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:30+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,137 +74,137 @@ msgstr "" #: js/config.php:32 msgid "Sunday" -msgstr "" +msgstr "Nedeľa" #: js/config.php:33 msgid "Monday" -msgstr "" +msgstr "Pondelok" #: js/config.php:34 msgid "Tuesday" -msgstr "" +msgstr "Utorok" #: js/config.php:35 msgid "Wednesday" -msgstr "" +msgstr "Streda" #: js/config.php:36 msgid "Thursday" -msgstr "" +msgstr "Štvrtok" #: js/config.php:37 msgid "Friday" -msgstr "" +msgstr "Piatok" #: js/config.php:38 msgid "Saturday" -msgstr "" +msgstr "Sobota" #: js/config.php:43 msgid "January" -msgstr "" +msgstr "Január" #: js/config.php:44 msgid "February" -msgstr "" +msgstr "Február" #: js/config.php:45 msgid "March" -msgstr "" +msgstr "Marec" #: js/config.php:46 msgid "April" -msgstr "" +msgstr "Apríl" #: js/config.php:47 msgid "May" -msgstr "" +msgstr "Máj" #: js/config.php:48 msgid "June" -msgstr "" +msgstr "Jún" #: js/config.php:49 msgid "July" -msgstr "" +msgstr "Júl" #: js/config.php:50 msgid "August" -msgstr "" +msgstr "August" #: js/config.php:51 msgid "September" -msgstr "" +msgstr "September" #: js/config.php:52 msgid "October" -msgstr "" +msgstr "Október" #: js/config.php:53 msgid "November" -msgstr "" +msgstr "November" #: js/config.php:54 msgid "December" -msgstr "" +msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" -msgstr "" +msgstr "Nastavenia" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -255,7 +255,7 @@ msgstr "" #: js/oc-dialogs.js:376 msgid "Cancel" -msgstr "" +msgstr "Zrušiť" #: js/oc-dialogs.js:386 msgid "Continue" @@ -279,7 +279,7 @@ msgstr "" #: js/share.js:109 msgid "Share" -msgstr "" +msgstr "Zdieľať" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 #: js/share.js:719 templates/installation.php:10 @@ -352,7 +352,7 @@ msgstr "" #: js/share.js:322 js/share.js:359 msgid "group" -msgstr "" +msgstr "skupina" #: js/share.js:333 msgid "Resharing is not allowed" @@ -428,7 +428,7 @@ msgstr "" #: js/tags.js:27 msgid "Delete" -msgstr "" +msgstr "Odstrániť" #: js/tags.js:31 msgid "Add" @@ -524,7 +524,7 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Osobné" #: strings.php:6 msgid "Users" @@ -642,7 +642,7 @@ msgstr "" #: templates/installation.php:67 msgid "Advanced" -msgstr "" +msgstr "Pokročilé" #: templates/installation.php:74 msgid "Data folder" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 07a816b9346..dee18527fb4 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:30+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -182,7 +182,7 @@ msgstr "" #: js/fileactions.js:125 msgid "Share" -msgstr "" +msgstr "Zdieľať" #: js/fileactions.js:137 msgid "Delete permanently" @@ -343,7 +343,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Uložiť" #: templates/index.php:5 msgid "New" @@ -387,11 +387,11 @@ msgstr "" #: templates/index.php:62 msgid "Download" -msgstr "" +msgstr "Stiahnuť" #: templates/index.php:73 templates/index.php:74 msgid "Delete" -msgstr "" +msgstr "Odstrániť" #: templates/index.php:86 msgid "Upload too large" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 62d305b6004..5a80877b71b 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -6,10 +6,10 @@ 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:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +17,7 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: lib/config.php:467 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:471 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:474 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -104,7 +104,7 @@ msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "Odstrániť" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 62db38045b9..2783214c344 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:30+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,32 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:94 +#: templates/public.php:29 templates/public.php:95 msgid "Download" -msgstr "" +msgstr "Stiahnuť" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:91 +#: templates/public.php:92 msgid "No preview available for" msgstr "" -#: templates/public.php:98 +#: templates/public.php:99 msgid "Direct link" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index a6f8e0f6fac..7cd4fe38745 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,44 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" -msgstr "" +msgstr "Odstrániť" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 60770f82b2c..9cd71b74332 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" -msgstr "" +msgstr "Osobné" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" -msgstr "" +msgstr "Nastavenia" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index ae4867f1aed..6a0e0098d45 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -192,25 +192,25 @@ msgstr "" #: js/users.js:123 templates/users.php:170 msgid "Delete" -msgstr "" +msgstr "Odstrániť" #: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -645,7 +645,7 @@ msgstr "" #: templates/users.php:66 templates/users.php:163 msgid "Other" -msgstr "" +msgstr "Ostatné" #: templates/users.php:87 msgid "Username" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index a8920b3fdc0..79c47dfcc60 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -142,17 +142,17 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" #: templates/part.settingcontrols.php:2 msgid "Save" -msgstr "" +msgstr "Uložiť" #: templates/part.settingcontrols.php:4 msgid "Test Configuration" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e1e89d47f60..a6e74089f29 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 d080d1b8b41..1417a420b87 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 ca22a696b3d..4af27c84f57 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 eb5ad7eb591..1e662915fdf 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 2339525931b..2d0f25bd530 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 f04c0e1799a..42f1fa98db7 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 9f55f236842..3c2674b0f80 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 8eeae863748..dc2af21f2f3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index a09971691c9..2e290614072 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 96a4271f403..1d3d94cf1bc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 bbaed7c634a..abb6a7a59de 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\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 dbad212c026..30feec22ba8 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 50bf2d71013..8a80ed98df1 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -6,13 +6,13 @@ # Fatih Aşıcı , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 -# volkangezer , 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2013-12-31 15:20+0000\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 20:50+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -303,7 +303,7 @@ msgstr "{owner} tarafından sizinle ve {group} ile paylaştırılmış" #: js/share.js:189 msgid "Shared with you by {owner}" -msgstr "{owner} trafından sizinle paylaştırıldı" +msgstr "{owner} tarafından sizinle paylaşıldı" #: js/share.js:213 msgid "Share with user or group …" diff --git a/lib/l10n/sk.php b/lib/l10n/sk.php index 54812b15a6f..5cfafe6ca0c 100644 --- a/lib/l10n/sk.php +++ b/lib/l10n/sk.php @@ -1,5 +1,7 @@ "Osobné", +"Settings" => "Nastavenia", "_%n minute ago_::_%n minutes ago_" => array("","",""), "_%n hour ago_::_%n hours ago_" => array("","",""), "_%n day go_::_%n days ago_" => array("","",""), diff --git a/settings/l10n/sk.php b/settings/l10n/sk.php new file mode 100644 index 00000000000..6bde1c438e4 --- /dev/null +++ b/settings/l10n/sk.php @@ -0,0 +1,6 @@ + "Odstrániť", +"Other" => "Ostatné" +); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; -- cgit v1.2.3 From 214aecac78c5efa499591937241e13b45d2b9e05 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Sun, 5 Jan 2014 21:49:08 +0100 Subject: require composer's autoload.php if present --- lib/base.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index d3e483f4948..cf1ffc01771 100644 --- a/lib/base.php +++ b/lib/base.php @@ -410,8 +410,6 @@ class OC { self::$loader->registerPrefix('Doctrine\\DBAL', 'doctrine/dbal/lib'); self::$loader->registerPrefix('Symfony\\Component\\Routing', 'symfony/routing'); self::$loader->registerPrefix('Symfony\\Component\\Console', 'symfony/console'); - self::$loader->registerPrefix('Sabre\\VObject', '3rdparty'); - self::$loader->registerPrefix('Sabre_', '3rdparty'); self::$loader->registerPrefix('Patchwork', '3rdparty'); spl_autoload_register(array(self::$loader, 'load')); @@ -479,6 +477,12 @@ class OC { } OC_Util::isSetLocaleWorking(); + // setup 3rdparty autoloader + $vendorAutoLoad = OC::$THIRDPARTYROOT . '/3rdparty/autoload.php'; + if (@file_exists($vendorAutoLoad)) { + require_once $vendorAutoLoad; + } + // set debug mode if an xdebug session is active if (!defined('DEBUG') || !DEBUG) { if (isset($_COOKIE['XDEBUG_SESSION'])) { -- cgit v1.2.3 From baccc8f584940d607393ef2bdd9c6d3e511b75b8 Mon Sep 17 00:00:00 2001 From: ben-denham Date: Mon, 6 Jan 2014 11:14:43 +1300 Subject: Unshare all will now delete all shares for the item, instead of only for a single owner. --- lib/public/share.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index f0fd8e1ab1b..eb1dd8d1c95 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -655,7 +655,15 @@ class Share { * @return Returns true on success or false on failure */ public static function unshareAll($itemType, $itemSource) { - if ($shares = self::getItemShared($itemType, $itemSource)) { + // Get all of the owners of shares of this item. + $query = \OC_DB::prepare( 'SELECT `uid_owner` from `*PREFIX*share` WHERE `item_type`=? AND `item_source`=?' ); + $result = $query->execute(array($itemType, $itemSource)); + $shares = array(); + // Add each owner's shares to the array of all shares for this item. + while ($row = $result->fetchRow()) { + $shares = array_merge($shares, self::getItems($itemType, $itemSource, null, null, $row['uid_owner'])); + } + if (!empty($shares)) { // Pass all the vars we have for now, they may be useful $hookParams = array( 'itemType' => $itemType, -- cgit v1.2.3 From 0e843b9d7d36976322df33fee6a3cc36e07fea85 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 6 Jan 2014 01:55:59 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/be.php | 3 +- apps/files/l10n/tr.php | 2 +- apps/files_trashbin/l10n/be.php | 3 +- apps/user_ldap/l10n/be.php | 1 + core/l10n/be.php | 33 +++++++++++++ l10n/be/core.po | 97 +++++++++++++++++++------------------ l10n/be/files.po | 8 +-- l10n/be/files_trashbin.po | 30 ++++++------ l10n/be/lib.po | 36 +++++++------- l10n/be/settings.po | 16 +++--- l10n/be/user_ldap.po | 38 +++++++-------- l10n/ru/settings.po | 11 +++-- l10n/templates/core.pot | 24 ++++----- 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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/files.po | 8 +-- l10n/tr/lib.po | 8 +-- l10n/tr/settings.po | 12 ++--- lib/l10n/be.php | 9 +++- lib/l10n/tr.php | 2 +- settings/l10n/be.php | 5 ++ settings/l10n/ru.php | 2 + settings/l10n/tr.php | 8 +-- 32 files changed, 214 insertions(+), 164 deletions(-) create mode 100644 settings/l10n/be.php (limited to 'lib') diff --git a/apps/files/l10n/be.php b/apps/files/l10n/be.php index 17262d2184d..830400b93fb 100644 --- a/apps/files/l10n/be.php +++ b/apps/files/l10n/be.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("","","",""), "_%n file_::_%n files_" => array("","","",""), -"_Uploading %n file_::_Uploading %n files_" => array("","","","") +"_Uploading %n file_::_Uploading %n files_" => array("","","",""), +"Error" => "Памылка" ); $PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index a9e0935b74e..90b16922a76 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -66,7 +66,7 @@ $TRANSLATIONS = array( "Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz dizin adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", "Upload" => "Yükle", -"File handling" => "Dosya taşıma", +"File handling" => "Dosya işlemleri", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", "Needed for multi-file and folder downloads." => "Çoklu dosya ve dizin indirmesi için gerekli.", diff --git a/apps/files_trashbin/l10n/be.php b/apps/files_trashbin/l10n/be.php index 50df7ff5a97..6a34f1fe246 100644 --- a/apps/files_trashbin/l10n/be.php +++ b/apps/files_trashbin/l10n/be.php @@ -1,6 +1,5 @@ array("","","",""), -"_%n file_::_%n files_" => array("","","","") +"Error" => "Памылка" ); $PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/user_ldap/l10n/be.php b/apps/user_ldap/l10n/be.php index 2641c1d1300..089b92efe7b 100644 --- a/apps/user_ldap/l10n/be.php +++ b/apps/user_ldap/l10n/be.php @@ -1,5 +1,6 @@ "Памылка", "_%s group found_::_%s groups found_" => array("","","",""), "_%s user found_::_%s users found_" => array("","","","") ); diff --git a/core/l10n/be.php b/core/l10n/be.php index 2481806bcb9..19d330a44dd 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -1,10 +1,43 @@ "Нядзеля", +"Monday" => "Панядзелак", +"Tuesday" => "Аўторак", +"Wednesday" => "Серада", +"Thursday" => "Чацвер", +"Friday" => "Пятніца", +"Saturday" => "Субота", +"January" => "Студзень", +"February" => "Люты", +"March" => "Сакавік", +"April" => "Красавік", +"May" => "Май", +"June" => "Чэрвень", +"July" => "Ліпень", +"August" => "Жнівень", +"September" => "Верасень", +"October" => "Кастрычнік", +"November" => "Лістапад", +"December" => "Снежань", +"Settings" => "Налады", +"seconds ago" => "Секунд таму", "_%n minute ago_::_%n minutes ago_" => array("","","",""), "_%n hour ago_::_%n hours ago_" => array("","","",""), +"today" => "Сёння", +"yesterday" => "Ўчора", "_%n day ago_::_%n days ago_" => array("","","",""), +"last month" => "У мінулым месяцы", "_%n month ago_::_%n months ago_" => array("","","",""), +"months ago" => "Месяцаў таму", +"last year" => "У мінулым годзе", +"years ago" => "Гадоў таму", +"Choose" => "Выбар", +"Yes" => "Так", +"No" => "Не", +"Ok" => "Добра", "_{count} file conflict_::_{count} file conflicts_" => array("","","",""), +"Error" => "Памылка", +"The object type is not specified." => "Тып аб'екта не ўдакладняецца.", "Advanced" => "Дасведчаны", "Finish setup" => "Завяршыць ўстаноўку." ); diff --git a/l10n/be/core.po b/l10n/be/core.po index b7563df3635..9e268cef6cd 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# VladVaranetski , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"Last-Translator: VladVaranetski \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,89 +75,89 @@ msgstr "" #: js/config.php:32 msgid "Sunday" -msgstr "" +msgstr "Нядзеля" #: js/config.php:33 msgid "Monday" -msgstr "" +msgstr "Панядзелак" #: js/config.php:34 msgid "Tuesday" -msgstr "" +msgstr "Аўторак" #: js/config.php:35 msgid "Wednesday" -msgstr "" +msgstr "Серада" #: js/config.php:36 msgid "Thursday" -msgstr "" +msgstr "Чацвер" #: js/config.php:37 msgid "Friday" -msgstr "" +msgstr "Пятніца" #: js/config.php:38 msgid "Saturday" -msgstr "" +msgstr "Субота" #: js/config.php:43 msgid "January" -msgstr "" +msgstr "Студзень" #: js/config.php:44 msgid "February" -msgstr "" +msgstr "Люты" #: js/config.php:45 msgid "March" -msgstr "" +msgstr "Сакавік" #: js/config.php:46 msgid "April" -msgstr "" +msgstr "Красавік" #: js/config.php:47 msgid "May" -msgstr "" +msgstr "Май" #: js/config.php:48 msgid "June" -msgstr "" +msgstr "Чэрвень" #: js/config.php:49 msgid "July" -msgstr "" +msgstr "Ліпень" #: js/config.php:50 msgid "August" -msgstr "" +msgstr "Жнівень" #: js/config.php:51 msgid "September" -msgstr "" +msgstr "Верасень" #: js/config.php:52 msgid "October" -msgstr "" +msgstr "Кастрычнік" #: js/config.php:53 msgid "November" -msgstr "" +msgstr "Лістапад" #: js/config.php:54 msgid "December" -msgstr "" +msgstr "Снежань" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" -msgstr "" +msgstr "Налады" -#: js/js.js:858 +#: js/js.js:872 msgid "seconds ago" -msgstr "" +msgstr "Секунд таму" -#: js/js.js:859 +#: js/js.js:873 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -164,7 +165,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:860 +#: js/js.js:874 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -172,15 +173,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:861 +#: js/js.js:875 msgid "today" -msgstr "" +msgstr "Сёння" -#: js/js.js:862 +#: js/js.js:876 msgid "yesterday" -msgstr "" +msgstr "Ўчора" -#: js/js.js:863 +#: js/js.js:877 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -188,11 +189,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:864 +#: js/js.js:878 msgid "last month" -msgstr "" +msgstr "У мінулым месяцы" -#: js/js.js:865 +#: js/js.js:879 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -200,21 +201,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:866 +#: js/js.js:880 msgid "months ago" -msgstr "" +msgstr "Месяцаў таму" -#: js/js.js:867 +#: js/js.js:881 msgid "last year" -msgstr "" +msgstr "У мінулым годзе" -#: js/js.js:868 +#: js/js.js:882 msgid "years ago" -msgstr "" +msgstr "Гадоў таму" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Выбар" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" @@ -222,15 +223,15 @@ msgstr "" #: js/oc-dialogs.js:172 msgid "Yes" -msgstr "" +msgstr "Так" #: js/oc-dialogs.js:182 msgid "No" -msgstr "" +msgstr "Не" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "" +msgstr "Добра" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" @@ -289,7 +290,7 @@ msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 #: js/share.js:719 templates/installation.php:10 msgid "Error" -msgstr "" +msgstr "Памылка" #: js/share.js:160 js/share.js:747 msgid "Error while sharing" @@ -425,7 +426,7 @@ msgstr "" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "Тып аб'екта не ўдакладняецца." #: js/tags.js:13 msgid "Enter new" diff --git a/l10n/be/files.po b/l10n/be/files.po index 2b804d9388e..5dcc21e2463 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -289,7 +289,7 @@ msgstr "" #: js/files.js:558 js/files.js:596 msgid "Error" -msgstr "" +msgstr "Памылка" #: js/files.js:613 templates/index.php:56 msgid "Name" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index d784d5ddc54..91455c96709 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,44 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" -msgstr "" +msgstr "Памылка" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index f209cb8230b..a422c6e60fc 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" -msgstr "" +msgstr "Налады" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -286,7 +286,7 @@ msgstr "" #: private/template/functions.php:130 msgid "seconds ago" -msgstr "" +msgstr "Секунд таму" #: private/template/functions.php:131 msgid "%n minute ago" @@ -306,11 +306,11 @@ msgstr[3] "" #: private/template/functions.php:133 msgid "today" -msgstr "" +msgstr "Сёння" #: private/template/functions.php:134 msgid "yesterday" -msgstr "" +msgstr "Ўчора" #: private/template/functions.php:136 msgid "%n day go" @@ -322,7 +322,7 @@ msgstr[3] "" #: private/template/functions.php:138 msgid "last month" -msgstr "" +msgstr "У мінулым месяцы" #: private/template/functions.php:139 msgid "%n month ago" @@ -334,8 +334,8 @@ msgstr[3] "" #: private/template/functions.php:141 msgid "last year" -msgstr "" +msgstr "У мінулым годзе" #: private/template/functions.php:142 msgid "years ago" -msgstr "" +msgstr "Гадоў таму" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 3545bf5f05e..fdb09c0a2b7 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -147,7 +147,7 @@ msgstr "" #: js/apps.js:128 msgid "Error" -msgstr "" +msgstr "Памылка" #: js/apps.js:129 templates/apps.php:43 msgid "Update" @@ -198,19 +198,19 @@ msgstr "" msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index 3a41fc0a4d2..f9a186e2dea 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -84,45 +84,45 @@ msgstr "" #: js/settings.js:133 msgid "Error" -msgstr "" +msgstr "Памылка" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -144,11 +144,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 86cfda2cae8..91d66080a29 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,6 +10,7 @@ # Evgeniy Spitsyn , 2013 # jekader , 2013 # eurekafag , 2013 +# stushev, 2014 # unixoid , 2013 # vsapronov , 2013 # not_your_conscience , 2013 @@ -21,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-22 19:50+0000\n" -"Last-Translator: Evgeniy Spitsyn \n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 23:30+0000\n" +"Last-Translator: stushev\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" @@ -314,7 +315,7 @@ msgstr "Локализация не работает" #: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Невозможно установить системную локаль, поддерживающую UTF-8" #: templates/admin.php:102 msgid "" @@ -582,7 +583,7 @@ msgstr "Либо png, либо jpg. Изображение должно быть #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Будет использован аватар вашей оригинальной учетной записи." #: templates/personal.php:101 msgid "Abort" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index a6e74089f29..1ec73dd2975 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -153,55 +153,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:869 +#: js/js.js:872 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:873 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:874 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "today" msgstr "" -#: js/js.js:873 +#: js/js.js:876 msgid "yesterday" msgstr "" -#: js/js.js:874 +#: js/js.js:877 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:878 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:880 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:881 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:882 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 1417a420b87..e5f6887ddda 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\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 4af27c84f57..ae01087be4f 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\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 1e662915fdf..5d95ea33849 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\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 2d0f25bd530..684d5663a9b 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\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 42f1fa98db7..0b7e5f01605 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\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 3c2674b0f80..e08efdb3921 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\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 dc2af21f2f3..9bcb4ce52ab 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 2e290614072..250fadf1831 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\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 1d3d94cf1bc..e8fb417a519 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\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 abb6a7a59de..1191a2c59e2 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\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 30feec22ba8..4268d7b5d4b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 89f82eb48b5..966906608b3 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -6,13 +6,13 @@ # alicanbatur , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 -# volkangezer , 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2013-12-31 15:40+0000\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 16:40+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -316,7 +316,7 @@ msgstr "Yükle" #: templates/admin.php:5 msgid "File handling" -msgstr "Dosya taşıma" +msgstr "Dosya işlemleri" #: templates/admin.php:7 msgid "Maximum upload size" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 8aef1c95bbc..3237785ad46 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -6,13 +6,13 @@ # Caner BAŞARAN , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 -# volkangezer , 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2013-12-31 15:40+0000\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 16:40+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "Geçersiz resim" #: private/defaults.php:34 msgid "web services under your control" -msgstr "Bilgileriniz güvenli ve şifreli" +msgstr "kontrolünüzün altındaki web hizmetleri" #: private/files.php:66 private/files.php:98 #, php-format diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 32ed182dcfd..80560004a5e 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" -"PO-Revision-Date: 2014-01-03 14:10+0000\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 16:40+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -344,7 +344,7 @@ msgstr "Yüklenen her sayfa ile bir görev çalıştır" msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedildi." +msgstr "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir." #: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." @@ -377,7 +377,7 @@ msgstr "Herkes tarafından yüklemeye izin ver" #: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver." +msgstr "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver" #: templates/admin.php:195 msgid "Allow resharing" @@ -414,14 +414,14 @@ msgstr "HTTPS bağlantısına zorla" #: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar." +msgstr "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar." #: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın." +msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s'a HTTPS ile bağlanın." #: templates/admin.php:254 msgid "Log" diff --git a/lib/l10n/be.php b/lib/l10n/be.php index 1570411eb86..b1cf270aba2 100644 --- a/lib/l10n/be.php +++ b/lib/l10n/be.php @@ -1,8 +1,15 @@ "Налады", +"seconds ago" => "Секунд таму", "_%n minute ago_::_%n minutes ago_" => array("","","",""), "_%n hour ago_::_%n hours ago_" => array("","","",""), +"today" => "Сёння", +"yesterday" => "Ўчора", "_%n day go_::_%n days ago_" => array("","","",""), -"_%n month ago_::_%n months ago_" => array("","","","") +"last month" => "У мінулым месяцы", +"_%n month ago_::_%n months ago_" => array("","","",""), +"last year" => "У мінулым годзе", +"years ago" => "Гадоў таму" ); $PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 0439ddab6a2..7d25836f7d8 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -10,7 +10,7 @@ $TRANSLATIONS = array( "Failed to upgrade \"%s\"." => "\"%s\" yükseltme başarısız oldu.", "Unknown filetype" => "Bilinmeyen dosya türü", "Invalid image" => "Geçersiz resim", -"web services under your control" => "Bilgileriniz güvenli ve şifreli", +"web services under your control" => "kontrolünüzün altındaki web hizmetleri", "cannot open \"%s\"" => "\"%s\" açılamıyor", "ZIP download is turned off." => "ZIP indirmeleri kapatıldı.", "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", diff --git a/settings/l10n/be.php b/settings/l10n/be.php new file mode 100644 index 00000000000..6a34f1fe246 --- /dev/null +++ b/settings/l10n/be.php @@ -0,0 +1,5 @@ + "Памылка" +); +$PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 8b6a075002f..8a9ae156f1a 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Your PHP version is outdated" => "Ваша версия PHP устарела", "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом.", "Locale not working" => "Локализация не работает", +"System locale can not be set to a one which supports UTF-8." => "Невозможно установить системную локаль, поддерживающую UTF-8", "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 one of the following locales: %s." => "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s.", "Internet connection not working" => "Интернет-соединение не работает", @@ -124,6 +125,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Выберите новый из файлов", "Remove image" => "Удалить изображение", "Either png or jpg. Ideally square but you will be able to crop it." => "Либо png, либо jpg. Изображение должно быть квадратным, но вы сможете обрезать его позже.", +"Your avatar is provided by your original account." => "Будет использован аватар вашей оригинальной учетной записи.", "Abort" => "Отмена", "Choose as profile image" => "Выберите изображение профиля", "Language" => "Язык", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 97a46a02dbd..211b87d79d5 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -71,7 +71,7 @@ $TRANSLATIONS = array( "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", "Cron" => "Cron", "Execute one task with each page loaded" => "Yüklenen her sayfa ile bir görev çalıştır", -"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedildi.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir.", "Use systems cron service to call the cron.php file every 15 minutes." => "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan.", "Sharing" => "Paylaşım", "Enable Share API" => "Paylaşım API'sini etkinleştir", @@ -79,7 +79,7 @@ $TRANSLATIONS = array( "Allow links" => "Bağlantılara izin ver", "Allow users to share items to the public with links" => "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver", "Allow public uploads" => "Herkes tarafından yüklemeye izin ver", -"Allow users to enable others to upload into their publicly shared folders" => "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver.", +"Allow users to enable others to upload into their publicly shared folders" => "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver", "Allow resharing" => "Paylaşıma izin ver", "Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver", "Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", @@ -88,8 +88,8 @@ $TRANSLATIONS = array( "Allow user to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", -"Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar.", -"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın.", +"Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s'a HTTPS ile bağlanın.", "Log" => "Günlük", "Log level" => "Günlük seviyesi", "More" => "Daha fazla", -- cgit v1.2.3 From d2f2645a6a7e802c6cda31747481fe49b7ca0807 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 7 Jan 2014 01:56:11 -0500 Subject: [tx-robot] updated from transifex --- apps/files/l10n/et_EE.php | 2 + apps/files/l10n/ur.php | 7 + apps/files_sharing/l10n/el.php | 10 +- apps/files_trashbin/l10n/el.php | 4 +- apps/files_versions/l10n/el.php | 2 +- apps/user_ldap/l10n/ur.php | 6 + core/l10n/ur.php | 9 + l10n/el/core.po | 26 +- l10n/el/files.po | 4 +- l10n/el/files_sharing.po | 16 +- l10n/el/files_trashbin.po | 31 +- l10n/el/files_versions.po | 21 +- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/et_EE/files.po | 12 +- l10n/fr/files.po | 4 +- l10n/fr/files_sharing.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/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/ur/core.po | 775 ++++++++++++++++++++++++++++++++++++ l10n/ur/files.po | 413 +++++++++++++++++++ l10n/ur/files_encryption.po | 201 ++++++++++ l10n/ur/files_external.po | 123 ++++++ l10n/ur/files_sharing.po | 84 ++++ l10n/ur/files_trashbin.po | 60 +++ l10n/ur/files_versions.po | 43 ++ l10n/ur/lib.po | 333 ++++++++++++++++ l10n/ur/settings.po | 668 +++++++++++++++++++++++++++++++ l10n/ur/user_ldap.po | 513 ++++++++++++++++++++++++ l10n/ur/user_webdavauth.po | 33 ++ lib/l10n/ur.php | 8 + 41 files changed, 3362 insertions(+), 82 deletions(-) create mode 100644 apps/files/l10n/ur.php create mode 100644 apps/user_ldap/l10n/ur.php create mode 100644 core/l10n/ur.php create mode 100644 l10n/ur/core.po create mode 100644 l10n/ur/files.po create mode 100644 l10n/ur/files_encryption.po create mode 100644 l10n/ur/files_external.po create mode 100644 l10n/ur/files_sharing.po create mode 100644 l10n/ur/files_trashbin.po create mode 100644 l10n/ur/files_versions.po create mode 100644 l10n/ur/lib.po create mode 100644 l10n/ur/settings.po create mode 100644 l10n/ur/user_ldap.po create mode 100644 l10n/ur/user_webdavauth.po create mode 100644 lib/l10n/ur.php (limited to 'lib') diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 98f74e1f001..fd031527738 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Faili nimi ei tohi sisaldada \"/\". Palun vali mõni teine nimi.", "The name %s is already used in the folder %s. Please choose a different name." => "Nimi %s on juba kasutusel kataloogis %s. Palun vali mõni teine nimi.", "Not a valid source" => "Pole korrektne lähteallikas", +"Server is not allowed to open URLs, please check the server configuration" => "Server ei võimalda URL-ide avamist, palun kontrolli serveri seadistust", "Error while downloading %s to %s" => "Viga %s allalaadimisel %s", "Error when creating the file" => "Viga faili loomisel", "Folder name cannot be empty." => "Kataloogi nimi ei saa olla tühi.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} on juba olemas", "Could not create file" => "Ei suuda luua faili", "Could not create folder" => "Ei suuda luua kataloogi", +"Error fetching URL" => "Viga URL-i haaramisel", "Share" => "Jaga", "Delete permanently" => "Kustuta jäädavalt", "Rename" => "Nimeta ümber", diff --git a/apps/files/l10n/ur.php b/apps/files/l10n/ur.php new file mode 100644 index 00000000000..0157af093e9 --- /dev/null +++ b/apps/files/l10n/ur.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 79387a91472..3ea666504b1 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,19 +1,19 @@ "Αυτός ο κοινόχρηστος φάκελος προστατεύεται με κωδικό", -"The password is wrong. Try again." => "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά.", -"Password" => "Συνθηματικό", +"The password is wrong. Try again." => "Εσφαλμένος κωδικός πρόσβασης. Προσπαθήστε ξανά.", +"Password" => "Κωδικός πρόσβασης", "Sorry, this link doesn’t seem to work anymore." => "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια.", "Reasons might be:" => "Οι λόγοι μπορεί να είναι:", "the item was removed" => "το αντικείμενο απομακρύνθηκε", "the link expired" => "ο σύνδεσμος έληξε", "sharing is disabled" => "ο διαμοιρασμός απενεργοποιήθηκε", "For more info, please ask the person who sent this link." => "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο.", -"%s shared the folder %s with you" => "%s μοιράστηκε τον φάκελο %s μαζί σας", -"%s shared the file %s with you" => "%s μοιράστηκε το αρχείο %s μαζί σας", +"%s shared the folder %s with you" => "Ο %s μοιράστηκε τον φάκελο %s μαζί σας", +"%s shared the file %s with you" => "Ο %s μοιράστηκε το αρχείο %s μαζί σας", "Download" => "Λήψη", "Upload" => "Μεταφόρτωση", -"Cancel upload" => "Ακύρωση αποστολής", +"Cancel upload" => "Ακύρωση μεταφόρτωσης", "No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για", "Direct link" => "Άμεσος σύνδεσμος" ); diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index ffeafb7e9d5..b4ee30c578d 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -3,11 +3,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Αδύνατη η μόνιμη διαγραφή του %s", "Couldn't restore %s" => "Αδυναμία επαναφοράς %s", "Error" => "Σφάλμα", -"restored" => "έγινε επαναφορά", +"restored" => "επαναφέρθηκαν", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", "Name" => "Όνομα", "Restore" => "Επαναφορά", -"Deleted" => "Διαγράφηκε", +"Deleted" => "Διαγραμμένα", "Delete" => "Διαγραφή", "Deleted Files" => "Διαγραμμένα Αρχεία" ); diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index af608e7c042..5337f3b5a48 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,6 +1,6 @@ "Αδυναμία επαναφοράς του: %s", +"Could not revert: %s" => "Αδυναμία επαναφοράς: %s", "Versions" => "Εκδόσεις", "Failed to revert {file} to revision {timestamp}." => "Αποτυχία επαναφοράς του {file} στην αναθεώρηση {timestamp}.", "More versions..." => "Περισσότερες εκδόσεις...", diff --git a/apps/user_ldap/l10n/ur.php b/apps/user_ldap/l10n/ur.php new file mode 100644 index 00000000000..3a1e002311c --- /dev/null +++ b/apps/user_ldap/l10n/ur.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ur.php b/core/l10n/ur.php new file mode 100644 index 00000000000..ffcdde48d47 --- /dev/null +++ b/core/l10n/ur.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/l10n/el/core.po b/l10n/el/core.po index b0f4b9ecc5c..b453459ddc9 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 17:40+0000\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 20:50+0000\n" "Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:869 +#: js/js.js:872 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:870 +#: js/js.js:873 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n λεπτό πριν" msgstr[1] "%n λεπτά πριν" -#: js/js.js:871 +#: js/js.js:874 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ώρα πριν" msgstr[1] "%n ώρες πριν" -#: js/js.js:872 +#: js/js.js:875 msgid "today" msgstr "σήμερα" -#: js/js.js:873 +#: js/js.js:876 msgid "yesterday" msgstr "χτες" -#: js/js.js:874 +#: js/js.js:877 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ημέρα πριν" msgstr[1] "%n ημέρες πριν" -#: js/js.js:875 +#: js/js.js:878 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:876 +#: js/js.js:879 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n μήνας πριν" msgstr[1] "%n μήνες πριν" -#: js/js.js:877 +#: js/js.js:880 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:878 +#: js/js.js:881 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:879 +#: js/js.js:882 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/files.po b/l10n/el/files.po index 1171a1f7284..84a38b5c6e9 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" -"PO-Revision-Date: 2013-12-30 16:00+0000\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 20:50+0000\n" "Last-Translator: vkehayas \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 09221d38d5c..1c70dfb1d6d 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -4,13 +4,13 @@ # # Translators: # Efstathios Iosifidis , 2013 -# vkehayas , 2013 +# vkehayas , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 17:40+0000\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 21:00+0000\n" "Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -25,11 +25,11 @@ msgstr "Αυτός ο κοινόχρηστος φάκελος προστατεύ #: templates/authenticate.php:7 msgid "The password is wrong. Try again." -msgstr "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά." +msgstr "Εσφαλμένος κωδικός πρόσβασης. Προσπαθήστε ξανά." #: templates/authenticate.php:10 msgid "Password" -msgstr "Συνθηματικό" +msgstr "Κωδικός πρόσβασης" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." @@ -58,12 +58,12 @@ msgstr "Για περισσότερες πληροφορίες, παρακαλώ #: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" +msgstr "Ο %s μοιράστηκε τον φάκελο %s μαζί σας" #: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" -msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" +msgstr "Ο %s μοιράστηκε το αρχείο %s μαζί σας" #: templates/public.php:29 templates/public.php:95 msgid "Download" @@ -75,7 +75,7 @@ msgstr "Μεταφόρτωση" #: templates/public.php:59 msgid "Cancel upload" -msgstr "Ακύρωση αποστολής" +msgstr "Ακύρωση μεταφόρτωσης" #: templates/public.php:92 msgid "No preview available for" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 57aa40f1486..0d05dc752d2 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 +# vkehayas , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 21:15+0000\n" +"Last-Translator: vkehayas \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" @@ -18,44 +19,44 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "Αδύνατη η μόνιμη διαγραφή του %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "Αδυναμία επαναφοράς %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "Σφάλμα" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" -msgstr "έγινε επαναφορά" +msgstr "επαναφέρθηκαν" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Όνομα" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Επαναφορά" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" -msgstr "Διαγράφηκε" +msgstr "Διαγραμμένα" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Διαγραφή" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Διαγραμμένα Αρχεία" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 69a93edf4e8..33ed352c925 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 +# vkehayas , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-06 07:40+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 21:15+0000\n" +"Last-Translator: vkehayas \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" @@ -21,24 +22,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "Αδυναμία επαναφοράς του: %s" +msgstr "Αδυναμία επαναφοράς: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Εκδόσεις" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." msgstr "Αποτυχία επαναφοράς του {file} στην αναθεώρηση {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." msgstr "Περισσότερες εκδόσεις..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" msgstr "Δεν υπάρχουν άλλες εκδόσεις διαθέσιμες" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Επαναφορά" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index a899dcc3fc6..84b51f57097 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 18:11+0000\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 20:50+0000\n" "Last-Translator: vkehayas \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 a7c6ef95f42..636f833c270 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 18:11+0000\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 20:50+0000\n" "Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index d7c7f5265de..e83960e36b8 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# pisike.sipelgas , 2013 +# pisike.sipelgas , 2013-2014 # Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 07:20+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +51,7 @@ msgstr "Pole korrektne lähteallikas" #: ajax/newfile.php:86 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Server ei võimalda URL-ide avamist, palun kontrolli serveri seadistust" #: ajax/newfile.php:103 #, php-format @@ -180,7 +180,7 @@ msgstr "Ei suuda luua kataloogi" #: js/file-upload.js:661 msgid "Error fetching URL" -msgstr "" +msgstr "Viga URL-i haaramisel" #: js/fileactions.js:125 msgid "Share" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 2bd2dbb16d4..c6057d1fd5f 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 14:30+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_sharing.po b/l10n/fr/files_sharing.po index c8c10e1bfe5..3dbac303a0a 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 14:30+0000\n" "Last-Translator: etiess \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 1ec73dd2975..68737b3593a 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 e5f6887ddda..913a1483431 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 ae01087be4f..5a6e1c929eb 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 5d95ea33849..1806d30ff07 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 684d5663a9b..ffba8dccd36 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 0b7e5f01605..8605f877f43 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 e08efdb3921..636e03756a7 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 9bcb4ce52ab..85ae628dcdd 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 250fadf1831..11e0caf7032 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 e8fb417a519..5f01a453d61 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 1191a2c59e2..2b44144273b 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\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 4268d7b5d4b..e2933b4ea63 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/ur/core.po b/l10n/ur/core.po new file mode 100644 index 00000000000..862ab145c30 --- /dev/null +++ b/l10n/ur/core.po @@ -0,0 +1,775 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:398 +msgid "Settings" +msgstr "" + +#: js/js.js:872 +msgid "seconds ago" +msgstr "" + +#: js/js.js:873 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:874 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:875 +msgid "today" +msgstr "" + +#: js/js.js:876 +msgid "yesterday" +msgstr "" + +#: js/js.js:877 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:878 +msgid "last month" +msgstr "" + +#: js/js.js:879 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:880 +msgid "months ago" +msgstr "" + +#: js/js.js:881 +msgid "last year" +msgstr "" + +#: js/js.js:882 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:72 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/ur/files.po b/l10n/ur/files.po new file mode 100644 index 00000000000..ecfa8697636 --- /dev/null +++ b/l10n/ur/files.po @@ -0,0 +1,413 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ur/files_encryption.po b/l10n/ur/files_encryption.po new file mode 100644 index 00000000000..3e4b7ec4a7d --- /dev/null +++ b/l10n/ur/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:62 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:63 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:281 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ur/files_external.po b/l10n/ur/files_external.po new file mode 100644 index 00000000000..480a799b4e4 --- /dev/null +++ b/l10n/ur/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:474 +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 "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ur/files_sharing.po b/l10n/ur/files_sharing.po new file mode 100644 index 00000000000..1dd85cf47f2 --- /dev/null +++ b/l10n/ur/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ur/files_trashbin.po b/l10n/ur/files_trashbin.po new file mode 100644 index 00000000000..d1b08db59f1 --- /dev/null +++ b/l10n/ur/files_trashbin.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ur/files_versions.po b/l10n/ur/files_versions.po new file mode 100644 index 00000000000..377d24db42b --- /dev/null +++ b/l10n/ur/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po new file mode 100644 index 00000000000..ba1af659a1c --- /dev/null +++ b/l10n/ur/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:245 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:257 +msgid "No app name specified" +msgstr "" + +#: private/app.php:362 +msgid "Help" +msgstr "" + +#: private/app.php:375 +msgid "Personal" +msgstr "" + +#: private/app.php:386 +msgid "Settings" +msgstr "" + +#: private/app.php:398 +msgid "Users" +msgstr "" + +#: private/app.php:411 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po new file mode 100644 index 00000000000..f068880aa58 --- /dev/null +++ b/l10n/ur/settings.po @@ -0,0 +1,668 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:39 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/ur/user_ldap.po b/l10n/ur/user_ldap.po new file mode 100644 index 00000000000..8d5790eea9f --- /dev/null +++ b/l10n/ur/user_ldap.po @@ -0,0 +1,513 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/ur/user_webdavauth.po b/l10n/ur/user_webdavauth.po new file mode 100644 index 00000000000..8db54c86db4 --- /dev/null +++ b/l10n/ur/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/lib/l10n/ur.php b/lib/l10n/ur.php new file mode 100644 index 00000000000..15f78e0bce6 --- /dev/null +++ b/lib/l10n/ur.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; -- cgit v1.2.3 From ed469a7d2c11b92cad4446a596c2b27c2d46362b Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 7 Jan 2014 11:53:33 +0100 Subject: in order to work properly with encryption ocTransferId is added to the file path - questionable usage of magic string --- lib/private/connector/sabre/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index d476e9fab14..53524ec9e54 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -64,7 +64,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D } // mark file as partial while uploading (ignored by the scanner) - $partpath = $this->path . rand() . '.part'; + $partpath = $this->path . '.ocTransferId' . rand() . '.part'; // if file is located in /Shared we write the part file to the users // root folder because we can't create new files in /shared -- cgit v1.2.3 From 07a84aa5ebc71c1476f89eb5736754b7a2f74d47 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 7 Jan 2014 14:52:18 +0100 Subject: reuse existing helper function OC_Helper::is_function_enabled --- lib/private/preview/movies.php | 2 +- lib/private/preview/office.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index ac771deb413..71cd3bae057 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -18,7 +18,7 @@ function findBinaryPath($program) { // movie preview is currently not supported on Windows if (!\OC_Util::runningOnWindows()) { - $isExecEnabled = !in_array('exec', explode(', ', ini_get('disable_functions'))); + $isExecEnabled = \OC_Helper::is_function_enabled('exec'); $ffmpegBinary = null; $avconvBinary = null; diff --git a/lib/private/preview/office.php b/lib/private/preview/office.php index 318ab51f851..7a4826c76ec 100644 --- a/lib/private/preview/office.php +++ b/lib/private/preview/office.php @@ -7,7 +7,7 @@ */ //both, libreoffice backend and php fallback, need imagick if (extension_loaded('imagick')) { - $isShellExecEnabled = !in_array('shell_exec', explode(', ', ini_get('disable_functions'))); + $isShellExecEnabled = \OC_Helper::is_function_enabled('shell_exec'); // LibreOffice preview is currently not supported on Windows if (!\OC_Util::runningOnWindows()) { -- cgit v1.2.3 From 9d869ab5968b737531a0f0bb3c648d7ffe920341 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 7 Jan 2014 14:53:02 +0100 Subject: we shall explode on ',' only --- lib/private/helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/helper.php b/lib/private/helper.php index 4fe3097af26..a06932a11f9 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -858,7 +858,7 @@ class OC_Helper { if (!function_exists($function_name)) { return false; } - $disabled = explode(', ', ini_get('disable_functions')); + $disabled = explode(',', ini_get('disable_functions')); if (in_array($function_name, $disabled)) { return false; } -- cgit v1.2.3 From 9404a8f40c51f57309d3b5a3b5937f869d563573 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Tue, 7 Jan 2014 15:51:08 +0100 Subject: remove duplicate exe mimetype, add correct msi mimetype --- lib/private/mimetypes.list.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 740982910e0..08228336966 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -66,6 +66,7 @@ return array( 'xlsx'=>'application/msexcel', 'php'=>'application/x-php', 'exe'=>'application/x-ms-dos-executable', + 'msi'=>'application/x-msi', 'pl'=>'application/x-pearl', 'py'=>'application/x-python', 'blend'=>'application/x-blender', @@ -97,8 +98,6 @@ return array( 'ai' => 'application/illustrator', 'epub' => 'application/epub+zip', 'mobi' => 'application/x-mobipocket-ebook', - 'exe' => 'application', - 'msi' => 'application', 'md' => 'text/markdown', 'markdown' => 'text/markdown', 'mdown' => 'text/markdown', -- cgit v1.2.3 From e0bd7e145cb23823c430114f314ffef939877e09 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 7 Jan 2014 16:24:05 +0100 Subject: Remove @ in order to get proper error handling --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index cf1ffc01771..a8e9e901847 100644 --- a/lib/base.php +++ b/lib/base.php @@ -479,7 +479,7 @@ class OC { // setup 3rdparty autoloader $vendorAutoLoad = OC::$THIRDPARTYROOT . '/3rdparty/autoload.php'; - if (@file_exists($vendorAutoLoad)) { + if (file_exists($vendorAutoLoad)) { require_once $vendorAutoLoad; } -- cgit v1.2.3 From 09d7882571e047de4ed907f0f0317dae056cf890 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 7 Jan 2014 19:47:01 +0100 Subject: trimming all array elements --- lib/private/helper.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/helper.php b/lib/private/helper.php index a06932a11f9..1c8d01c141f 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -859,10 +859,12 @@ class OC_Helper { return false; } $disabled = explode(',', ini_get('disable_functions')); + $disabled = array_map('trim', $disabled); if (in_array($function_name, $disabled)) { return false; } - $disabled = explode(', ', ini_get('suhosin.executor.func.blacklist')); + $disabled = explode(',', ini_get('suhosin.executor.func.blacklist')); + $disabled = array_map('trim', $disabled); if (in_array($function_name, $disabled)) { return false; } -- cgit v1.2.3 From 5be4af9f519ef8d0424f8b07ba84c43da9cf11f4 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 7 Jan 2014 17:41:04 +0100 Subject: Now also preventing to override "files" dir size with -1 Fixes #6526 --- lib/private/files/cache/homecache.php | 2 +- tests/lib/files/cache/homecache.php | 18 ++++++++++++------ 2 files changed, 13 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/lib/private/files/cache/homecache.php b/lib/private/files/cache/homecache.php index 18dfbfe3191..71bb944da71 100644 --- a/lib/private/files/cache/homecache.php +++ b/lib/private/files/cache/homecache.php @@ -16,7 +16,7 @@ class HomeCache extends Cache { * @return int */ public function calculateFolderSize($path) { - if ($path !== '/' and $path !== '') { + if ($path !== '/' and $path !== '' and $path !== 'files') { return parent::calculateFolderSize($path); } diff --git a/tests/lib/files/cache/homecache.php b/tests/lib/files/cache/homecache.php index 2fa7f1ba92e..87fd0dba4c6 100644 --- a/tests/lib/files/cache/homecache.php +++ b/tests/lib/files/cache/homecache.php @@ -62,33 +62,39 @@ class HomeCache extends \PHPUnit_Framework_TestCase { } /** - * Tests that the root folder size calculation ignores the subdirs that have an unknown - * size. This makes sure that quota calculation still works as it's based on the root - * folder size. + * Tests that the root and files folder size calculation ignores the subdirs + * that have an unknown size. This makes sure that quota calculation still + * works as it's based on the "files" folder size. */ public function testRootFolderSizeIgnoresUnknownUpdate() { - $dir1 = 'knownsize'; - $dir2 = 'unknownsize'; + $dir1 = 'files/knownsize'; + $dir2 = 'files/unknownsize'; $fileData = array(); $fileData[''] = array('size' => -1, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); + $fileData['files'] = array('size' => -1, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); $fileData[$dir1] = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); $fileData[$dir2] = array('size' => -1, 'mtime' => 25, 'mimetype' => 'httpd/unix-directory'); $this->cache->put('', $fileData['']); + $this->cache->put('files', $fileData['files']); $this->cache->put($dir1, $fileData[$dir1]); $this->cache->put($dir2, $fileData[$dir2]); + $this->assertTrue($this->cache->inCache('files')); $this->assertTrue($this->cache->inCache($dir1)); $this->assertTrue($this->cache->inCache($dir2)); - // check that root size ignored the unknown sizes + // check that files and root size ignored the unknown sizes + $this->assertEquals(1000, $this->cache->calculateFolderSize('files')); $this->assertEquals(1000, $this->cache->calculateFolderSize('')); // clean up $this->cache->remove(''); + $this->cache->remove('files'); $this->cache->remove($dir1); $this->cache->remove($dir2); + $this->assertFalse($this->cache->inCache('files')); $this->assertFalse($this->cache->inCache($dir1)); $this->assertFalse($this->cache->inCache($dir2)); } -- cgit v1.2.3 From 1e1ced777275c70307d26556843938e68ca25fde Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 7 Jan 2014 23:05:37 +0100 Subject: Introduce user count action to user management --- lib/private/user/backend.php | 16 +++++++++------- lib/private/user/database.php | 15 +++++++++++++++ lib/private/user/manager.php | 18 ++++++++++++++++++ 3 files changed, 42 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/lib/private/user/backend.php b/lib/private/user/backend.php index 02c93d13bdf..6969ce4ba34 100644 --- a/lib/private/user/backend.php +++ b/lib/private/user/backend.php @@ -31,13 +31,14 @@ define('OC_USER_BACKEND_NOT_IMPLEMENTED', -501); /** * actions that user backends can define */ -define('OC_USER_BACKEND_CREATE_USER', 0x0000001); -define('OC_USER_BACKEND_SET_PASSWORD', 0x0000010); -define('OC_USER_BACKEND_CHECK_PASSWORD', 0x0000100); -define('OC_USER_BACKEND_GET_HOME', 0x0001000); -define('OC_USER_BACKEND_GET_DISPLAYNAME', 0x0010000); -define('OC_USER_BACKEND_SET_DISPLAYNAME', 0x0100000); -define('OC_USER_BACKEND_PROVIDE_AVATAR', 0x1000000); +define('OC_USER_BACKEND_CREATE_USER', 0x00000001); +define('OC_USER_BACKEND_SET_PASSWORD', 0x00000010); +define('OC_USER_BACKEND_CHECK_PASSWORD', 0x00000100); +define('OC_USER_BACKEND_GET_HOME', 0x00001000); +define('OC_USER_BACKEND_GET_DISPLAYNAME', 0x00010000); +define('OC_USER_BACKEND_SET_DISPLAYNAME', 0x00100000); +define('OC_USER_BACKEND_PROVIDE_AVATAR', 0x01000000); +define('OC_USER_BACKEND_COUNT_USERS', 0x10000000); /** * Abstract base class for user management. Provides methods for querying backend @@ -55,6 +56,7 @@ abstract class OC_User_Backend implements OC_User_Interface { OC_USER_BACKEND_GET_DISPLAYNAME => 'getDisplayName', OC_USER_BACKEND_SET_DISPLAYNAME => 'setDisplayName', OC_USER_BACKEND_PROVIDE_AVATAR => 'canChangeAvatar', + OC_USER_BACKEND_COUNT_USERS => 'countUsers', ); /** diff --git a/lib/private/user/database.php b/lib/private/user/database.php index c99db3b27ca..1a63755b980 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -253,4 +253,19 @@ class OC_User_Database extends OC_User_Backend { return true; } + /** + * counts the users in the database + * + * @return int | bool + */ + public function countUsers() { + $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`'); + $result = $query->execute(); + if (OC_DB::isError($result)) { + OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); + return false; + } + return $result->fetchOne(); + } + } diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index cf83a75ba25..101b388f1e0 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -270,4 +270,22 @@ class Manager extends PublicEmitter { } return false; } + + /** + * returns how many users per backend exist (if supported by backend) + * + * @return array with backend class as key and count number as value + */ + public function countUsers() { + $userCountStatistics = array(); + foreach ($this->backends as $backend) { + if ($backend->implementsActions(\OC_USER_BACKEND_COUNT_USERS)) { + $backendusers = $backend->countUsers(); + if($backendusers !== false) { + $userCountStatistics[get_class($backend)] = $backendusers; + } + } + } + return $userCountStatistics; + } } -- cgit v1.2.3 From 5eef107344bbb3fc4a93675f6d3b63fc82ba930a Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 8 Jan 2014 07:56:08 +0100 Subject: turn off mod_pagespeed --- .htaccess | 3 +++ lib/private/setup.php | 3 +++ 2 files changed, 6 insertions(+) (limited to 'lib') diff --git a/.htaccess b/.htaccess index 08e2a82facb..fa6263c7ffe 100755 --- a/.htaccess +++ b/.htaccess @@ -38,3 +38,6 @@ DirectoryIndex index.php index.html AddDefaultCharset utf-8 Options -Indexes + + ModPagespeed Off + diff --git a/lib/private/setup.php b/lib/private/setup.php index b5c530a091f..5232398d1d7 100644 --- a/lib/private/setup.php +++ b/lib/private/setup.php @@ -159,6 +159,9 @@ class OC_Setup { $content.= "\n"; $content.= "AddDefaultCharset utf-8\n"; $content.= "Options -Indexes\n"; + $content.= "\n"; + $content.= "ModPagespeed Off\n"; + $content.= "\n"; @file_put_contents(OC::$SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it self::protectDataDirectory(); -- cgit v1.2.3 From f642ad39614970de67358d80517bc1d76a006e0e Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 8 Jan 2014 13:17:36 +0100 Subject: Prevent deleting storage root Storage mount points are not deletable, so make sure that the unlink operation and its hooks aren't run in such cases. Note that some storages might recursively delete their contents when calling unlink on their root. This fix prevents that as well. --- lib/private/files/view.php | 13 +++++++++++++ tests/lib/files/view.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) (limited to 'lib') diff --git a/lib/private/files/view.php b/lib/private/files/view.php index ac45a881331..8893911ed5d 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -336,6 +336,19 @@ class View { } public function unlink($path) { + if ($path === '' || $path === '/') { + // do not allow deleting the root + return false; + } + $postFix = (substr($path, -1, 1) === '/') ? '/' : ''; + $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path)); + list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix); + if (!$internalPath || $internalPath === '' || $internalPath === '/') { + // do not allow deleting the storage's root / the mount point + // because for some storages it might delete the whole contents + // but isn't supposed to work that way + return false; + } return $this->basicOperation('unlink', $path, array('delete')); } diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index b59cef9f0da..76a7fd5f1ca 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -306,6 +306,48 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertTrue($rootView->file_exists('anotherfolder/bar.txt')); } + /** + * @medium + */ + function testUnlink() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), '/substorage'); + + $rootView = new \OC\Files\View(''); + $rootView->file_put_contents('/foo.txt', 'asd'); + $rootView->file_put_contents('/substorage/bar.txt', 'asd'); + + $this->assertTrue($rootView->file_exists('foo.txt')); + $this->assertTrue($rootView->file_exists('substorage/bar.txt')); + + $this->assertTrue($rootView->unlink('foo.txt')); + $this->assertTrue($rootView->unlink('substorage/bar.txt')); + + $this->assertFalse($rootView->file_exists('foo.txt')); + $this->assertFalse($rootView->file_exists('substorage/bar.txt')); + } + + /** + * @medium + */ + function testUnlinkRootMustFail() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), '/substorage'); + + $rootView = new \OC\Files\View(''); + $rootView->file_put_contents('/foo.txt', 'asd'); + $rootView->file_put_contents('/substorage/bar.txt', 'asd'); + + $this->assertFalse($rootView->unlink('')); + $this->assertFalse($rootView->unlink('/')); + $this->assertFalse($rootView->unlink('substorage')); + $this->assertFalse($rootView->unlink('/substorage')); + } + /** * @medium */ -- cgit v1.2.3 From cb6a3e2617c6549d4a305f3612bef8aa5840306e Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 8 Jan 2014 13:24:28 +0100 Subject: if backends have the same class name, sum their users up instead of overwriting --- lib/private/user/manager.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index 101b388f1e0..90970ef9963 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -282,7 +282,11 @@ class Manager extends PublicEmitter { if ($backend->implementsActions(\OC_USER_BACKEND_COUNT_USERS)) { $backendusers = $backend->countUsers(); if($backendusers !== false) { - $userCountStatistics[get_class($backend)] = $backendusers; + if(isset($userCountStatistics[get_class($backend)])) { + $userCountStatistics[get_class($backend)] += $backendusers; + } else { + $userCountStatistics[get_class($backend)] = $backendusers; + } } } } -- cgit v1.2.3 From d7cb5ab080e2b3abe804ffe974ebb65398914943 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 8 Jan 2014 13:26:48 +0100 Subject: add tests for user counting --- lib/private/user/dummy.php | 9 ++++++ tests/lib/user/manager.php | 72 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) (limited to 'lib') diff --git a/lib/private/user/dummy.php b/lib/private/user/dummy.php index 52be7edfa75..fc15a630cf3 100644 --- a/lib/private/user/dummy.php +++ b/lib/private/user/dummy.php @@ -123,4 +123,13 @@ class OC_User_Dummy extends OC_User_Backend { public function hasUserListings() { return true; } + + /** + * counts the users in the database + * + * @return int | bool + */ + public function countUsers() { + return 0; + } } diff --git a/tests/lib/user/manager.php b/tests/lib/user/manager.php index 00901dd4115..ad1ac9e12f2 100644 --- a/tests/lib/user/manager.php +++ b/tests/lib/user/manager.php @@ -346,4 +346,76 @@ class Manager extends \PHPUnit_Framework_TestCase { $manager->createUser('foo', 'bar'); } + + public function testCountUsersNoBackend() { + $manager = new \OC\User\Manager(); + + $result = $manager->countUsers(); + $this->assertTrue(is_array($result)); + $this->assertTrue(empty($result)); + } + + public function testCountUsersOneBackend() { + /** + * @var \OC_User_Dummy | \PHPUnit_Framework_MockObject_MockObject $backend + */ + $backend = $this->getMock('\OC_User_Dummy'); + $backend->expects($this->once()) + ->method('countUsers') + ->will($this->returnValue(7)); + + $backend->expects($this->once()) + ->method('implementsActions') + ->with(\OC_USER_BACKEND_COUNT_USERS) + ->will($this->returnValue(true)); + + $manager = new \OC\User\Manager(); + $manager->registerBackend($backend); + + $result = $manager->countUsers(); + $keys = array_keys($result); + $this->assertTrue(strpos($keys[0], 'Mock_OC_User_Dummy') !== false); + + $users = array_shift($result); + $this->assertEquals(7, $users); + } + + public function testCountUsersTwoBackends() { + /** + * @var \OC_User_Dummy | \PHPUnit_Framework_MockObject_MockObject $backend + */ + $backend1 = $this->getMock('\OC_User_Dummy'); + $backend1->expects($this->once()) + ->method('countUsers') + ->will($this->returnValue(7)); + + $backend1->expects($this->once()) + ->method('implementsActions') + ->with(\OC_USER_BACKEND_COUNT_USERS) + ->will($this->returnValue(true)); + + $backend2 = $this->getMock('\OC_User_Dummy'); + $backend2->expects($this->once()) + ->method('countUsers') + ->will($this->returnValue(16)); + + $backend2->expects($this->once()) + ->method('implementsActions') + ->with(\OC_USER_BACKEND_COUNT_USERS) + ->will($this->returnValue(true)); + + $manager = new \OC\User\Manager(); + $manager->registerBackend($backend1); + $manager->registerBackend($backend2); + + $result = $manager->countUsers(); + //because the backends have the same class name, only one value expected + $this->assertEquals(1, count($result)); + $keys = array_keys($result); + $this->assertTrue(strpos($keys[0], 'Mock_OC_User_Dummy') !== false); + + $users = array_shift($result); + //users from backends shall be summed up + $this->assertEquals(7+16, $users); + } } -- cgit v1.2.3 From e35bca1c266cbe1468da9b4a328e2521d00c30f2 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 8 Jan 2014 16:07:01 +0100 Subject: Fix ownCloud for php5.3.x --- lib/private/server.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/server.php b/lib/private/server.php index 5977ee9b5a0..2cbd37a97d7 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -128,7 +128,8 @@ class Server extends SimpleContainer implements IServerContainer { return new \OC\L10N\Factory(); }); $this->registerService('URLGenerator', function($c) { - $config = $this->getConfig(); + /** @var $c SimpleContainer */ + $config = $c->query('AllConfig'); return new \OC\URLGenerator($config); }); $this->registerService('AppHelper', function($c) { -- cgit v1.2.3 From 8eaa39f4e2fb7bb1036aca5727db320de00960e2 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 8 Jan 2014 18:43:20 +0100 Subject: Removed special handling of part files in shared storage rename This fixes the issue introduced by the transfer id which itself wasn't taken into account by the shortcut code for part file in the shared storage class. --- apps/files_sharing/lib/sharedstorage.php | 33 ++++++++++++-------------------- lib/private/connector/sabre/file.php | 5 ++++- 2 files changed, 16 insertions(+), 22 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 3116cd717fb..6b4db9763f5 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -293,29 +293,20 @@ class Shared extends \OC\Files\Storage\Common { } public function rename($path1, $path2) { - // Check for partial files - if (pathinfo($path1, PATHINFO_EXTENSION) === 'part') { - if ($oldSource = $this->getSourcePath($path1)) { + // Renaming/moving is only allowed within shared folders + $pos1 = strpos($path1, '/', 1); + $pos2 = strpos($path2, '/', 1); + if ($pos1 !== false && $pos2 !== false && ($oldSource = $this->getSourcePath($path1))) { + $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2); + // Within the same folder, we only need UPDATE permissions + if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) { list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource); - $newInternalPath = substr($oldInternalPath, 0, -5); + list(, $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource); return $storage->rename($oldInternalPath, $newInternalPath); - } - } else { - // Renaming/moving is only allowed within shared folders - $pos1 = strpos($path1, '/', 1); - $pos2 = strpos($path2, '/', 1); - if ($pos1 !== false && $pos2 !== false && ($oldSource = $this->getSourcePath($path1))) { - $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2); - // Within the same folder, we only need UPDATE permissions - if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) { - list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource); - list(, $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource); - return $storage->rename($oldInternalPath, $newInternalPath); - // otherwise DELETE and CREATE permissions required - } elseif ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) { - $rootView = new \OC\Files\View(''); - return $rootView->rename($oldSource, $newSource); - } + // otherwise DELETE and CREATE permissions required + } elseif ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) { + $rootView = new \OC\Files\View(''); + return $rootView->rename($oldSource, $newSource); } } return false; diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 53524ec9e54..c3b59007295 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -242,7 +242,10 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D $fileExists = $fs->file_exists($targetPath); if ($renameOkay === false || $fileExists === false) { \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); - $fs->unlink($targetPath); + // only delete if an error occurred and the target file was already created + if ($fileExists) { + $fs->unlink($targetPath); + } throw new Sabre_DAV_Exception(); } -- cgit v1.2.3 From 4585b4ea3f1fd21aabc167102e74a382dfa0cbd8 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 8 Jan 2014 19:41:10 +0100 Subject: Infowarning about 32bit --- lib/private/user/backend.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/private/user/backend.php b/lib/private/user/backend.php index 6969ce4ba34..f4e5618e04a 100644 --- a/lib/private/user/backend.php +++ b/lib/private/user/backend.php @@ -39,6 +39,7 @@ define('OC_USER_BACKEND_GET_DISPLAYNAME', 0x00010000); define('OC_USER_BACKEND_SET_DISPLAYNAME', 0x00100000); define('OC_USER_BACKEND_PROVIDE_AVATAR', 0x01000000); define('OC_USER_BACKEND_COUNT_USERS', 0x10000000); +//more actions cannot be defined without breaking 32bit platforms! /** * Abstract base class for user management. Provides methods for querying backend -- cgit v1.2.3 From 9b7c3a5c66a9f987ff572aaece2ef6e895bf4ab6 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Thu, 9 Jan 2014 10:27:47 +0100 Subject: fixing PHPDoc and use cameCase names --- lib/private/user/session.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/lib/private/user/session.php b/lib/private/user/session.php index c2885d00413..1e299416fb3 100644 --- a/lib/private/user/session.php +++ b/lib/private/user/session.php @@ -115,13 +115,13 @@ class Session implements Emitter, \OCP\IUserSession { /** * set the login name * - * @param string login name for the logged in user + * @param string $loginName for the logged in user */ - public function setLoginname($loginname) { - if (is_null($loginname)) { + public function setLoginName($loginName) { + if (is_null($loginName)) { $this->session->remove('loginname'); } else { - $this->session->set('loginname', $loginname); + $this->session->set('loginname', $loginName); } } @@ -130,7 +130,7 @@ class Session implements Emitter, \OCP\IUserSession { * * @return string */ - public function getLoginname() { + public function getLoginName() { if ($this->activeUser) { return $this->session->get('loginname'); } else { @@ -158,7 +158,7 @@ class Session implements Emitter, \OCP\IUserSession { if (!is_null($user)) { if ($user->isEnabled()) { $this->setUser($user); - $this->setLoginname($uid); + $this->setLoginName($uid); $this->manager->emit('\OC\User', 'postLogin', array($user, $password)); return true; } else { @@ -176,7 +176,7 @@ class Session implements Emitter, \OCP\IUserSession { public function logout() { $this->manager->emit('\OC\User', 'logout'); $this->setUser(null); - $this->setLoginname(null); + $this->setLoginName(null); $this->unsetMagicInCookie(); } -- cgit v1.2.3 From 22bd69f75cc91a79653038d20143aff9ee8b226a Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Thu, 9 Jan 2014 10:28:24 +0100 Subject: set login name within apache auth backend --- lib/private/user.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/private/user.php b/lib/private/user.php index e0d6b9f3f51..98ebebbe5c1 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -246,6 +246,8 @@ class OC_User { session_regenerate_id(true); self::setUserId($uid); self::setDisplayName($uid); + self::getUserSession()->setLoginName($uid); + OC_Hook::emit( "OC_User", "post_login", array( "uid" => $uid, 'password'=>'' )); return true; } -- cgit v1.2.3 From c3829dfa61ce9d884f8c7d9c81381ac5987e8250 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Thu, 9 Jan 2014 10:29:21 +0100 Subject: rename user-id to loginname to stay consistent --- lib/base.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index a8e9e901847..f30575c7b12 100644 --- a/lib/base.php +++ b/lib/base.php @@ -544,12 +544,12 @@ class OC { OC_User::useBackend(new OC_User_Database()); OC_Group::useBackend(new OC_Group_Database()); - if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('user_id') + if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('loginname') && $_SERVER['PHP_AUTH_USER'] !== self::$session->get('loginname')) { $sessionUser = self::$session->get('loginname'); $serverUser = $_SERVER['PHP_AUTH_USER']; OC_Log::write('core', - "Session user-id ($sessionUser) doesn't match SERVER[PHP_AUTH_USER] ($serverUser).", + "Session loginname ($sessionUser) doesn't match SERVER[PHP_AUTH_USER] ($serverUser).", OC_Log::WARN); OC_User::logout(); } -- cgit v1.2.3 From 4faba49f0a38427e96ef8393900f799c5a5ba6aa Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 9 Jan 2014 17:27:55 +0100 Subject: Fix calculated folder size to use unencrypted size The encrypted size was used when calculating folder sizes. This fix now also sums up the unencrypted size and shows that one when available. --- lib/private/files/cache/cache.php | 22 ++++++++++++++----- tests/lib/files/cache/cache.php | 45 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index 8e682a96b75..1e7936ca26d 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -178,7 +178,7 @@ class Cache { if ($file['storage_mtime'] == 0) { $file['storage_mtime'] = $file['mtime']; } - if ($file['encrypted']) { + if ($file['encrypted'] or ($file['unencrypted_size'] > 0 and $file['mimetype'] === 'httpd/unix-directory')) { $file['encrypted_size'] = $file['size']; $file['size'] = $file['unencrypted_size']; } @@ -511,22 +511,34 @@ class Cache { $entry = $this->get($path); if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; - $sql = 'SELECT SUM(`size`) AS f1, MIN(`size`) AS f2 FROM `*PREFIX*filecache` '. + $sql = 'SELECT SUM(`size`) AS f1, MIN(`size`) AS f2, ' . + 'SUM(`unencrypted_size`) AS f3 ' . + 'FROM `*PREFIX*filecache` ' . 'WHERE `parent` = ? AND `storage` = ?'; $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); if ($row = $result->fetchRow()) { - list($sum, $min) = array_values($row); + list($sum, $min, $unencryptedSum) = array_values($row); $sum = (int)$sum; $min = (int)$min; + $unencryptedSum = (int)$unencryptedSum; if ($min === -1) { $totalSize = $min; } else { $totalSize = $sum; } + $update = array(); if ($entry['size'] !== $totalSize) { - $this->update($id, array('size' => $totalSize)); + $update['size'] = $totalSize; + } + if ($entry['unencrypted_size'] !== $unencryptedSum) { + $update['unencrypted_size'] = $unencryptedSum; + } + if (count($update) > 0) { + $this->update($id, $update); + } + if ($totalSize !== -1 and $unencryptedSum > 0) { + $totalSize = $unencryptedSum; } - } } return $totalSize; diff --git a/tests/lib/files/cache/cache.php b/tests/lib/files/cache/cache.php index 052d70dd0b4..7d9329328a3 100644 --- a/tests/lib/files/cache/cache.php +++ b/tests/lib/files/cache/cache.php @@ -137,6 +137,51 @@ class Cache extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->cache->inCache('folder/bar')); } + public function testEncryptedFolder() { + $file1 = 'folder'; + $file2 = 'folder/bar'; + $file3 = 'folder/foo'; + $data1 = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory'); + $fileData = array(); + $fileData['bar'] = array('size' => 1000, 'unencrypted_size' => 900, 'encrypted' => 1, 'mtime' => 20, 'mimetype' => 'foo/file'); + $fileData['foo'] = array('size' => 20, 'unencrypted_size' => 16, 'encrypted' => 1, 'mtime' => 25, 'mimetype' => 'foo/file'); + + $this->cache->put($file1, $data1); + $this->cache->put($file2, $fileData['bar']); + $this->cache->put($file3, $fileData['foo']); + + $content = $this->cache->getFolderContents($file1); + $this->assertEquals(count($content), 2); + foreach ($content as $cachedData) { + $data = $fileData[$cachedData['name']]; + // indirect retrieval swaps unencrypted_size and size + $this->assertEquals($data['unencrypted_size'], $cachedData['size']); + } + + $file4 = 'folder/unkownSize'; + $fileData['unkownSize'] = array('size' => -1, 'mtime' => 25, 'mimetype' => 'foo/file'); + $this->cache->put($file4, $fileData['unkownSize']); + + $this->assertEquals(-1, $this->cache->calculateFolderSize($file1)); + + $fileData['unkownSize'] = array('size' => 5, 'mtime' => 25, 'mimetype' => 'foo/file'); + $this->cache->put($file4, $fileData['unkownSize']); + + $this->assertEquals(916, $this->cache->calculateFolderSize($file1)); + // direct cache entry retrieval returns the original values + $this->assertEquals(1025, $this->cache->get($file1)['size']); + $this->assertEquals(916, $this->cache->get($file1)['unencrypted_size']); + + $this->cache->remove($file2); + $this->cache->remove($file3); + $this->cache->remove($file4); + $this->assertEquals(0, $this->cache->calculateFolderSize($file1)); + + $this->cache->remove('folder'); + $this->assertFalse($this->cache->inCache('folder/foo')); + $this->assertFalse($this->cache->inCache('folder/bar')); + } + public function testRootFolderSizeForNonHomeStorage() { $dir1 = 'knownsize'; $dir2 = 'unknownsize'; -- cgit v1.2.3 From 2abea964625713180d811e4fd1cfd25a92ee2c88 Mon Sep 17 00:00:00 2001 From: Joan Date: Fri, 10 Jan 2014 09:33:35 +0100 Subject: Disabled internet checking as mentioned when in proxy mode --- lib/private/util.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib') diff --git a/lib/private/util.php b/lib/private/util.php index c0e618cc863..9b37dccb507 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -892,6 +892,11 @@ class OC_Util { return false; } + // in case the connection is via proxy return true to avoid connecting to owncloud.org + if(OC_Config::getValue('proxy', '') != '') { + return true; + } + // try to connect to owncloud.org to see if http connections to the internet are possible. $connected = @fsockopen("www.owncloud.org", 80); if ($connected) { -- cgit v1.2.3 From a2cae551f30a0166439af9d467134d4bd802e940 Mon Sep 17 00:00:00 2001 From: st3so Date: Sun, 12 Jan 2014 15:45:33 +0100 Subject: fixing typo in redirection query string --- lib/private/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/util.php b/lib/private/util.php index c0e618cc863..a4b3761dbd3 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -580,7 +580,7 @@ class OC_Util { // Check if we are a user if( !OC_User::isLoggedIn()) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', - array('redirectUrl' => OC_Request::requestUri()) + array('redirect_url' => OC_Request::requestUri()) )); exit(); } -- cgit v1.2.3 From 68458604703eab0283dc9e4c2c8b3dd1f97aaaef Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 13 Jan 2014 12:27:05 +0100 Subject: keep response message --- lib/private/api.php | 42 ++++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) (limited to 'lib') diff --git a/lib/private/api.php b/lib/private/api.php index 03d7b7382a5..c713368125c 100644 --- a/lib/private/api.php +++ b/lib/private/api.php @@ -33,7 +33,7 @@ class OC_API { const USER_AUTH = 1; const SUBADMIN_AUTH = 2; const ADMIN_AUTH = 3; - + /** * API Response Codes */ @@ -41,13 +41,13 @@ class OC_API { const RESPOND_SERVER_ERROR = 996; const RESPOND_NOT_FOUND = 998; const RESPOND_UNKNOWN_ERROR = 999; - + /** * api actions */ protected static $actions = array(); private static $logoutRequired = false; - + /** * registers an api call * @param string $method the http method @@ -58,7 +58,7 @@ class OC_API { * @param array $defaults * @param array $requirements */ - public static function register($method, $url, $action, $app, + public static function register($method, $url, $action, $app, $authLevel = OC_API::USER_AUTH, $defaults = array(), $requirements = array()) { @@ -75,7 +75,7 @@ class OC_API { } self::$actions[$name][] = array('app' => $app, 'action' => $action, 'authlevel' => $authLevel); } - + /** * handles an api call * @param array $parameters @@ -125,7 +125,7 @@ class OC_API { self::respond($response, $format); } - + /** * merge the returned result objects into one response * @param array $responses @@ -166,32 +166,31 @@ class OC_API { // Maybe any that are not OC_API::RESPOND_SERVER_ERROR // Merge failed responses if more than one $data = array(); - $meta = array(); foreach($shipped['failed'] as $failure) { $data = array_merge_recursive($data, $failure['response']->getData()); } $picked = reset($shipped['failed']); $code = $picked['response']->getStatusCode(); - $response = new OC_OCS_Result($data, $code); + $meta = $picked['response']->getMeta(); + $response = new OC_OCS_Result($data, $code, $meta['message']); return $response; } elseif(!empty($shipped['succeeded'])) { $responses = array_merge($shipped['succeeded'], $thirdparty['succeeded']); } elseif(!empty($thirdparty['failed'])) { // Merge failed responses if more than one $data = array(); - $meta = array(); foreach($thirdparty['failed'] as $failure) { $data = array_merge_recursive($data, $failure['response']->getData()); } $picked = reset($thirdparty['failed']); $code = $picked['response']->getStatusCode(); - $response = new OC_OCS_Result($data, $code); + $meta = $picked['response']->getMeta(); + $response = new OC_OCS_Result($data, $code, $meta['message']); return $response; } else { $responses = $thirdparty['succeeded']; } // Merge the successful responses - $meta = array(); $data = array(); foreach($responses as $app => $response) { @@ -200,22 +199,25 @@ class OC_API { } else { $data = array_merge_recursive($data, $response['response']->getData()); } - $codes[] = $response['response']->getStatusCode(); + $codes[] = array('code' => $response['response']->getStatusCode(), + 'meta' => $response['response']->getMeta()); } // Use any non 100 status codes $statusCode = 100; + $statusMessage = null; foreach($codes as $code) { - if($code != 100) { - $statusCode = $code; + if($code['code'] != 100) { + $statusCode = $code['code']; + $statusMessage = $code['meta']['message']; break; } } - $result = new OC_OCS_Result($data, $statusCode); + $result = new OC_OCS_Result($data, $statusCode, $statusMessage); return $result; } - + /** * authenticate the api call * @param array $action the action details as supplied to OC_API::register() @@ -261,8 +263,8 @@ class OC_API { return false; break; } - } - + } + /** * http basic auth * @return string|false (username, or false on failure) @@ -294,7 +296,7 @@ class OC_API { return false; } - + /** * respond to a call * @param OC_OCS_Result $result @@ -343,5 +345,5 @@ class OC_API { } } } - + } -- cgit v1.2.3 From 92969052d7f4f008205bbfdf3e5437f3deca1d6b Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Mon, 13 Jan 2014 16:41:10 +0100 Subject: remove ru_RU - it has bee removed from transifex --- apps/files/l10n/ru_RU.php | 21 - apps/files_external/l10n/ru_RU.php | 6 - apps/files_sharing/l10n/ru_RU.php | 8 - apps/files_trashbin/l10n/ru_RU.php | 6 - apps/user_ldap/l10n/ru_RU.php | 12 - core/l10n/ru_RU.php | 21 - l10n/ru_RU/core.po | 780 ------------------------------------- l10n/ru_RU/files.po | 416 -------------------- l10n/ru_RU/files_encryption.po | 201 ---------- l10n/ru_RU/files_external.po | 123 ------ l10n/ru_RU/files_sharing.po | 84 ---- l10n/ru_RU/files_trashbin.po | 60 --- l10n/ru_RU/files_versions.po | 43 -- l10n/ru_RU/lib.po | 337 ---------------- l10n/ru_RU/settings.po | 668 ------------------------------- l10n/ru_RU/user_ldap.po | 515 ------------------------ l10n/ru_RU/user_webdavauth.po | 36 -- lib/l10n/ru_RU.php | 12 - settings/l10n/ru_RU.php | 10 - 19 files changed, 3359 deletions(-) delete mode 100644 apps/files/l10n/ru_RU.php delete mode 100644 apps/files_external/l10n/ru_RU.php delete mode 100644 apps/files_sharing/l10n/ru_RU.php delete mode 100644 apps/files_trashbin/l10n/ru_RU.php delete mode 100644 apps/user_ldap/l10n/ru_RU.php delete mode 100644 core/l10n/ru_RU.php delete mode 100644 l10n/ru_RU/core.po delete mode 100644 l10n/ru_RU/files.po delete mode 100644 l10n/ru_RU/files_encryption.po delete mode 100644 l10n/ru_RU/files_external.po delete mode 100644 l10n/ru_RU/files_sharing.po delete mode 100644 l10n/ru_RU/files_trashbin.po delete mode 100644 l10n/ru_RU/files_versions.po delete mode 100644 l10n/ru_RU/lib.po delete mode 100644 l10n/ru_RU/settings.po delete mode 100644 l10n/ru_RU/user_ldap.po delete mode 100644 l10n/ru_RU/user_webdavauth.po delete mode 100644 lib/l10n/ru_RU.php delete mode 100644 settings/l10n/ru_RU.php (limited to 'lib') diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php deleted file mode 100644 index 2a6ceeb99b9..00000000000 --- a/apps/files/l10n/ru_RU.php +++ /dev/null @@ -1,21 +0,0 @@ - "Имя файла не может быть пустым.", -"Files" => "Файлы", -"Share" => "Сделать общим", -"Rename" => "Переименовать", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), -"_Uploading %n file_::_Uploading %n files_" => array("","",""), -"'.' is an invalid file name." => "'.' является неверным именем файла.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы.", -"Error" => "Ошибка", -"Size" => "Размер", -"Upload" => "Загрузка", -"0 is unlimited" => "0 без ограничений", -"Save" => "Сохранить", -"Cancel upload" => "Отмена загрузки", -"Download" => "Загрузка", -"Delete" => "Удалить" -); -$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_external/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php deleted file mode 100644 index d517597f59c..00000000000 --- a/apps/files_external/l10n/ru_RU.php +++ /dev/null @@ -1,6 +0,0 @@ - "Опции", -"Delete" => "Удалить" -); -$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/ru_RU.php b/apps/files_sharing/l10n/ru_RU.php deleted file mode 100644 index 2686b1e852d..00000000000 --- a/apps/files_sharing/l10n/ru_RU.php +++ /dev/null @@ -1,8 +0,0 @@ - "Пароль", -"Download" => "Загрузка", -"Upload" => "Загрузка", -"Cancel upload" => "Отмена загрузки" -); -$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/ru_RU.php b/apps/files_trashbin/l10n/ru_RU.php deleted file mode 100644 index dfc99f594fd..00000000000 --- a/apps/files_trashbin/l10n/ru_RU.php +++ /dev/null @@ -1,6 +0,0 @@ - "Ошибка", -"Delete" => "Удалить" -); -$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php deleted file mode 100644 index 696e44a5bb5..00000000000 --- a/apps/user_ldap/l10n/ru_RU.php +++ /dev/null @@ -1,12 +0,0 @@ - "Ошибка", -"Select groups" => "Выбрать группы", -"_%s group found_::_%s groups found_" => array("","",""), -"_%s user found_::_%s users found_" => array("","",""), -"Save" => "Сохранить", -"Help" => "Помощь", -"Password" => "Пароль", -"Back" => "Назад" -); -$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php deleted file mode 100644 index 81ce456e142..00000000000 --- a/core/l10n/ru_RU.php +++ /dev/null @@ -1,21 +0,0 @@ - "Настройки", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"_%n day ago_::_%n days ago_" => array("","",""), -"_%n month ago_::_%n months ago_" => array("","",""), -"Yes" => "Да", -"No" => "Нет", -"_{count} file conflict_::_{count} file conflicts_" => array("","",""), -"Cancel" => "Отмена", -"Share" => "Сделать общим", -"Error" => "Ошибка", -"Password" => "Пароль", -"can edit" => "возможно редактирование", -"Warning" => "Предупреждение", -"Delete" => "Удалить", -"Username" => "Имя пользователя", -"Help" => "Помощь" -); -$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po deleted file mode 100644 index 2f4f69fd711..00000000000 --- a/l10n/ru_RU/core.po +++ /dev/null @@ -1,780 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 -#, php-format -msgid "Couldn't send mail to following users: %s " -msgstr "" - -#: ajax/update.php:11 -msgid "Turned on maintenance mode" -msgstr "" - -#: ajax/update.php:14 -msgid "Turned off maintenance mode" -msgstr "" - -#: ajax/update.php:17 -msgid "Updated database" -msgstr "" - -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - -#: avatar/controller.php:62 -msgid "No image or file provided" -msgstr "" - -#: avatar/controller.php:81 -msgid "Unknown filetype" -msgstr "" - -#: avatar/controller.php:85 -msgid "Invalid image" -msgstr "" - -#: avatar/controller.php:115 avatar/controller.php:142 -msgid "No temporary profile picture available, try again" -msgstr "" - -#: avatar/controller.php:135 -msgid "No crop data provided" -msgstr "" - -#: js/config.php:32 -msgid "Sunday" -msgstr "" - -#: js/config.php:33 -msgid "Monday" -msgstr "" - -#: js/config.php:34 -msgid "Tuesday" -msgstr "" - -#: js/config.php:35 -msgid "Wednesday" -msgstr "" - -#: js/config.php:36 -msgid "Thursday" -msgstr "" - -#: js/config.php:37 -msgid "Friday" -msgstr "" - -#: js/config.php:38 -msgid "Saturday" -msgstr "" - -#: js/config.php:43 -msgid "January" -msgstr "" - -#: js/config.php:44 -msgid "February" -msgstr "" - -#: js/config.php:45 -msgid "March" -msgstr "" - -#: js/config.php:46 -msgid "April" -msgstr "" - -#: js/config.php:47 -msgid "May" -msgstr "" - -#: js/config.php:48 -msgid "June" -msgstr "" - -#: js/config.php:49 -msgid "July" -msgstr "" - -#: js/config.php:50 -msgid "August" -msgstr "" - -#: js/config.php:51 -msgid "September" -msgstr "" - -#: js/config.php:52 -msgid "October" -msgstr "" - -#: js/config.php:53 -msgid "November" -msgstr "" - -#: js/config.php:54 -msgid "December" -msgstr "" - -#: js/js.js:398 -msgid "Settings" -msgstr "Настройки" - -#: js/js.js:869 -msgid "seconds ago" -msgstr "" - -#: js/js.js:870 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:871 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:872 -msgid "today" -msgstr "" - -#: js/js.js:873 -msgid "yesterday" -msgstr "" - -#: js/js.js:874 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:875 -msgid "last month" -msgstr "" - -#: js/js.js:876 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:877 -msgid "months ago" -msgstr "" - -#: js/js.js:878 -msgid "last year" -msgstr "" - -#: js/js.js:879 -msgid "years ago" -msgstr "" - -#: js/oc-dialogs.js:123 -msgid "Choose" -msgstr "" - -#: js/oc-dialogs.js:146 -msgid "Error loading file picker template: {error}" -msgstr "" - -#: js/oc-dialogs.js:172 -msgid "Yes" -msgstr "Да" - -#: js/oc-dialogs.js:182 -msgid "No" -msgstr "Нет" - -#: js/oc-dialogs.js:199 -msgid "Ok" -msgstr "" - -#: js/oc-dialogs.js:219 -msgid "Error loading message template: {error}" -msgstr "" - -#: js/oc-dialogs.js:347 -msgid "{count} file conflict" -msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/oc-dialogs.js:361 -msgid "One file conflict" -msgstr "" - -#: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" -msgstr "" - -#: js/oc-dialogs.js:368 -msgid "" -"If you select both versions, the copied file will have a number added to its" -" name." -msgstr "" - -#: js/oc-dialogs.js:376 -msgid "Cancel" -msgstr "Отмена" - -#: js/oc-dialogs.js:386 -msgid "Continue" -msgstr "" - -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 -msgid "(all selected)" -msgstr "" - -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 -msgid "({count} selected)" -msgstr "" - -#: js/oc-dialogs.js:457 -msgid "Error loading file exists template" -msgstr "" - -#: js/share.js:51 js/share.js:66 js/share.js:106 -msgid "Shared" -msgstr "" - -#: js/share.js:109 -msgid "Share" -msgstr "Сделать общим" - -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 -msgid "Error" -msgstr "Ошибка" - -#: js/share.js:160 js/share.js:747 -msgid "Error while sharing" -msgstr "" - -#: js/share.js:171 -msgid "Error while unsharing" -msgstr "" - -#: js/share.js:178 -msgid "Error while changing permissions" -msgstr "" - -#: js/share.js:187 -msgid "Shared with you and the group {group} by {owner}" -msgstr "" - -#: js/share.js:189 -msgid "Shared with you by {owner}" -msgstr "" - -#: js/share.js:213 -msgid "Share with user or group …" -msgstr "" - -#: js/share.js:219 -msgid "Share link" -msgstr "" - -#: js/share.js:222 -msgid "Password protect" -msgstr "" - -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 -msgid "Password" -msgstr "Пароль" - -#: js/share.js:229 -msgid "Allow Public Upload" -msgstr "" - -#: js/share.js:233 -msgid "Email link to person" -msgstr "" - -#: js/share.js:234 -msgid "Send" -msgstr "" - -#: js/share.js:239 -msgid "Set expiration date" -msgstr "" - -#: js/share.js:240 -msgid "Expiration date" -msgstr "" - -#: js/share.js:275 -msgid "Share via email:" -msgstr "" - -#: js/share.js:278 -msgid "No people found" -msgstr "" - -#: js/share.js:322 js/share.js:359 -msgid "group" -msgstr "" - -#: js/share.js:333 -msgid "Resharing is not allowed" -msgstr "" - -#: js/share.js:375 -msgid "Shared in {item} with {user}" -msgstr "" - -#: js/share.js:397 -msgid "Unshare" -msgstr "" - -#: js/share.js:405 -msgid "notify by email" -msgstr "" - -#: js/share.js:408 -msgid "can edit" -msgstr "возможно редактирование" - -#: js/share.js:410 -msgid "access control" -msgstr "" - -#: js/share.js:413 -msgid "create" -msgstr "" - -#: js/share.js:416 -msgid "update" -msgstr "" - -#: js/share.js:419 -msgid "delete" -msgstr "" - -#: js/share.js:422 -msgid "share" -msgstr "" - -#: js/share.js:694 -msgid "Password protected" -msgstr "" - -#: js/share.js:707 -msgid "Error unsetting expiration date" -msgstr "" - -#: js/share.js:719 -msgid "Error setting expiration date" -msgstr "" - -#: js/share.js:734 -msgid "Sending ..." -msgstr "" - -#: js/share.js:745 -msgid "Email sent" -msgstr "" - -#: js/share.js:769 -msgid "Warning" -msgstr "Предупреждение" - -#: js/tags.js:4 -msgid "The object type is not specified." -msgstr "" - -#: js/tags.js:13 -msgid "Enter new" -msgstr "" - -#: js/tags.js:27 -msgid "Delete" -msgstr "Удалить" - -#: js/tags.js:31 -msgid "Add" -msgstr "" - -#: js/tags.js:39 -msgid "Edit tags" -msgstr "" - -#: js/tags.js:57 -msgid "Error loading dialog template: {error}" -msgstr "" - -#: js/tags.js:261 -msgid "No tags selected for deletion." -msgstr "" - -#: js/update.js:8 -msgid "Please reload the page." -msgstr "" - -#: js/update.js:17 -msgid "" -"The update was unsuccessful. Please report this issue to the ownCloud " -"community." -msgstr "" - -#: js/update.js:21 -msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" - -#: lostpassword/controller.php:62 -#, php-format -msgid "%s password reset" -msgstr "" - -#: lostpassword/templates/email.php:2 -msgid "Use the following link to reset your password: {link}" -msgstr "" - -#: lostpassword/templates/lostpassword.php:7 -msgid "" -"The link to reset your password has been sent to your email.
    If you do " -"not receive it within a reasonable amount of time, check your spam/junk " -"folders.
    If it is not there ask your local administrator ." -msgstr "" - -#: lostpassword/templates/lostpassword.php:15 -msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "" - -#: lostpassword/templates/lostpassword.php:18 -msgid "You will receive a link to reset your password via Email." -msgstr "" - -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 -msgid "Username" -msgstr "Имя пользователя" - -#: lostpassword/templates/lostpassword.php:25 -msgid "" -"Your files are encrypted. If you haven't enabled the recovery key, there " -"will be no way to get your data back after your password is reset. If you " -"are not sure what to do, please contact your administrator before you " -"continue. Do you really want to continue?" -msgstr "" - -#: lostpassword/templates/lostpassword.php:27 -msgid "Yes, I really want to reset my password now" -msgstr "" - -#: lostpassword/templates/lostpassword.php:30 -msgid "Reset" -msgstr "" - -#: lostpassword/templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "" - -#: lostpassword/templates/resetpassword.php:5 -msgid "To login page" -msgstr "" - -#: lostpassword/templates/resetpassword.php:8 -msgid "New password" -msgstr "" - -#: lostpassword/templates/resetpassword.php:11 -msgid "Reset password" -msgstr "" - -#: strings.php:5 -msgid "Personal" -msgstr "" - -#: strings.php:6 -msgid "Users" -msgstr "" - -#: strings.php:7 templates/layout.user.php:111 -msgid "Apps" -msgstr "" - -#: strings.php:8 -msgid "Admin" -msgstr "" - -#: strings.php:9 -msgid "Help" -msgstr "Помощь" - -#: tags/controller.php:22 -msgid "Error loading tags" -msgstr "" - -#: tags/controller.php:48 -msgid "Tag already exists" -msgstr "" - -#: tags/controller.php:64 -msgid "Error deleting tag(s)" -msgstr "" - -#: tags/controller.php:75 -msgid "Error tagging" -msgstr "" - -#: tags/controller.php:86 -msgid "Error untagging" -msgstr "" - -#: tags/controller.php:97 -msgid "Error favoriting" -msgstr "" - -#: tags/controller.php:108 -msgid "Error unfavoriting" -msgstr "" - -#: templates/403.php:12 -msgid "Access forbidden" -msgstr "" - -#: templates/404.php:15 -msgid "Cloud not found" -msgstr "" - -#: templates/altmail.php:2 -#, php-format -msgid "" -"Hey there,\n" -"\n" -"just letting you know that %s shared %s with you.\n" -"View it: %s\n" -"\n" -msgstr "" - -#: templates/altmail.php:4 templates/mail.php:17 -#, php-format -msgid "The share will expire on %s." -msgstr "" - -#: templates/altmail.php:7 templates/mail.php:20 -msgid "Cheers!" -msgstr "" - -#: templates/installation.php:25 templates/installation.php:32 -#: templates/installation.php:39 -msgid "Security Warning" -msgstr "" - -#: templates/installation.php:26 -msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" - -#: templates/installation.php:27 -#, php-format -msgid "Please update your PHP installation to use %s securely." -msgstr "" - -#: templates/installation.php:33 -msgid "" -"No secure random number generator is available, please enable the PHP " -"OpenSSL extension." -msgstr "" - -#: templates/installation.php:34 -msgid "" -"Without a secure random number generator an attacker may be able to predict " -"password reset tokens and take over your account." -msgstr "" - -#: templates/installation.php:40 -msgid "" -"Your data directory and files are probably accessible from the internet " -"because the .htaccess file does not work." -msgstr "" - -#: templates/installation.php:42 -#, php-format -msgid "" -"For information how to properly configure your server, please see the documentation." -msgstr "" - -#: templates/installation.php:48 -msgid "Create an admin account" -msgstr "" - -#: templates/installation.php:67 -msgid "Advanced" -msgstr "" - -#: templates/installation.php:74 -msgid "Data folder" -msgstr "" - -#: templates/installation.php:86 -msgid "Configure the database" -msgstr "" - -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 -msgid "will be used" -msgstr "" - -#: templates/installation.php:149 -msgid "Database user" -msgstr "" - -#: templates/installation.php:156 -msgid "Database password" -msgstr "" - -#: templates/installation.php:161 -msgid "Database name" -msgstr "" - -#: templates/installation.php:169 -msgid "Database tablespace" -msgstr "" - -#: templates/installation.php:176 -msgid "Database host" -msgstr "" - -#: templates/installation.php:185 -msgid "Finish setup" -msgstr "" - -#: templates/installation.php:185 -msgid "Finishing …" -msgstr "" - -#: templates/layout.user.php:40 -msgid "" -"This application requires JavaScript to be enabled for correct operation. " -"Please enable " -"JavaScript and re-load this interface." -msgstr "" - -#: templates/layout.user.php:44 -#, php-format -msgid "%s is available. Get more information on how to update." -msgstr "" - -#: templates/layout.user.php:72 templates/singleuser.user.php:8 -msgid "Log out" -msgstr "" - -#: templates/login.php:9 -msgid "Automatic logon rejected!" -msgstr "" - -#: templates/login.php:10 -msgid "" -"If you did not change your password recently, your account may be " -"compromised!" -msgstr "" - -#: templates/login.php:12 -msgid "Please change your password to secure your account again." -msgstr "" - -#: templates/login.php:17 -msgid "Server side authentication failed!" -msgstr "" - -#: templates/login.php:18 -msgid "Please contact your administrator." -msgstr "" - -#: templates/login.php:44 -msgid "Lost your password?" -msgstr "" - -#: templates/login.php:49 -msgid "remember" -msgstr "" - -#: templates/login.php:52 -msgid "Log in" -msgstr "" - -#: templates/login.php:58 -msgid "Alternative Logins" -msgstr "" - -#: templates/mail.php:15 -#, php-format -msgid "" -"Hey there,

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

    " -msgstr "" - -#: templates/singleuser.user.php:3 -msgid "This ownCloud instance is currently in single user mode." -msgstr "" - -#: templates/singleuser.user.php:4 -msgid "This means only administrators can use the instance." -msgstr "" - -#: templates/singleuser.user.php:5 templates/update.user.php:5 -msgid "" -"Contact your system administrator if this message persists or appeared " -"unexpectedly." -msgstr "" - -#: templates/singleuser.user.php:7 templates/update.user.php:6 -msgid "Thank you for your patience." -msgstr "" - -#: templates/update.admin.php:3 -#, php-format -msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" - -#: templates/update.user.php:3 -msgid "" -"This ownCloud instance is currently being updated, which may take a while." -msgstr "" - -#: templates/update.user.php:4 -msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po deleted file mode 100644 index 72e986aadc4..00000000000 --- a/l10n/ru_RU/files.po +++ /dev/null @@ -1,416 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/move.php:17 -#, php-format -msgid "Could not move %s - File with this name already exists" -msgstr "" - -#: ajax/move.php:27 ajax/move.php:30 -#, php-format -msgid "Could not move %s" -msgstr "" - -#: ajax/newfile.php:56 js/files.js:74 -msgid "File name cannot be empty." -msgstr "Имя файла не может быть пустым." - -#: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 -#, php-format -msgid "" -"The name %s is already used in the folder %s. Please choose a different " -"name." -msgstr "" - -#: ajax/newfile.php:81 -msgid "Not a valid source" -msgstr "" - -#: ajax/newfile.php:86 -msgid "" -"Server is not allowed to open URLs, please check the server configuration" -msgstr "" - -#: ajax/newfile.php:103 -#, php-format -msgid "Error while downloading %s to %s" -msgstr "" - -#: ajax/newfile.php:140 -msgid "Error when creating the file" -msgstr "" - -#: ajax/newfolder.php:21 -msgid "Folder name cannot be empty." -msgstr "" - -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 -msgid "Error when creating the folder" -msgstr "" - -#: ajax/upload.php:18 ajax/upload.php:50 -msgid "Unable to set upload directory." -msgstr "" - -#: ajax/upload.php:27 -msgid "Invalid Token" -msgstr "" - -#: ajax/upload.php:64 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: ajax/upload.php:71 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/upload.php:72 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" - -#: ajax/upload.php:74 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/upload.php:75 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/upload.php:76 -msgid "No file was uploaded" -msgstr "" - -#: ajax/upload.php:77 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/upload.php:78 -msgid "Failed to write to disk" -msgstr "" - -#: ajax/upload.php:96 -msgid "Not enough storage available" -msgstr "" - -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 -msgid "Upload failed. Could not find uploaded file" -msgstr "" - -#: ajax/upload.php:172 -msgid "Invalid directory." -msgstr "" - -#: appinfo/app.php:11 -msgid "Files" -msgstr "Файлы" - -#: js/file-upload.js:228 -msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" - -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "" - -#: js/file-upload.js:306 -msgid "Upload cancelled." -msgstr "" - -#: js/file-upload.js:344 -msgid "Could not get result from server." -msgstr "" - -#: js/file-upload.js:436 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" - -#: js/file-upload.js:523 -msgid "URL cannot be empty" -msgstr "" - -#: js/file-upload.js:527 js/filelist.js:377 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:529 js/filelist.js:379 -msgid "{new_name} already exists" -msgstr "" - -#: js/file-upload.js:595 -msgid "Could not create file" -msgstr "" - -#: js/file-upload.js:611 -msgid "Could not create folder" -msgstr "" - -#: js/file-upload.js:661 -msgid "Error fetching URL" -msgstr "" - -#: js/fileactions.js:125 -msgid "Share" -msgstr "Сделать общим" - -#: js/fileactions.js:137 -msgid "Delete permanently" -msgstr "" - -#: js/fileactions.js:194 -msgid "Rename" -msgstr "Переименовать" - -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 -msgid "Pending" -msgstr "" - -#: js/filelist.js:405 -msgid "Could not rename file" -msgstr "" - -#: js/filelist.js:539 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:539 -msgid "undo" -msgstr "" - -#: js/filelist.js:591 -msgid "Error deleting file." -msgstr "" - -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/filelist.js:617 -msgid "{dirs} and {files}" -msgstr "" - -#: js/filelist.js:828 js/filelist.js:866 -msgid "Uploading %n file" -msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' является неверным именем файла." - -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы." - -#: js/files.js:93 -msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" - -#: js/files.js:97 -msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" - -#: js/files.js:110 -msgid "" -"Encryption App is enabled but your keys are not initialized, please log-out " -"and log-in again" -msgstr "" - -#: js/files.js:114 -msgid "" -"Invalid private key for Encryption App. Please update your private key " -"password in your personal settings to recover access to your encrypted " -"files." -msgstr "" - -#: js/files.js:118 -msgid "" -"Encryption was disabled but your files are still encrypted. Please go to " -"your personal settings to decrypt your files." -msgstr "" - -#: js/files.js:349 -msgid "" -"Your download is being prepared. This might take some time if the files are " -"big." -msgstr "" - -#: js/files.js:558 js/files.js:596 -msgid "Error moving file" -msgstr "" - -#: js/files.js:558 js/files.js:596 -msgid "Error" -msgstr "Ошибка" - -#: js/files.js:613 templates/index.php:56 -msgid "Name" -msgstr "" - -#: js/files.js:614 templates/index.php:68 -msgid "Size" -msgstr "Размер" - -#: js/files.js:615 templates/index.php:70 -msgid "Modified" -msgstr "" - -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:101 -#, php-format -msgid "%s could not be renamed" -msgstr "" - -#: lib/helper.php:11 templates/index.php:16 -msgid "Upload" -msgstr "Загрузка" - -#: templates/admin.php:5 -msgid "File handling" -msgstr "" - -#: templates/admin.php:7 -msgid "Maximum upload size" -msgstr "" - -#: templates/admin.php:10 -msgid "max. possible: " -msgstr "" - -#: templates/admin.php:15 -msgid "Needed for multi-file and folder downloads." -msgstr "" - -#: templates/admin.php:17 -msgid "Enable ZIP-download" -msgstr "" - -#: templates/admin.php:20 -msgid "0 is unlimited" -msgstr "0 без ограничений" - -#: templates/admin.php:22 -msgid "Maximum input size for ZIP files" -msgstr "" - -#: templates/admin.php:26 -msgid "Save" -msgstr "Сохранить" - -#: templates/index.php:5 -msgid "New" -msgstr "" - -#: templates/index.php:8 -msgid "New text file" -msgstr "" - -#: templates/index.php:8 -msgid "Text file" -msgstr "" - -#: templates/index.php:10 -msgid "New folder" -msgstr "" - -#: templates/index.php:10 -msgid "Folder" -msgstr "" - -#: templates/index.php:12 -msgid "From link" -msgstr "" - -#: templates/index.php:29 -msgid "Deleted files" -msgstr "" - -#: templates/index.php:34 -msgid "Cancel upload" -msgstr "Отмена загрузки" - -#: templates/index.php:40 -msgid "You don’t have permission to upload or create files here" -msgstr "" - -#: templates/index.php:45 -msgid "Nothing in here. Upload something!" -msgstr "" - -#: templates/index.php:62 -msgid "Download" -msgstr "Загрузка" - -#: templates/index.php:73 templates/index.php:74 -msgid "Delete" -msgstr "Удалить" - -#: templates/index.php:86 -msgid "Upload too large" -msgstr "" - -#: templates/index.php:88 -msgid "" -"The files you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: templates/index.php:93 -msgid "Files are being scanned, please wait." -msgstr "" - -#: templates/index.php:96 -msgid "Current scanning" -msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po deleted file mode 100644 index 21ff7e96121..00000000000 --- a/l10n/ru_RU/files_encryption.po +++ /dev/null @@ -1,201 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/adminrecovery.php:29 -msgid "Recovery key successfully enabled" -msgstr "" - -#: ajax/adminrecovery.php:34 -msgid "" -"Could not enable recovery key. Please check your recovery key password!" -msgstr "" - -#: ajax/adminrecovery.php:48 -msgid "Recovery key successfully disabled" -msgstr "" - -#: ajax/adminrecovery.php:53 -msgid "" -"Could not disable recovery key. Please check your recovery key password!" -msgstr "" - -#: ajax/changeRecoveryPassword.php:49 -msgid "Password successfully changed." -msgstr "" - -#: ajax/changeRecoveryPassword.php:51 -msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" - -#: ajax/updatePrivateKeyPassword.php:52 -msgid "Private key password successfully updated." -msgstr "" - -#: ajax/updatePrivateKeyPassword.php:54 -msgid "" -"Could not update the private key password. Maybe the old password was not " -"correct." -msgstr "" - -#: files/error.php:12 -msgid "" -"Encryption app not initialized! Maybe the encryption app was re-enabled " -"during your session. Please try to log out and log back in to initialize the" -" encryption app." -msgstr "" - -#: files/error.php:16 -#, php-format -msgid "" -"Your private key is not valid! Likely your password was changed outside of " -"%s (e.g. your corporate directory). You can update your private key password" -" in your personal settings to recover access to your encrypted files." -msgstr "" - -#: files/error.php:19 -msgid "" -"Can not decrypt this file, probably this is a shared file. Please ask the " -"file owner to reshare the file with you." -msgstr "" - -#: files/error.php:22 files/error.php:27 -msgid "" -"Unknown error please check your system settings or contact your " -"administrator" -msgstr "" - -#: hooks/hooks.php:59 -msgid "Missing requirements." -msgstr "" - -#: hooks/hooks.php:60 -msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " -"together with the PHP extension is enabled and configured properly. For now," -" the encryption app has been disabled." -msgstr "" - -#: hooks/hooks.php:273 -msgid "Following users are not set up for encryption:" -msgstr "" - -#: js/detect-migration.js:21 -msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" - -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "" - -#: templates/invalid_private_key.php:8 -msgid "Go directly to your " -msgstr "" - -#: templates/invalid_private_key.php:8 -msgid "personal settings" -msgstr "" - -#: templates/settings-admin.php:4 templates/settings-personal.php:3 -msgid "Encryption" -msgstr "" - -#: templates/settings-admin.php:7 -msgid "" -"Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" - -#: templates/settings-admin.php:11 -msgid "Recovery key password" -msgstr "" - -#: templates/settings-admin.php:14 -msgid "Repeat Recovery key password" -msgstr "" - -#: templates/settings-admin.php:21 templates/settings-personal.php:51 -msgid "Enabled" -msgstr "" - -#: templates/settings-admin.php:29 templates/settings-personal.php:59 -msgid "Disabled" -msgstr "" - -#: templates/settings-admin.php:34 -msgid "Change recovery key password:" -msgstr "" - -#: templates/settings-admin.php:40 -msgid "Old Recovery key password" -msgstr "" - -#: templates/settings-admin.php:47 -msgid "New Recovery key password" -msgstr "" - -#: templates/settings-admin.php:53 -msgid "Repeat New Recovery key password" -msgstr "" - -#: templates/settings-admin.php:58 -msgid "Change Password" -msgstr "" - -#: templates/settings-personal.php:9 -msgid "Your private key password no longer match your log-in password:" -msgstr "" - -#: templates/settings-personal.php:12 -msgid "Set your old private key password to your current log-in password." -msgstr "" - -#: templates/settings-personal.php:14 -msgid "" -" If you don't remember your old password you can ask your administrator to " -"recover your files." -msgstr "" - -#: templates/settings-personal.php:22 -msgid "Old log-in password" -msgstr "" - -#: templates/settings-personal.php:28 -msgid "Current log-in password" -msgstr "" - -#: templates/settings-personal.php:33 -msgid "Update Private Key Password" -msgstr "" - -#: templates/settings-personal.php:42 -msgid "Enable password recovery:" -msgstr "" - -#: templates/settings-personal.php:44 -msgid "" -"Enabling this option will allow you to reobtain access to your encrypted " -"files in case of password loss" -msgstr "" - -#: templates/settings-personal.php:60 -msgid "File recovery settings updated" -msgstr "" - -#: templates/settings-personal.php:61 -msgid "Could not update file recovery" -msgstr "" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po deleted file mode 100644 index a5c9cc66b99..00000000000 --- a/l10n/ru_RU/files_external.po +++ /dev/null @@ -1,123 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:50+0000\n" -"Last-Translator: masensio \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 -msgid "Access granted" -msgstr "" - -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 -msgid "Error configuring Dropbox storage" -msgstr "" - -#: js/dropbox.js:65 js/google.js:86 -msgid "Grant access" -msgstr "" - -#: js/dropbox.js:101 -msgid "Please provide a valid Dropbox app key and secret." -msgstr "" - -#: js/google.js:42 js/google.js:121 -msgid "Error configuring Google Drive storage" -msgstr "" - -#: lib/config.php:461 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "" - -#: lib/config.php:465 -msgid "" -"Warning: The FTP support in PHP is not enabled or installed. Mounting" -" of FTP shares is not possible. Please ask your system administrator to " -"install it." -msgstr "" - -#: lib/config.php:468 -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 "" - -#: templates/settings.php:3 -msgid "External Storage" -msgstr "" - -#: templates/settings.php:9 templates/settings.php:28 -msgid "Folder name" -msgstr "" - -#: templates/settings.php:10 -msgid "External storage" -msgstr "" - -#: templates/settings.php:11 -msgid "Configuration" -msgstr "" - -#: templates/settings.php:12 -msgid "Options" -msgstr "Опции" - -#: templates/settings.php:13 -msgid "Applicable" -msgstr "" - -#: templates/settings.php:33 -msgid "Add storage" -msgstr "" - -#: templates/settings.php:90 -msgid "None set" -msgstr "" - -#: templates/settings.php:91 -msgid "All Users" -msgstr "" - -#: templates/settings.php:92 -msgid "Groups" -msgstr "" - -#: templates/settings.php:100 -msgid "Users" -msgstr "" - -#: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 -msgid "Delete" -msgstr "Удалить" - -#: templates/settings.php:129 -msgid "Enable User External Storage" -msgstr "" - -#: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "" - -#: templates/settings.php:141 -msgid "SSL root certificates" -msgstr "" - -#: templates/settings.php:159 -msgid "Import Root Certificate" -msgstr "" diff --git a/l10n/ru_RU/files_sharing.po b/l10n/ru_RU/files_sharing.po deleted file mode 100644 index d2ba5dc90dc..00000000000 --- a/l10n/ru_RU/files_sharing.po +++ /dev/null @@ -1,84 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: templates/authenticate.php:4 -msgid "This share is password-protected" -msgstr "" - -#: templates/authenticate.php:7 -msgid "The password is wrong. Try again." -msgstr "" - -#: templates/authenticate.php:10 -msgid "Password" -msgstr "Пароль" - -#: templates/part.404.php:3 -msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" - -#: templates/part.404.php:4 -msgid "Reasons might be:" -msgstr "" - -#: templates/part.404.php:6 -msgid "the item was removed" -msgstr "" - -#: templates/part.404.php:7 -msgid "the link expired" -msgstr "" - -#: templates/part.404.php:8 -msgid "sharing is disabled" -msgstr "" - -#: templates/part.404.php:10 -msgid "For more info, please ask the person who sent this link." -msgstr "" - -#: templates/public.php:18 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "" - -#: templates/public.php:21 -#, php-format -msgid "%s shared the file %s with you" -msgstr "" - -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Загрузка" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Загрузка" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Отмена загрузки" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 -msgid "Direct link" -msgstr "" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po deleted file mode 100644 index 734eef7b3e8..00000000000 --- a/l10n/ru_RU/files_trashbin.po +++ /dev/null @@ -1,60 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:50+0000\n" -"Last-Translator: masensio \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/delete.php:42 -#, php-format -msgid "Couldn't delete %s permanently" -msgstr "" - -#: ajax/undelete.php:42 -#, php-format -msgid "Couldn't restore %s" -msgstr "" - -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 -msgid "Error" -msgstr "Ошибка" - -#: lib/trashbin.php:815 lib/trashbin.php:817 -msgid "restored" -msgstr "" - -#: templates/index.php:8 -msgid "Nothing in here. Your trash bin is empty!" -msgstr "" - -#: templates/index.php:22 -msgid "Name" -msgstr "" - -#: templates/index.php:25 templates/index.php:27 -msgid "Restore" -msgstr "" - -#: templates/index.php:33 -msgid "Deleted" -msgstr "" - -#: templates/index.php:36 templates/index.php:37 -msgid "Delete" -msgstr "Удалить" - -#: templates/part.breadcrumb.php:9 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po deleted file mode 100644 index 62c11500eb4..00000000000 --- a/l10n/ru_RU/files_versions.po +++ /dev/null @@ -1,43 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-19 08:26-0400\n" -"PO-Revision-Date: 2013-10-18 09:15+0000\n" -"Last-Translator: masensio \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/rollbackVersion.php:13 -#, php-format -msgid "Could not revert: %s" -msgstr "" - -#: js/versions.js:14 -msgid "Versions" -msgstr "" - -#: js/versions.js:60 -msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" - -#: js/versions.js:86 -msgid "More versions..." -msgstr "" - -#: js/versions.js:123 -msgid "No other versions available" -msgstr "" - -#: js/versions.js:154 -msgid "Restore" -msgstr "" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po deleted file mode 100644 index 1ac6c0d0d62..00000000000 --- a/l10n/ru_RU/lib.po +++ /dev/null @@ -1,337 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: private/app.php:243 -#, php-format -msgid "" -"App \"%s\" can't be installed because it is not compatible with this version" -" of ownCloud." -msgstr "" - -#: private/app.php:255 -msgid "No app name specified" -msgstr "" - -#: private/app.php:360 -msgid "Help" -msgstr "Помощь" - -#: private/app.php:373 -msgid "Personal" -msgstr "" - -#: private/app.php:384 -msgid "Settings" -msgstr "Настройки" - -#: private/app.php:396 -msgid "Users" -msgstr "" - -#: private/app.php:409 -msgid "Admin" -msgstr "" - -#: private/app.php:873 -#, php-format -msgid "Failed to upgrade \"%s\"." -msgstr "" - -#: private/avatar.php:66 -msgid "Unknown filetype" -msgstr "" - -#: private/avatar.php:71 -msgid "Invalid image" -msgstr "" - -#: private/defaults.php:34 -msgid "web services under your control" -msgstr "" - -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - -#: private/files.php:231 -msgid "ZIP download is turned off." -msgstr "" - -#: private/files.php:232 -msgid "Files need to be downloaded one by one." -msgstr "" - -#: private/files.php:233 private/files.php:261 -msgid "Back to Files" -msgstr "" - -#: private/files.php:258 -msgid "Selected files too large to generate zip file." -msgstr "" - -#: private/files.php:259 -msgid "" -"Please download the files separately in smaller chunks or kindly ask your " -"administrator." -msgstr "" - -#: private/installer.php:63 -msgid "No source specified when installing app" -msgstr "" - -#: private/installer.php:70 -msgid "No href specified when installing app from http" -msgstr "" - -#: private/installer.php:75 -msgid "No path specified when installing app from local file" -msgstr "" - -#: private/installer.php:89 -#, php-format -msgid "Archives of type %s are not supported" -msgstr "" - -#: private/installer.php:103 -msgid "Failed to open archive when installing app" -msgstr "" - -#: private/installer.php:125 -msgid "App does not provide an info.xml file" -msgstr "" - -#: private/installer.php:131 -msgid "App can't be installed because of not allowed code in the App" -msgstr "" - -#: private/installer.php:140 -msgid "" -"App can't be installed because it is not compatible with this version of " -"ownCloud" -msgstr "" - -#: private/installer.php:146 -msgid "" -"App can't be installed because it contains the true tag " -"which is not allowed for non shipped apps" -msgstr "" - -#: private/installer.php:159 -msgid "" -"App can't be installed because the version in info.xml/version is not the " -"same as the version reported from the app store" -msgstr "" - -#: private/installer.php:169 -msgid "App directory already exists" -msgstr "" - -#: private/installer.php:182 -#, php-format -msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" - -#: private/json.php:28 -msgid "Application is not enabled" -msgstr "" - -#: private/json.php:39 private/json.php:62 private/json.php:73 -msgid "Authentication error" -msgstr "" - -#: private/json.php:51 -msgid "Token expired. Please reload page." -msgstr "" - -#: private/search/provider/file.php:18 private/search/provider/file.php:36 -msgid "Files" -msgstr "Файлы" - -#: private/search/provider/file.php:27 private/search/provider/file.php:34 -msgid "Text" -msgstr "Текст" - -#: private/search/provider/file.php:30 -msgid "Images" -msgstr "" - -#: private/setup/abstractdatabase.php:26 -#, php-format -msgid "%s enter the database username." -msgstr "" - -#: private/setup/abstractdatabase.php:29 -#, php-format -msgid "%s enter the database name." -msgstr "" - -#: private/setup/abstractdatabase.php:32 -#, php-format -msgid "%s you may not use dots in the database name" -msgstr "" - -#: private/setup/mssql.php:20 -#, php-format -msgid "MS SQL username and/or password not valid: %s" -msgstr "" - -#: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 -msgid "You need to enter either an existing account or the administrator." -msgstr "" - -#: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "" - -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 -#, php-format -msgid "Offending command was: \"%s\"" -msgstr "" - -#: private/setup/mysql.php:85 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" - -#: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "" - -#: private/setup/mysql.php:91 -#, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "" - -#: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "" - -#: private/setup/oci.php:34 -msgid "Oracle connection could not be established" -msgstr "" - -#: private/setup/oci.php:41 private/setup/oci.php:113 -msgid "Oracle username and/or password not valid" -msgstr "" - -#: private/setup/oci.php:170 private/setup/oci.php:202 -#, php-format -msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" - -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 -msgid "PostgreSQL username and/or password not valid" -msgstr "" - -#: private/setup.php:28 -msgid "Set an admin username." -msgstr "" - -#: private/setup.php:31 -msgid "Set an admin password." -msgstr "" - -#: private/setup.php:195 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "" - -#: private/setup.php:196 -#, php-format -msgid "Please double check the installation guides." -msgstr "" - -#: private/tags.php:194 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" - -#: private/template/functions.php:130 -msgid "seconds ago" -msgstr "" - -#: private/template/functions.php:131 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: private/template/functions.php:132 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: private/template/functions.php:133 -msgid "today" -msgstr "" - -#: private/template/functions.php:134 -msgid "yesterday" -msgstr "" - -#: private/template/functions.php:136 -msgid "%n day go" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: private/template/functions.php:138 -msgid "last month" -msgstr "" - -#: private/template/functions.php:139 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: private/template/functions.php:141 -msgid "last year" -msgstr "" - -#: private/template/functions.php:142 -msgid "years ago" -msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po deleted file mode 100644 index a32ddd5a833..00000000000 --- a/l10n/ru_RU/settings.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/apps/ocs.php:20 -msgid "Unable to load list from App Store" -msgstr "" - -#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 -msgid "Authentication error" -msgstr "" - -#: ajax/changedisplayname.php:31 -msgid "Your full name has been changed." -msgstr "" - -#: ajax/changedisplayname.php:34 -msgid "Unable to change full name" -msgstr "" - -#: ajax/creategroup.php:10 -msgid "Group already exists" -msgstr "" - -#: ajax/creategroup.php:19 -msgid "Unable to add group" -msgstr "" - -#: ajax/lostpassword.php:12 -msgid "Email saved" -msgstr "" - -#: ajax/lostpassword.php:14 -msgid "Invalid email" -msgstr "" - -#: ajax/removegroup.php:13 -msgid "Unable to delete group" -msgstr "" - -#: ajax/removeuser.php:25 -msgid "Unable to delete user" -msgstr "" - -#: ajax/setlanguage.php:15 -msgid "Language changed" -msgstr "" - -#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - -#: ajax/togglegroups.php:12 -msgid "Admins can't remove themself from the admin group" -msgstr "" - -#: ajax/togglegroups.php:30 -#, php-format -msgid "Unable to add user to group %s" -msgstr "" - -#: ajax/togglegroups.php:36 -#, php-format -msgid "Unable to remove user from group %s" -msgstr "" - -#: ajax/updateapp.php:14 -msgid "Couldn't update app." -msgstr "" - -#: changepassword/controller.php:20 -msgid "Wrong password" -msgstr "" - -#: changepassword/controller.php:42 -msgid "No user supplied" -msgstr "" - -#: changepassword/controller.php:74 -msgid "" -"Please provide an admin recovery password, otherwise all user data will be " -"lost" -msgstr "" - -#: changepassword/controller.php:79 -msgid "" -"Wrong admin recovery password. Please check the password and try again." -msgstr "" - -#: changepassword/controller.php:87 -msgid "" -"Back-end doesn't support password change, but the users encryption key was " -"successfully updated." -msgstr "" - -#: changepassword/controller.php:92 changepassword/controller.php:103 -msgid "Unable to change password" -msgstr "" - -#: js/apps.js:43 -msgid "Update to {appversion}" -msgstr "" - -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 -msgid "Disable" -msgstr "" - -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 -msgid "Enable" -msgstr "" - -#: js/apps.js:71 -msgid "Please wait...." -msgstr "" - -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 -msgid "Error while disabling app" -msgstr "" - -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 -msgid "Error while enabling app" -msgstr "" - -#: js/apps.js:125 -msgid "Updating...." -msgstr "" - -#: js/apps.js:128 -msgid "Error while updating app" -msgstr "" - -#: js/apps.js:128 -msgid "Error" -msgstr "Ошибка" - -#: js/apps.js:129 templates/apps.php:43 -msgid "Update" -msgstr "" - -#: js/apps.js:132 -msgid "Updated" -msgstr "" - -#: js/personal.js:220 -msgid "Select a profile picture" -msgstr "" - -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." -msgstr "" - -#: js/personal.js:287 -msgid "Saving..." -msgstr "" - -#: js/users.js:47 -msgid "deleted" -msgstr "" - -#: js/users.js:47 -msgid "undo" -msgstr "" - -#: js/users.js:79 -msgid "Unable to remove user" -msgstr "" - -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 -msgid "Groups" -msgstr "" - -#: js/users.js:100 templates/users.php:92 templates/users.php:130 -msgid "Group Admin" -msgstr "" - -#: js/users.js:123 templates/users.php:170 -msgid "Delete" -msgstr "Удалить" - -#: js/users.js:284 -msgid "add group" -msgstr "" - -#: js/users.js:451 -msgid "A valid username must be provided" -msgstr "" - -#: js/users.js:452 js/users.js:458 js/users.js:473 -msgid "Error creating user" -msgstr "" - -#: js/users.js:457 -msgid "A valid password must be provided" -msgstr "" - -#: js/users.js:481 -msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" - -#: personal.php:45 personal.php:46 -msgid "__language_name__" -msgstr "" - -#: templates/admin.php:8 -msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" - -#: templates/admin.php:9 -msgid "Info, warnings, errors and fatal issues" -msgstr "" - -#: templates/admin.php:10 -msgid "Warnings, errors and fatal issues" -msgstr "" - -#: templates/admin.php:11 -msgid "Errors and fatal issues" -msgstr "" - -#: templates/admin.php:12 -msgid "Fatal issues only" -msgstr "" - -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" -msgstr "" - -#: templates/admin.php:25 -#, php-format -msgid "" -"You are accessing %s via HTTP. We strongly suggest you configure your server" -" to require using HTTPS instead." -msgstr "" - -#: templates/admin.php:39 -msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file is not working. We strongly suggest that you " -"configure your webserver in a way that the data directory is no longer " -"accessible or you move the data directory outside the webserver document " -"root." -msgstr "" - -#: templates/admin.php:50 -msgid "Setup Warning" -msgstr "" - -#: templates/admin.php:53 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "" - -#: templates/admin.php:54 -#, php-format -msgid "Please double check the installation guides." -msgstr "" - -#: templates/admin.php:65 -msgid "Module 'fileinfo' missing" -msgstr "" - -#: templates/admin.php:68 -msgid "" -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " -"module to get best results with mime-type detection." -msgstr "" - -#: templates/admin.php:79 -msgid "Your PHP version is outdated" -msgstr "" - -#: templates/admin.php:82 -msgid "" -"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " -"newer because older versions are known to be broken. It is possible that " -"this installation is not working correctly." -msgstr "" - -#: templates/admin.php:93 -msgid "Locale not working" -msgstr "" - -#: templates/admin.php:98 -msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" - -#: templates/admin.php:102 -msgid "" -"This means that there might be problems with certain characters in file " -"names." -msgstr "" - -#: templates/admin.php:106 -#, php-format -msgid "" -"We strongly suggest to install the required packages on your system to " -"support one of the following locales: %s." -msgstr "" - -#: templates/admin.php:118 -msgid "Internet connection not working" -msgstr "" - -#: templates/admin.php:121 -msgid "" -"This server has no working internet connection. This means that some of the " -"features like mounting of external storage, notifications about updates or " -"installation of 3rd party apps don´t work. Accessing files from remote and " -"sending of notification emails might also not work. We suggest to enable " -"internet connection for this server if you want to have all features." -msgstr "" - -#: templates/admin.php:135 -msgid "Cron" -msgstr "" - -#: templates/admin.php:142 -msgid "Execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:150 -msgid "" -"cron.php is registered at a webcron service to call cron.php every 15 " -"minutes over http." -msgstr "" - -#: templates/admin.php:158 -msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" - -#: templates/admin.php:163 -msgid "Sharing" -msgstr "" - -#: templates/admin.php:169 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:170 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:177 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:178 -msgid "Allow users to share items to the public with links" -msgstr "" - -#: templates/admin.php:186 -msgid "Allow public uploads" -msgstr "" - -#: templates/admin.php:187 -msgid "" -"Allow users to enable others to upload into their publicly shared folders" -msgstr "" - -#: templates/admin.php:195 -msgid "Allow resharing" -msgstr "" - -#: templates/admin.php:196 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:203 -msgid "Allow users to share with anyone" -msgstr "" - -#: templates/admin.php:206 -msgid "Allow users to only share with users in their groups" -msgstr "" - -#: templates/admin.php:213 -msgid "Allow mail notification" -msgstr "" - -#: templates/admin.php:214 -msgid "Allow user to send mail notification for shared files" -msgstr "" - -#: templates/admin.php:221 -msgid "Security" -msgstr "" - -#: templates/admin.php:234 -msgid "Enforce HTTPS" -msgstr "" - -#: templates/admin.php:236 -#, php-format -msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" - -#: templates/admin.php:242 -#, php-format -msgid "" -"Please connect to your %s via HTTPS to enable or disable the SSL " -"enforcement." -msgstr "" - -#: templates/admin.php:254 -msgid "Log" -msgstr "" - -#: templates/admin.php:255 -msgid "Log level" -msgstr "" - -#: templates/admin.php:287 -msgid "More" -msgstr "Подробнее" - -#: templates/admin.php:288 -msgid "Less" -msgstr "" - -#: templates/admin.php:294 templates/personal.php:173 -msgid "Version" -msgstr "" - -#: templates/admin.php:298 templates/personal.php:176 -msgid "" -"Developed by the ownCloud community, the source code is " -"licensed under the AGPL." -msgstr "" - -#: templates/apps.php:13 -msgid "Add your App" -msgstr "" - -#: templates/apps.php:28 -msgid "More Apps" -msgstr "" - -#: templates/apps.php:33 -msgid "Select an App" -msgstr "" - -#: templates/apps.php:39 -msgid "See application page at apps.owncloud.com" -msgstr "" - -#: templates/apps.php:41 -msgid "-licensed by " -msgstr "" - -#: templates/help.php:4 -msgid "User Documentation" -msgstr "" - -#: templates/help.php:6 -msgid "Administrator Documentation" -msgstr "" - -#: templates/help.php:9 -msgid "Online Documentation" -msgstr "" - -#: templates/help.php:11 -msgid "Forum" -msgstr "" - -#: templates/help.php:14 -msgid "Bugtracker" -msgstr "" - -#: templates/help.php:17 -msgid "Commercial Support" -msgstr "" - -#: templates/personal.php:8 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:19 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:27 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 -msgid "Password" -msgstr "Пароль" - -#: templates/personal.php:40 -msgid "Your password was changed" -msgstr "" - -#: templates/personal.php:41 -msgid "Unable to change your password" -msgstr "" - -#: templates/personal.php:42 -msgid "Current password" -msgstr "" - -#: templates/personal.php:44 -msgid "New password" -msgstr "" - -#: templates/personal.php:46 -msgid "Change password" -msgstr "" - -#: templates/personal.php:58 templates/users.php:88 -msgid "Full Name" -msgstr "" - -#: templates/personal.php:73 -msgid "Email" -msgstr "" - -#: templates/personal.php:75 -msgid "Your email address" -msgstr "" - -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "" - -#: templates/personal.php:86 -msgid "Profile picture" -msgstr "" - -#: templates/personal.php:91 -msgid "Upload new" -msgstr "" - -#: templates/personal.php:93 -msgid "Select new from Files" -msgstr "" - -#: templates/personal.php:94 -msgid "Remove image" -msgstr "" - -#: templates/personal.php:95 -msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" - -#: templates/personal.php:97 -msgid "Your avatar is provided by your original account." -msgstr "" - -#: templates/personal.php:101 -msgid "Abort" -msgstr "" - -#: templates/personal.php:102 -msgid "Choose as profile image" -msgstr "" - -#: templates/personal.php:110 templates/personal.php:111 -msgid "Language" -msgstr "" - -#: templates/personal.php:130 -msgid "Help translate" -msgstr "" - -#: templates/personal.php:137 -msgid "WebDAV" -msgstr "" - -#: templates/personal.php:139 -#, php-format -msgid "" -"Use this address to access your Files via " -"WebDAV" -msgstr "" - -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 -msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" - -#: templates/personal.php:158 -msgid "Log-in password" -msgstr "" - -#: templates/personal.php:163 -msgid "Decrypt all Files" -msgstr "" - -#: templates/users.php:21 -msgid "Login Name" -msgstr "" - -#: templates/users.php:30 -msgid "Create" -msgstr "Создать" - -#: templates/users.php:36 -msgid "Admin Recovery Password" -msgstr "" - -#: templates/users.php:37 templates/users.php:38 -msgid "" -"Enter the recovery password in order to recover the users files during " -"password change" -msgstr "" - -#: templates/users.php:42 -msgid "Default Storage" -msgstr "" - -#: templates/users.php:44 templates/users.php:139 -msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" - -#: templates/users.php:48 templates/users.php:148 -msgid "Unlimited" -msgstr "" - -#: templates/users.php:66 templates/users.php:163 -msgid "Other" -msgstr "" - -#: templates/users.php:87 -msgid "Username" -msgstr "Имя пользователя" - -#: templates/users.php:94 -msgid "Storage" -msgstr "" - -#: templates/users.php:108 -msgid "change full name" -msgstr "" - -#: templates/users.php:112 -msgid "set new password" -msgstr "" - -#: templates/users.php:143 -msgid "Default" -msgstr "" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po deleted file mode 100644 index 2bf8b2157e1..00000000000 --- a/l10n/ru_RU/user_ldap.po +++ /dev/null @@ -1,515 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/clearMappings.php:34 -msgid "Failed to clear the mappings." -msgstr "" - -#: ajax/deleteConfiguration.php:34 -msgid "Failed to delete the server configuration" -msgstr "" - -#: ajax/testConfiguration.php:39 -msgid "The configuration is valid and the connection could be established!" -msgstr "" - -#: ajax/testConfiguration.php:42 -msgid "" -"The configuration is valid, but the Bind failed. Please check the server " -"settings and credentials." -msgstr "" - -#: ajax/testConfiguration.php:46 -msgid "" -"The configuration is invalid. Please have a look at the logs for further " -"details." -msgstr "" - -#: ajax/wizard.php:32 -msgid "No action specified" -msgstr "" - -#: ajax/wizard.php:38 -msgid "No configuration specified" -msgstr "" - -#: ajax/wizard.php:81 -msgid "No data specified" -msgstr "" - -#: ajax/wizard.php:89 -#, php-format -msgid " Could not set configuration %s" -msgstr "" - -#: js/settings.js:67 -msgid "Deletion failed" -msgstr "" - -#: js/settings.js:83 -msgid "Take over settings from recent server configuration?" -msgstr "" - -#: js/settings.js:84 -msgid "Keep settings?" -msgstr "" - -#: js/settings.js:99 -msgid "Cannot add server configuration" -msgstr "" - -#: js/settings.js:127 -msgid "mappings cleared" -msgstr "" - -#: js/settings.js:128 -msgid "Success" -msgstr "" - -#: js/settings.js:133 -msgid "Error" -msgstr "Ошибка" - -#: js/settings.js:837 -msgid "Configuration OK" -msgstr "" - -#: js/settings.js:846 -msgid "Configuration incorrect" -msgstr "" - -#: js/settings.js:855 -msgid "Configuration incomplete" -msgstr "" - -#: js/settings.js:872 js/settings.js:881 -msgid "Select groups" -msgstr "Выбрать группы" - -#: js/settings.js:875 js/settings.js:884 -msgid "Select object classes" -msgstr "" - -#: js/settings.js:878 -msgid "Select attributes" -msgstr "" - -#: js/settings.js:905 -msgid "Connection test succeeded" -msgstr "" - -#: js/settings.js:912 -msgid "Connection test failed" -msgstr "" - -#: js/settings.js:921 -msgid "Do you really want to delete the current Server Configuration?" -msgstr "" - -#: js/settings.js:922 -msgid "Confirm Deletion" -msgstr "" - -#: lib/wizard.php:79 lib/wizard.php:93 -#, php-format -msgid "%s group found" -msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/wizard.php:122 -#, php-format -msgid "%s user found" -msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/wizard.php:778 lib/wizard.php:790 -msgid "Invalid Host" -msgstr "" - -#: lib/wizard.php:951 -msgid "Could not find the desired feature" -msgstr "" - -#: templates/part.settingcontrols.php:2 -msgid "Save" -msgstr "Сохранить" - -#: templates/part.settingcontrols.php:4 -msgid "Test Configuration" -msgstr "" - -#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 -msgid "Help" -msgstr "Помощь" - -#: templates/part.wizard-groupfilter.php:4 -#, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "" - -#: templates/part.wizard-groupfilter.php:8 -#: templates/part.wizard-userfilter.php:8 -msgid "only those object classes:" -msgstr "" - -#: templates/part.wizard-groupfilter.php:17 -#: templates/part.wizard-userfilter.php:17 -msgid "only from those groups:" -msgstr "" - -#: templates/part.wizard-groupfilter.php:25 -#: templates/part.wizard-loginfilter.php:32 -#: templates/part.wizard-userfilter.php:25 -msgid "Edit raw filter instead" -msgstr "" - -#: templates/part.wizard-groupfilter.php:30 -#: templates/part.wizard-loginfilter.php:37 -#: templates/part.wizard-userfilter.php:30 -msgid "Raw LDAP filter" -msgstr "" - -#: templates/part.wizard-groupfilter.php:31 -#, php-format -msgid "" -"The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" - -#: templates/part.wizard-groupfilter.php:38 -msgid "groups found" -msgstr "" - -#: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "" - -#: templates/part.wizard-loginfilter.php:8 -msgid "LDAP Username:" -msgstr "" - -#: templates/part.wizard-loginfilter.php:16 -msgid "LDAP Email Address:" -msgstr "" - -#: templates/part.wizard-loginfilter.php:24 -msgid "Other Attributes:" -msgstr "" - -#: templates/part.wizard-loginfilter.php:38 -#, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "" - -#: templates/part.wizard-server.php:18 -msgid "Add Server Configuration" -msgstr "" - -#: templates/part.wizard-server.php:30 -msgid "Host" -msgstr "" - -#: templates/part.wizard-server.php:31 -msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" - -#: templates/part.wizard-server.php:36 -msgid "Port" -msgstr "" - -#: templates/part.wizard-server.php:44 -msgid "User DN" -msgstr "" - -#: templates/part.wizard-server.php:45 -msgid "" -"The DN of the client user with which the bind shall be done, e.g. " -"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " -"empty." -msgstr "" - -#: templates/part.wizard-server.php:52 -msgid "Password" -msgstr "Пароль" - -#: templates/part.wizard-server.php:53 -msgid "For anonymous access, leave DN and Password empty." -msgstr "" - -#: templates/part.wizard-server.php:60 -msgid "One Base DN per line" -msgstr "" - -#: templates/part.wizard-server.php:61 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" - -#: templates/part.wizard-userfilter.php:4 -#, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "" - -#: templates/part.wizard-userfilter.php:31 -#, php-format -msgid "" -"The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" - -#: templates/part.wizard-userfilter.php:38 -msgid "users found" -msgstr "" - -#: templates/part.wizardcontrols.php:5 -msgid "Back" -msgstr "Назад" - -#: templates/part.wizardcontrols.php:8 -msgid "Continue" -msgstr "" - -#: templates/settings.php:11 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "" - -#: templates/settings.php:14 -msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "" - -#: templates/settings.php:20 -msgid "Connection Settings" -msgstr "" - -#: templates/settings.php:22 -msgid "Configuration Active" -msgstr "" - -#: templates/settings.php:22 -msgid "When unchecked, this configuration will be skipped." -msgstr "" - -#: templates/settings.php:23 -msgid "Backup (Replica) Host" -msgstr "" - -#: templates/settings.php:23 -msgid "" -"Give an optional backup host. It must be a replica of the main LDAP/AD " -"server." -msgstr "" - -#: templates/settings.php:24 -msgid "Backup (Replica) Port" -msgstr "" - -#: templates/settings.php:25 -msgid "Disable Main Server" -msgstr "" - -#: templates/settings.php:25 -msgid "Only connect to the replica server." -msgstr "" - -#: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "" - -#: templates/settings.php:27 -msgid "Turn off SSL certificate validation." -msgstr "" - -#: templates/settings.php:27 -#, php-format -msgid "" -"Not recommended, use it for testing only! If connection only works with this" -" option, import the LDAP server's SSL certificate in your %s server." -msgstr "" - -#: templates/settings.php:28 -msgid "Cache Time-To-Live" -msgstr "" - -#: templates/settings.php:28 -msgid "in seconds. A change empties the cache." -msgstr "" - -#: templates/settings.php:30 -msgid "Directory Settings" -msgstr "" - -#: templates/settings.php:32 -msgid "User Display Name Field" -msgstr "" - -#: templates/settings.php:32 -msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" - -#: templates/settings.php:33 -msgid "Base User Tree" -msgstr "" - -#: templates/settings.php:33 -msgid "One User Base DN per line" -msgstr "" - -#: templates/settings.php:34 -msgid "User Search Attributes" -msgstr "" - -#: templates/settings.php:34 templates/settings.php:37 -msgid "Optional; one attribute per line" -msgstr "" - -#: templates/settings.php:35 -msgid "Group Display Name Field" -msgstr "" - -#: templates/settings.php:35 -msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" - -#: templates/settings.php:36 -msgid "Base Group Tree" -msgstr "" - -#: templates/settings.php:36 -msgid "One Group Base DN per line" -msgstr "" - -#: templates/settings.php:37 -msgid "Group Search Attributes" -msgstr "" - -#: templates/settings.php:38 -msgid "Group-Member association" -msgstr "" - -#: templates/settings.php:40 -msgid "Special Attributes" -msgstr "" - -#: templates/settings.php:42 -msgid "Quota Field" -msgstr "" - -#: templates/settings.php:43 -msgid "Quota Default" -msgstr "" - -#: templates/settings.php:43 -msgid "in bytes" -msgstr "" - -#: templates/settings.php:44 -msgid "Email Field" -msgstr "" - -#: templates/settings.php:45 -msgid "User Home Folder Naming Rule" -msgstr "" - -#: templates/settings.php:45 -msgid "" -"Leave empty for user name (default). Otherwise, specify an LDAP/AD " -"attribute." -msgstr "" - -#: templates/settings.php:51 -msgid "Internal Username" -msgstr "" - -#: templates/settings.php:52 -msgid "" -"By default the internal username will be created from the UUID attribute. It" -" makes sure that the username is unique and characters do not need to be " -"converted. The internal username has the restriction that only these " -"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " -"with their ASCII correspondence or simply omitted. On collisions a number " -"will be added/increased. The internal username is used to identify a user " -"internally. It is also the default name for the user home folder. It is also" -" a part of remote URLs, for instance for all *DAV services. With this " -"setting, the default behavior can be overridden. To achieve a similar " -"behavior as before ownCloud 5 enter the user display name attribute in the " -"following field. Leave it empty for default behavior. Changes will have " -"effect only on newly mapped (added) LDAP users." -msgstr "" - -#: templates/settings.php:53 -msgid "Internal Username Attribute:" -msgstr "" - -#: templates/settings.php:54 -msgid "Override UUID detection" -msgstr "" - -#: templates/settings.php:55 -msgid "" -"By default, the UUID attribute is automatically detected. The UUID attribute" -" is used to doubtlessly identify LDAP users and groups. Also, the internal " -"username will be created based on the UUID, if not specified otherwise " -"above. You can override the setting and pass an attribute of your choice. " -"You must make sure that the attribute of your choice can be fetched for both" -" users and groups and it is unique. Leave it empty for default behavior. " -"Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" - -#: templates/settings.php:56 -msgid "UUID Attribute for Users:" -msgstr "" - -#: templates/settings.php:57 -msgid "UUID Attribute for Groups:" -msgstr "" - -#: templates/settings.php:58 -msgid "Username-LDAP User Mapping" -msgstr "" - -#: templates/settings.php:59 -msgid "" -"Usernames are used to store and assign (meta) data. In order to precisely " -"identify and recognize users, each LDAP user will have a internal username. " -"This requires a mapping from username to LDAP user. The created username is " -"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " -"to reduce LDAP interaction, but it is not used for identification. If the DN" -" changes, the changes will be found. The internal username is used all over." -" Clearing the mappings will have leftovers everywhere. Clearing the mappings" -" is not configuration sensitive, it affects all LDAP configurations! Never " -"clear the mappings in a production environment, only in a testing or " -"experimental stage." -msgstr "" - -#: templates/settings.php:60 -msgid "Clear Username-LDAP User Mapping" -msgstr "" - -#: templates/settings.php:60 -msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po deleted file mode 100644 index c8612e2f644..00000000000 --- a/l10n/ru_RU/user_webdavauth.po +++ /dev/null @@ -1,36 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AnnaSch , 2013 -# AnnaSch , 2012 -# skoptev , 2012 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-19 08:26-0400\n" -"PO-Revision-Date: 2013-10-18 09:15+0000\n" -"Last-Translator: masensio \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: templates/settings.php:3 -msgid "WebDAV Authentication" -msgstr "" - -#: templates/settings.php:4 -msgid "Address: " -msgstr "" - -#: templates/settings.php:7 -msgid "" -"The user credentials will be sent to this address. This plugin checks the " -"response and will interpret the HTTP statuscodes 401 and 403 as invalid " -"credentials, and all other responses as valid credentials." -msgstr "" diff --git a/lib/l10n/ru_RU.php b/lib/l10n/ru_RU.php deleted file mode 100644 index 23e900721e8..00000000000 --- a/lib/l10n/ru_RU.php +++ /dev/null @@ -1,12 +0,0 @@ - "Помощь", -"Settings" => "Настройки", -"Files" => "Файлы", -"Text" => "Текст", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"_%n day go_::_%n days ago_" => array("","",""), -"_%n month ago_::_%n months ago_" => array("","","") -); -$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php deleted file mode 100644 index 938c0b1642c..00000000000 --- a/settings/l10n/ru_RU.php +++ /dev/null @@ -1,10 +0,0 @@ - "Ошибка", -"Delete" => "Удалить", -"More" => "Подробнее", -"Password" => "Пароль", -"Create" => "Создать", -"Username" => "Имя пользователя" -); -$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; -- cgit v1.2.3 From 203d5d01cabae52373f556d50f2bb541560eb4b0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 14 Jan 2014 13:54:07 +0100 Subject: Use storage_mtime when determining if we can reuse cached data while scanning --- lib/private/files/cache/scanner.php | 2 +- tests/lib/files/cache/updater.php | 2 +- tests/lib/files/etagtest.php | 23 +++++++++++++++++++++++ 3 files changed, 25 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php index a8c069ee99f..92a4c01841b 100644 --- a/lib/private/files/cache/scanner.php +++ b/lib/private/files/cache/scanner.php @@ -122,7 +122,7 @@ class Scanner extends BasicEmitter { $propagateETagChange = true; } // only reuse data if the file hasn't explicitly changed - if (isset($data['mtime']) && isset($cacheData['mtime']) && $data['mtime'] === $cacheData['mtime']) { + if (isset($data['storage_mtime']) && isset($cacheData['storage_mtime']) && $data['storage_mtime'] === $cacheData['storage_mtime']) { if (($reuseExisting & self::REUSE_SIZE) && ($data['size'] === -1)) { $data['size'] = $cacheData['size']; } diff --git a/tests/lib/files/cache/updater.php b/tests/lib/files/cache/updater.php index 91e384e12af..ba103cee675 100644 --- a/tests/lib/files/cache/updater.php +++ b/tests/lib/files/cache/updater.php @@ -88,7 +88,7 @@ class Updater extends \PHPUnit_Framework_TestCase { public function testWrite() { $textSize = strlen("dummy file data\n"); $imageSize = filesize(\OC::$SERVERROOT . '/core/img/logo.png'); - $this->cache->put('foo.txt', array('mtime' => 100)); + $this->cache->put('foo.txt', array('mtime' => 100, 'storage_mtime' => 100)); $rootCachedData = $this->cache->get(''); $this->assertEquals(3 * $textSize + $imageSize, $rootCachedData['size']); diff --git a/tests/lib/files/etagtest.php b/tests/lib/files/etagtest.php index 6c41413c4df..14003896d66 100644 --- a/tests/lib/files/etagtest.php +++ b/tests/lib/files/etagtest.php @@ -11,6 +11,12 @@ namespace Test\Files; use OC\Files\Filesystem; use OCP\Share; +class TemporaryNoTouch extends \OC\Files\Storage\Temporary { + public function touch($path, $mtime = null) { + return false; + } +} + class EtagTest extends \PHPUnit_Framework_TestCase { private $datadir; @@ -68,6 +74,23 @@ class EtagTest extends \PHPUnit_Framework_TestCase { $this->assertEquals($originalEtags, $this->getEtags($files)); } + public function testTouchNotSupported() { + $storage = new TemporaryNoTouch(array()); + $scanner = $storage->getScanner(); + Filesystem::mount($storage, array(), '/test/'); + $past = time() - 100; + $storage->file_put_contents('test', 'foobar'); + $scanner->scan(''); + $view = new \OC\Files\View(''); + $info = $view->getFileInfo('/test/test'); + + $view->touch('/test/test', $past); + $scanner->scanFile('test', \OC\Files\Cache\Scanner::REUSE_ETAG); + + $info2 = $view->getFileInfo('/test/test'); + $this->assertEquals($info['etag'], $info2['etag']); + } + private function getEtags($files) { $etags = array(); foreach ($files as $file) { -- cgit v1.2.3 From 7f68497b39db9528975862a091effe03fc802f91 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 15 Jan 2014 17:11:29 +0100 Subject: error handling in case a requested app doesn't exists --- lib/private/installer.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/private/installer.php b/lib/private/installer.php index 8375b231e9b..835b6b4c01a 100644 --- a/lib/private/installer.php +++ b/lib/private/installer.php @@ -407,6 +407,9 @@ class OC_Installer{ include OC_App::getAppPath($app)."/appinfo/install.php"; } $info=OC_App::getAppInfo($app); + if (is_null($info)) { + return false; + } OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app)); //set remote/public handelers -- cgit v1.2.3 From 350214c6093bbd300102a364f20caa91d23d5fb9 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Sun, 12 Jan 2014 18:57:53 +0100 Subject: Added Javascript unit tests - added karma utility to run jasmine unit tests - added Sinon library (for stubs/mocks/fakeserver) - added a few unit tests for core and files - added autotest-js.sh script --- apps/files/tests/js/filelistSpec.js | 54 + apps/files/tests/js/filesSpec.js | 81 + autotest-js.sh | 37 + build/package.json | 19 + core/js/core.json | 28 + core/js/router.js | 7 +- core/js/tests/lib/sinon-1.7.3.js | 4290 +++++++++++++++++++++++++++++++++++ core/js/tests/specHelper.js | 89 + core/js/tests/specs/coreSpec.js | 70 + lib/base.php | 1 + tests/karma.config.js | 138 ++ 11 files changed, 4812 insertions(+), 2 deletions(-) create mode 100644 apps/files/tests/js/filelistSpec.js create mode 100644 apps/files/tests/js/filesSpec.js create mode 100755 autotest-js.sh create mode 100644 build/package.json create mode 100644 core/js/core.json create mode 100644 core/js/tests/lib/sinon-1.7.3.js create mode 100644 core/js/tests/specHelper.js create mode 100644 core/js/tests/specs/coreSpec.js create mode 100644 tests/karma.config.js (limited to 'lib') diff --git a/apps/files/tests/js/filelistSpec.js b/apps/files/tests/js/filelistSpec.js new file mode 100644 index 00000000000..6b28a02989e --- /dev/null +++ b/apps/files/tests/js/filelistSpec.js @@ -0,0 +1,54 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ +describe('FileList tests', function() { + beforeEach(function() { + // init horrible parameters + $('').append('body'); + $('').append('body'); + }); + afterEach(function() { + $('#dir, #permissions').remove(); + }); + it('generates file element with correct attributes when calling addFile', function() { + var lastMod = new Date(10000); + var $tr = FileList.addFile('testName.txt', 1234, lastMod, false, false, {download_url: 'test/download/url'}); + + expect($tr).toBeDefined(); + expect($tr[0].tagName.toLowerCase()).toEqual('tr'); + expect($tr.attr('data-type')).toEqual('file'); + expect($tr.attr('data-file')).toEqual('testName.txt'); + expect($tr.attr('data-size')).toEqual('1234'); + //expect($tr.attr('data-permissions')).toEqual('31'); + //expect($tr.attr('data-mime')).toEqual('plain/text'); + }); + it('generates dir element with correct attributes when calling addDir', function() { + var lastMod = new Date(10000); + var $tr = FileList.addDir('testFolder', 1234, lastMod, false); + + expect($tr).toBeDefined(); + expect($tr[0].tagName.toLowerCase()).toEqual('tr'); + expect($tr.attr('data-type')).toEqual('dir'); + expect($tr.attr('data-file')).toEqual('testFolder'); + expect($tr.attr('data-size')).toEqual('1234'); + //expect($tr.attr('data-permissions')).toEqual('31'); + //expect($tr.attr('data-mime')).toEqual('httpd/unix-directory'); + }); +}); diff --git a/apps/files/tests/js/filesSpec.js b/apps/files/tests/js/filesSpec.js new file mode 100644 index 00000000000..9d0a2e4f9d7 --- /dev/null +++ b/apps/files/tests/js/filesSpec.js @@ -0,0 +1,81 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ +describe('Files tests', function() { + describe('File name validation', function() { + it('Validates correct file names', function() { + var fileNames = [ + 'boringname', + 'something.with.extension', + 'now with spaces', + '.a', + '..a', + '.dotfile', + 'single\'quote', + ' spaces before', + 'spaces after ', + 'allowed chars including the crazy ones $%&_-^@!,()[]{}=;#', + '汉字也能用', + 'und Ümläüte sind auch willkommen' + ]; + for ( var i = 0; i < fileNames.length; i++ ) { + try { + expect(Files.isFileNameValid(fileNames[i])).toEqual(true); + } + catch (e) { + fail(); + } + } + }); + it('Detects invalid file names', function() { + var fileNames = [ + '', + ' ', + '.', + '..', + 'back\\slash', + 'sl/ash', + 'ltgt', + 'col:on', + 'double"quote', + 'pi|pe', + 'dont?ask?questions?', + 'super*star', + 'new\nline', + ' ..', + '.. ', + '. ', + ' .' + ]; + for ( var i = 0; i < fileNames.length; i++ ) { + var threwException = false; + try { + Files.isFileNameValid(fileNames[i]); + fail(); + } + catch (e) { + threwException = true; + } + expect(threwException).toEqual(true); + } + }); + }); +}); diff --git a/autotest-js.sh b/autotest-js.sh new file mode 100755 index 00000000000..78f4948e7ad --- /dev/null +++ b/autotest-js.sh @@ -0,0 +1,37 @@ +#!/bin/bash +# +# ownCloud +# +# Run JS tests +# +# @author Vincent Petry +# @copyright 2014 Vincent Petry +# +NPM="$(which npm 2>/dev/null)" +PREFIX="build" + +if test -z "$NPM" +then + echo 'Node JS >= 0.8 is required to run the JavaScript tests' >&2 + exit 1 +fi + +# update/install test packages +mkdir -p "$PREFIX" && $NPM install --link --prefix "$PREFIX" || exit 3 + +KARMA="$(which karma 2>/dev/null)" + +# If not installed globally, try local version +if test -z "$KARMA" +then + KARMA="$PREFIX/node_modules/karma/bin/karma" +fi + +if test -z "$KARMA" +then + echo 'Karma module executable not found' >&2 + exit 2 +fi + +KARMA_TESTSUITE="$1" $KARMA start tests/karma.config.js --single-run + diff --git a/build/package.json b/build/package.json new file mode 100644 index 00000000000..238ea6881a5 --- /dev/null +++ b/build/package.json @@ -0,0 +1,19 @@ +{ + "name": "owncloud-js-tests", + "description": "ownCloud tests", + "version": "0.0.1", + "author": { + "name": "Vincent Petry", + "email": "pvince81@owncloud.com" + }, + "private": true, + "homepage": "https://github.com/owncloud/", + "contributors": [], + "dependencies": {}, + "devDependencies": { + "karma": "*", + "karma-jasmine": "*", + "karma-junit-reporter": "*" + }, + "engine": "node >= 0.8" +} diff --git a/core/js/core.json b/core/js/core.json new file mode 100644 index 00000000000..79cfc42f587 --- /dev/null +++ b/core/js/core.json @@ -0,0 +1,28 @@ +{ + "modules": [ + "jquery-1.10.0.min.js", + "jquery-migrate-1.2.1.min.js", + "jquery-ui-1.10.0.custom.js", + "jquery-showpassword.js", + "jquery.infieldlabel.js", + "jquery.placeholder.js", + "jquery-tipsy.js", + "compatibility.js", + "jquery.ocdialog.js", + "oc-dialogs.js", + "js.js", + "octemplate.js", + "eventsource.js", + "config.js", + "multiselect.js", + "search.js", + "router.js", + "oc-requesttoken.js", + "styles.js", + "apps.js", + "fixes.js", + "jquery-ui-2.10.0.custom.js", + "jquery-tipsy.js", + "jquery.ocdialog.js" + ] +} diff --git a/core/js/router.js b/core/js/router.js index 44e7c30602e..e6ef54a1864 100644 --- a/core/js/router.js +++ b/core/js/router.js @@ -3,9 +3,12 @@ OC.Router = { // register your ajax requests to load after the loading of the routes // has finished. otherwise you face problems with race conditions registerLoadedCallback: function(callback){ + if (!this.routes_request){ + return; + } this.routes_request.done(callback); }, - routes_request: $.ajax(OC.router_base_url + '/core/routes.json', { + routes_request: !window.TESTING && $.ajax(OC.router_base_url + '/core/routes.json', { dataType: 'json', success: function(jsondata) { if (jsondata.status === 'success') { @@ -75,4 +78,4 @@ OC.Router = { return OC.router_base_url + url; } -}; +} diff --git a/core/js/tests/lib/sinon-1.7.3.js b/core/js/tests/lib/sinon-1.7.3.js new file mode 100644 index 00000000000..26c4bd9c46b --- /dev/null +++ b/core/js/tests/lib/sinon-1.7.3.js @@ -0,0 +1,4290 @@ +/** + * Sinon.JS 1.7.3, 2013/06/20 + * + * @author Christian Johansen (christian@cjohansen.no) + * @author Contributors: https://github.com/cjohansen/Sinon.JS/blob/master/AUTHORS + * + * (The BSD License) + * + * Copyright (c) 2010-2013, Christian Johansen, christian@cjohansen.no + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * * Neither the name of Christian Johansen nor the names of his contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +this.sinon = (function () { +var buster = (function (setTimeout, B) { + var isNode = typeof require == "function" && typeof module == "object"; + var div = typeof document != "undefined" && document.createElement("div"); + var F = function () {}; + + var buster = { + bind: function bind(obj, methOrProp) { + var method = typeof methOrProp == "string" ? obj[methOrProp] : methOrProp; + var args = Array.prototype.slice.call(arguments, 2); + return function () { + var allArgs = args.concat(Array.prototype.slice.call(arguments)); + return method.apply(obj, allArgs); + }; + }, + + partial: function partial(fn) { + var args = [].slice.call(arguments, 1); + return function () { + return fn.apply(this, args.concat([].slice.call(arguments))); + }; + }, + + create: function create(object) { + F.prototype = object; + return new F(); + }, + + extend: function extend(target) { + if (!target) { return; } + for (var i = 1, l = arguments.length, prop; i < l; ++i) { + for (prop in arguments[i]) { + target[prop] = arguments[i][prop]; + } + } + return target; + }, + + nextTick: function nextTick(callback) { + if (typeof process != "undefined" && process.nextTick) { + return process.nextTick(callback); + } + setTimeout(callback, 0); + }, + + functionName: function functionName(func) { + if (!func) return ""; + if (func.displayName) return func.displayName; + if (func.name) return func.name; + var matches = func.toString().match(/function\s+([^\(]+)/m); + return matches && matches[1] || ""; + }, + + isNode: function isNode(obj) { + if (!div) return false; + try { + obj.appendChild(div); + obj.removeChild(div); + } catch (e) { + return false; + } + return true; + }, + + isElement: function isElement(obj) { + return obj && obj.nodeType === 1 && buster.isNode(obj); + }, + + isArray: function isArray(arr) { + return Object.prototype.toString.call(arr) == "[object Array]"; + }, + + flatten: function flatten(arr) { + var result = [], arr = arr || []; + for (var i = 0, l = arr.length; i < l; ++i) { + result = result.concat(buster.isArray(arr[i]) ? flatten(arr[i]) : arr[i]); + } + return result; + }, + + each: function each(arr, callback) { + for (var i = 0, l = arr.length; i < l; ++i) { + callback(arr[i]); + } + }, + + map: function map(arr, callback) { + var results = []; + for (var i = 0, l = arr.length; i < l; ++i) { + results.push(callback(arr[i])); + } + return results; + }, + + parallel: function parallel(fns, callback) { + function cb(err, res) { + if (typeof callback == "function") { + callback(err, res); + callback = null; + } + } + if (fns.length == 0) { return cb(null, []); } + var remaining = fns.length, results = []; + function makeDone(num) { + return function done(err, result) { + if (err) { return cb(err); } + results[num] = result; + if (--remaining == 0) { cb(null, results); } + }; + } + for (var i = 0, l = fns.length; i < l; ++i) { + fns[i](makeDone(i)); + } + }, + + series: function series(fns, callback) { + function cb(err, res) { + if (typeof callback == "function") { + callback(err, res); + } + } + var remaining = fns.slice(); + var results = []; + function callNext() { + if (remaining.length == 0) return cb(null, results); + var promise = remaining.shift()(next); + if (promise && typeof promise.then == "function") { + promise.then(buster.partial(next, null), next); + } + } + function next(err, result) { + if (err) return cb(err); + results.push(result); + callNext(); + } + callNext(); + }, + + countdown: function countdown(num, done) { + return function () { + if (--num == 0) done(); + }; + } + }; + + if (typeof process === "object" && + typeof require === "function" && typeof module === "object") { + var crypto = require("crypto"); + var path = require("path"); + + buster.tmpFile = function (fileName) { + var hashed = crypto.createHash("sha1"); + hashed.update(fileName); + var tmpfileName = hashed.digest("hex"); + + if (process.platform == "win32") { + return path.join(process.env["TEMP"], tmpfileName); + } else { + return path.join("/tmp", tmpfileName); + } + }; + } + + if (Array.prototype.some) { + buster.some = function (arr, fn, thisp) { + return arr.some(fn, thisp); + }; + } else { + // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/some + buster.some = function (arr, fun, thisp) { + if (arr == null) { throw new TypeError(); } + arr = Object(arr); + var len = arr.length >>> 0; + if (typeof fun !== "function") { throw new TypeError(); } + + for (var i = 0; i < len; i++) { + if (arr.hasOwnProperty(i) && fun.call(thisp, arr[i], i, arr)) { + return true; + } + } + + return false; + }; + } + + if (Array.prototype.filter) { + buster.filter = function (arr, fn, thisp) { + return arr.filter(fn, thisp); + }; + } else { + // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/filter + buster.filter = function (fn, thisp) { + if (this == null) { throw new TypeError(); } + + var t = Object(this); + var len = t.length >>> 0; + if (typeof fn != "function") { throw new TypeError(); } + + var res = []; + for (var i = 0; i < len; i++) { + if (i in t) { + var val = t[i]; // in case fun mutates this + if (fn.call(thisp, val, i, t)) { res.push(val); } + } + } + + return res; + }; + } + + if (isNode) { + module.exports = buster; + buster.eventEmitter = require("./buster-event-emitter"); + Object.defineProperty(buster, "defineVersionGetter", { + get: function () { + return require("./define-version-getter"); + } + }); + } + + return buster.extend(B || {}, buster); +}(setTimeout, buster)); +if (typeof buster === "undefined") { + var buster = {}; +} + +if (typeof module === "object" && typeof require === "function") { + buster = require("buster-core"); +} + +buster.format = buster.format || {}; +buster.format.excludeConstructors = ["Object", /^.$/]; +buster.format.quoteStrings = true; + +buster.format.ascii = (function () { + + var hasOwn = Object.prototype.hasOwnProperty; + + var specialObjects = []; + if (typeof global != "undefined") { + specialObjects.push({ obj: global, value: "[object global]" }); + } + if (typeof document != "undefined") { + specialObjects.push({ obj: document, value: "[object HTMLDocument]" }); + } + if (typeof window != "undefined") { + specialObjects.push({ obj: window, value: "[object Window]" }); + } + + function keys(object) { + var k = Object.keys && Object.keys(object) || []; + + if (k.length == 0) { + for (var prop in object) { + if (hasOwn.call(object, prop)) { + k.push(prop); + } + } + } + + return k.sort(); + } + + function isCircular(object, objects) { + if (typeof object != "object") { + return false; + } + + for (var i = 0, l = objects.length; i < l; ++i) { + if (objects[i] === object) { + return true; + } + } + + return false; + } + + function ascii(object, processed, indent) { + if (typeof object == "string") { + var quote = typeof this.quoteStrings != "boolean" || this.quoteStrings; + return processed || quote ? '"' + object + '"' : object; + } + + if (typeof object == "function" && !(object instanceof RegExp)) { + return ascii.func(object); + } + + processed = processed || []; + + if (isCircular(object, processed)) { + return "[Circular]"; + } + + if (Object.prototype.toString.call(object) == "[object Array]") { + return ascii.array.call(this, object, processed); + } + + if (!object) { + return "" + object; + } + + if (buster.isElement(object)) { + return ascii.element(object); + } + + if (typeof object.toString == "function" && + object.toString !== Object.prototype.toString) { + return object.toString(); + } + + for (var i = 0, l = specialObjects.length; i < l; i++) { + if (object === specialObjects[i].obj) { + return specialObjects[i].value; + } + } + + return ascii.object.call(this, object, processed, indent); + } + + ascii.func = function (func) { + return "function " + buster.functionName(func) + "() {}"; + }; + + ascii.array = function (array, processed) { + processed = processed || []; + processed.push(array); + var pieces = []; + + for (var i = 0, l = array.length; i < l; ++i) { + pieces.push(ascii.call(this, array[i], processed)); + } + + return "[" + pieces.join(", ") + "]"; + }; + + ascii.object = function (object, processed, indent) { + processed = processed || []; + processed.push(object); + indent = indent || 0; + var pieces = [], properties = keys(object), prop, str, obj; + var is = ""; + var length = 3; + + for (var i = 0, l = indent; i < l; ++i) { + is += " "; + } + + for (i = 0, l = properties.length; i < l; ++i) { + prop = properties[i]; + obj = object[prop]; + + if (isCircular(obj, processed)) { + str = "[Circular]"; + } else { + str = ascii.call(this, obj, processed, indent + 2); + } + + str = (/\s/.test(prop) ? '"' + prop + '"' : prop) + ": " + str; + length += str.length; + pieces.push(str); + } + + var cons = ascii.constructorName.call(this, object); + var prefix = cons ? "[" + cons + "] " : "" + + return (length + indent) > 80 ? + prefix + "{\n " + is + pieces.join(",\n " + is) + "\n" + is + "}" : + prefix + "{ " + pieces.join(", ") + " }"; + }; + + ascii.element = function (element) { + var tagName = element.tagName.toLowerCase(); + var attrs = element.attributes, attribute, pairs = [], attrName; + + for (var i = 0, l = attrs.length; i < l; ++i) { + attribute = attrs.item(i); + attrName = attribute.nodeName.toLowerCase().replace("html:", ""); + + if (attrName == "contenteditable" && attribute.nodeValue == "inherit") { + continue; + } + + if (!!attribute.nodeValue) { + pairs.push(attrName + "=\"" + attribute.nodeValue + "\""); + } + } + + var formatted = "<" + tagName + (pairs.length > 0 ? " " : ""); + var content = element.innerHTML; + + if (content.length > 20) { + content = content.substr(0, 20) + "[...]"; + } + + var res = formatted + pairs.join(" ") + ">" + content + ""; + + return res.replace(/ contentEditable="inherit"/, ""); + }; + + ascii.constructorName = function (object) { + var name = buster.functionName(object && object.constructor); + var excludes = this.excludeConstructors || buster.format.excludeConstructors || []; + + for (var i = 0, l = excludes.length; i < l; ++i) { + if (typeof excludes[i] == "string" && excludes[i] == name) { + return ""; + } else if (excludes[i].test && excludes[i].test(name)) { + return ""; + } + } + + return name; + }; + + return ascii; +}()); + +if (typeof module != "undefined") { + module.exports = buster.format; +} +/*jslint eqeqeq: false, onevar: false, forin: true, nomen: false, regexp: false, plusplus: false*/ +/*global module, require, __dirname, document*/ +/** + * Sinon core utilities. For internal use only. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +var sinon = (function (buster) { + var div = typeof document != "undefined" && document.createElement("div"); + var hasOwn = Object.prototype.hasOwnProperty; + + function isDOMNode(obj) { + var success = false; + + try { + obj.appendChild(div); + success = div.parentNode == obj; + } catch (e) { + return false; + } finally { + try { + obj.removeChild(div); + } catch (e) { + // Remove failed, not much we can do about that + } + } + + return success; + } + + function isElement(obj) { + return div && obj && obj.nodeType === 1 && isDOMNode(obj); + } + + function isFunction(obj) { + return typeof obj === "function" || !!(obj && obj.constructor && obj.call && obj.apply); + } + + function mirrorProperties(target, source) { + for (var prop in source) { + if (!hasOwn.call(target, prop)) { + target[prop] = source[prop]; + } + } + } + + function isRestorable (obj) { + return typeof obj === "function" && typeof obj.restore === "function" && obj.restore.sinon; + } + + var sinon = { + wrapMethod: function wrapMethod(object, property, method) { + if (!object) { + throw new TypeError("Should wrap property of object"); + } + + if (typeof method != "function") { + throw new TypeError("Method wrapper should be function"); + } + + var wrappedMethod = object[property]; + + if (!isFunction(wrappedMethod)) { + throw new TypeError("Attempted to wrap " + (typeof wrappedMethod) + " property " + + property + " as function"); + } + + if (wrappedMethod.restore && wrappedMethod.restore.sinon) { + throw new TypeError("Attempted to wrap " + property + " which is already wrapped"); + } + + if (wrappedMethod.calledBefore) { + var verb = !!wrappedMethod.returns ? "stubbed" : "spied on"; + throw new TypeError("Attempted to wrap " + property + " which is already " + verb); + } + + // IE 8 does not support hasOwnProperty on the window object. + var owned = hasOwn.call(object, property); + object[property] = method; + method.displayName = property; + + method.restore = function () { + // For prototype properties try to reset by delete first. + // If this fails (ex: localStorage on mobile safari) then force a reset + // via direct assignment. + if (!owned) { + delete object[property]; + } + if (object[property] === method) { + object[property] = wrappedMethod; + } + }; + + method.restore.sinon = true; + mirrorProperties(method, wrappedMethod); + + return method; + }, + + extend: function extend(target) { + for (var i = 1, l = arguments.length; i < l; i += 1) { + for (var prop in arguments[i]) { + if (arguments[i].hasOwnProperty(prop)) { + target[prop] = arguments[i][prop]; + } + + // DONT ENUM bug, only care about toString + if (arguments[i].hasOwnProperty("toString") && + arguments[i].toString != target.toString) { + target.toString = arguments[i].toString; + } + } + } + + return target; + }, + + create: function create(proto) { + var F = function () {}; + F.prototype = proto; + return new F(); + }, + + deepEqual: function deepEqual(a, b) { + if (sinon.match && sinon.match.isMatcher(a)) { + return a.test(b); + } + if (typeof a != "object" || typeof b != "object") { + return a === b; + } + + if (isElement(a) || isElement(b)) { + return a === b; + } + + if (a === b) { + return true; + } + + if ((a === null && b !== null) || (a !== null && b === null)) { + return false; + } + + var aString = Object.prototype.toString.call(a); + if (aString != Object.prototype.toString.call(b)) { + return false; + } + + if (aString == "[object Array]") { + if (a.length !== b.length) { + return false; + } + + for (var i = 0, l = a.length; i < l; i += 1) { + if (!deepEqual(a[i], b[i])) { + return false; + } + } + + return true; + } + + if (aString == "[object Date]") { + return a.valueOf() === b.valueOf(); + } + + var prop, aLength = 0, bLength = 0; + + for (prop in a) { + aLength += 1; + + if (!deepEqual(a[prop], b[prop])) { + return false; + } + } + + for (prop in b) { + bLength += 1; + } + + return aLength == bLength; + }, + + functionName: function functionName(func) { + var name = func.displayName || func.name; + + // Use function decomposition as a last resort to get function + // name. Does not rely on function decomposition to work - if it + // doesn't debugging will be slightly less informative + // (i.e. toString will say 'spy' rather than 'myFunc'). + if (!name) { + var matches = func.toString().match(/function ([^\s\(]+)/); + name = matches && matches[1]; + } + + return name; + }, + + functionToString: function toString() { + if (this.getCall && this.callCount) { + var thisValue, prop, i = this.callCount; + + while (i--) { + thisValue = this.getCall(i).thisValue; + + for (prop in thisValue) { + if (thisValue[prop] === this) { + return prop; + } + } + } + } + + return this.displayName || "sinon fake"; + }, + + getConfig: function (custom) { + var config = {}; + custom = custom || {}; + var defaults = sinon.defaultConfig; + + for (var prop in defaults) { + if (defaults.hasOwnProperty(prop)) { + config[prop] = custom.hasOwnProperty(prop) ? custom[prop] : defaults[prop]; + } + } + + return config; + }, + + format: function (val) { + return "" + val; + }, + + defaultConfig: { + injectIntoThis: true, + injectInto: null, + properties: ["spy", "stub", "mock", "clock", "server", "requests"], + useFakeTimers: true, + useFakeServer: true + }, + + timesInWords: function timesInWords(count) { + return count == 1 && "once" || + count == 2 && "twice" || + count == 3 && "thrice" || + (count || 0) + " times"; + }, + + calledInOrder: function (spies) { + for (var i = 1, l = spies.length; i < l; i++) { + if (!spies[i - 1].calledBefore(spies[i]) || !spies[i].called) { + return false; + } + } + + return true; + }, + + orderByFirstCall: function (spies) { + return spies.sort(function (a, b) { + // uuid, won't ever be equal + var aCall = a.getCall(0); + var bCall = b.getCall(0); + var aId = aCall && aCall.callId || -1; + var bId = bCall && bCall.callId || -1; + + return aId < bId ? -1 : 1; + }); + }, + + log: function () {}, + + logError: function (label, err) { + var msg = label + " threw exception: " + sinon.log(msg + "[" + err.name + "] " + err.message); + if (err.stack) { sinon.log(err.stack); } + + setTimeout(function () { + err.message = msg + err.message; + throw err; + }, 0); + }, + + typeOf: function (value) { + if (value === null) { + return "null"; + } + else if (value === undefined) { + return "undefined"; + } + var string = Object.prototype.toString.call(value); + return string.substring(8, string.length - 1).toLowerCase(); + }, + + createStubInstance: function (constructor) { + if (typeof constructor !== "function") { + throw new TypeError("The constructor should be a function."); + } + return sinon.stub(sinon.create(constructor.prototype)); + }, + + restore: function (object) { + if (object !== null && typeof object === "object") { + for (var prop in object) { + if (isRestorable(object[prop])) { + object[prop].restore(); + } + } + } + else if (isRestorable(object)) { + object.restore(); + } + } + }; + + var isNode = typeof module == "object" && typeof require == "function"; + + if (isNode) { + try { + buster = { format: require("buster-format") }; + } catch (e) {} + module.exports = sinon; + module.exports.spy = require("./sinon/spy"); + module.exports.stub = require("./sinon/stub"); + module.exports.mock = require("./sinon/mock"); + module.exports.collection = require("./sinon/collection"); + module.exports.assert = require("./sinon/assert"); + module.exports.sandbox = require("./sinon/sandbox"); + module.exports.test = require("./sinon/test"); + module.exports.testCase = require("./sinon/test_case"); + module.exports.assert = require("./sinon/assert"); + module.exports.match = require("./sinon/match"); + } + + if (buster) { + var formatter = sinon.create(buster.format); + formatter.quoteStrings = false; + sinon.format = function () { + return formatter.ascii.apply(formatter, arguments); + }; + } else if (isNode) { + try { + var util = require("util"); + sinon.format = function (value) { + return typeof value == "object" && value.toString === Object.prototype.toString ? util.inspect(value) : value; + }; + } catch (e) { + /* Node, but no util module - would be very old, but better safe than + sorry */ + } + } + + return sinon; +}(typeof buster == "object" && buster)); + +/* @depend ../sinon.js */ +/*jslint eqeqeq: false, onevar: false, plusplus: false*/ +/*global module, require, sinon*/ +/** + * Match functions + * + * @author Maximilian Antoni (mail@maxantoni.de) + * @license BSD + * + * Copyright (c) 2012 Maximilian Antoni + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function assertType(value, type, name) { + var actual = sinon.typeOf(value); + if (actual !== type) { + throw new TypeError("Expected type of " + name + " to be " + + type + ", but was " + actual); + } + } + + var matcher = { + toString: function () { + return this.message; + } + }; + + function isMatcher(object) { + return matcher.isPrototypeOf(object); + } + + function matchObject(expectation, actual) { + if (actual === null || actual === undefined) { + return false; + } + for (var key in expectation) { + if (expectation.hasOwnProperty(key)) { + var exp = expectation[key]; + var act = actual[key]; + if (match.isMatcher(exp)) { + if (!exp.test(act)) { + return false; + } + } else if (sinon.typeOf(exp) === "object") { + if (!matchObject(exp, act)) { + return false; + } + } else if (!sinon.deepEqual(exp, act)) { + return false; + } + } + } + return true; + } + + matcher.or = function (m2) { + if (!isMatcher(m2)) { + throw new TypeError("Matcher expected"); + } + var m1 = this; + var or = sinon.create(matcher); + or.test = function (actual) { + return m1.test(actual) || m2.test(actual); + }; + or.message = m1.message + ".or(" + m2.message + ")"; + return or; + }; + + matcher.and = function (m2) { + if (!isMatcher(m2)) { + throw new TypeError("Matcher expected"); + } + var m1 = this; + var and = sinon.create(matcher); + and.test = function (actual) { + return m1.test(actual) && m2.test(actual); + }; + and.message = m1.message + ".and(" + m2.message + ")"; + return and; + }; + + var match = function (expectation, message) { + var m = sinon.create(matcher); + var type = sinon.typeOf(expectation); + switch (type) { + case "object": + if (typeof expectation.test === "function") { + m.test = function (actual) { + return expectation.test(actual) === true; + }; + m.message = "match(" + sinon.functionName(expectation.test) + ")"; + return m; + } + var str = []; + for (var key in expectation) { + if (expectation.hasOwnProperty(key)) { + str.push(key + ": " + expectation[key]); + } + } + m.test = function (actual) { + return matchObject(expectation, actual); + }; + m.message = "match(" + str.join(", ") + ")"; + break; + case "number": + m.test = function (actual) { + return expectation == actual; + }; + break; + case "string": + m.test = function (actual) { + if (typeof actual !== "string") { + return false; + } + return actual.indexOf(expectation) !== -1; + }; + m.message = "match(\"" + expectation + "\")"; + break; + case "regexp": + m.test = function (actual) { + if (typeof actual !== "string") { + return false; + } + return expectation.test(actual); + }; + break; + case "function": + m.test = expectation; + if (message) { + m.message = message; + } else { + m.message = "match(" + sinon.functionName(expectation) + ")"; + } + break; + default: + m.test = function (actual) { + return sinon.deepEqual(expectation, actual); + }; + } + if (!m.message) { + m.message = "match(" + expectation + ")"; + } + return m; + }; + + match.isMatcher = isMatcher; + + match.any = match(function () { + return true; + }, "any"); + + match.defined = match(function (actual) { + return actual !== null && actual !== undefined; + }, "defined"); + + match.truthy = match(function (actual) { + return !!actual; + }, "truthy"); + + match.falsy = match(function (actual) { + return !actual; + }, "falsy"); + + match.same = function (expectation) { + return match(function (actual) { + return expectation === actual; + }, "same(" + expectation + ")"); + }; + + match.typeOf = function (type) { + assertType(type, "string", "type"); + return match(function (actual) { + return sinon.typeOf(actual) === type; + }, "typeOf(\"" + type + "\")"); + }; + + match.instanceOf = function (type) { + assertType(type, "function", "type"); + return match(function (actual) { + return actual instanceof type; + }, "instanceOf(" + sinon.functionName(type) + ")"); + }; + + function createPropertyMatcher(propertyTest, messagePrefix) { + return function (property, value) { + assertType(property, "string", "property"); + var onlyProperty = arguments.length === 1; + var message = messagePrefix + "(\"" + property + "\""; + if (!onlyProperty) { + message += ", " + value; + } + message += ")"; + return match(function (actual) { + if (actual === undefined || actual === null || + !propertyTest(actual, property)) { + return false; + } + return onlyProperty || sinon.deepEqual(value, actual[property]); + }, message); + }; + } + + match.has = createPropertyMatcher(function (actual, property) { + if (typeof actual === "object") { + return property in actual; + } + return actual[property] !== undefined; + }, "has"); + + match.hasOwn = createPropertyMatcher(function (actual, property) { + return actual.hasOwnProperty(property); + }, "hasOwn"); + + match.bool = match.typeOf("boolean"); + match.number = match.typeOf("number"); + match.string = match.typeOf("string"); + match.object = match.typeOf("object"); + match.func = match.typeOf("function"); + match.array = match.typeOf("array"); + match.regexp = match.typeOf("regexp"); + match.date = match.typeOf("date"); + + if (commonJSModule) { + module.exports = match; + } else { + sinon.match = match; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend match.js + */ +/*jslint eqeqeq: false, onevar: false, plusplus: false*/ +/*global module, require, sinon*/ +/** + * Spy calls + * + * @author Christian Johansen (christian@cjohansen.no) + * @author Maximilian Antoni (mail@maxantoni.de) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + * Copyright (c) 2013 Maximilian Antoni + */ + +var commonJSModule = typeof module == "object" && typeof require == "function"; + +if (!this.sinon && commonJSModule) { + var sinon = require("../sinon"); +} + +(function (sinon) { + function throwYieldError(proxy, text, args) { + var msg = sinon.functionName(proxy) + text; + if (args.length) { + msg += " Received [" + slice.call(args).join(", ") + "]"; + } + throw new Error(msg); + } + + var slice = Array.prototype.slice; + + var callProto = { + calledOn: function calledOn(thisValue) { + if (sinon.match && sinon.match.isMatcher(thisValue)) { + return thisValue.test(this.thisValue); + } + return this.thisValue === thisValue; + }, + + calledWith: function calledWith() { + for (var i = 0, l = arguments.length; i < l; i += 1) { + if (!sinon.deepEqual(arguments[i], this.args[i])) { + return false; + } + } + + return true; + }, + + calledWithMatch: function calledWithMatch() { + for (var i = 0, l = arguments.length; i < l; i += 1) { + var actual = this.args[i]; + var expectation = arguments[i]; + if (!sinon.match || !sinon.match(expectation).test(actual)) { + return false; + } + } + return true; + }, + + calledWithExactly: function calledWithExactly() { + return arguments.length == this.args.length && + this.calledWith.apply(this, arguments); + }, + + notCalledWith: function notCalledWith() { + return !this.calledWith.apply(this, arguments); + }, + + notCalledWithMatch: function notCalledWithMatch() { + return !this.calledWithMatch.apply(this, arguments); + }, + + returned: function returned(value) { + return sinon.deepEqual(value, this.returnValue); + }, + + threw: function threw(error) { + if (typeof error === "undefined" || !this.exception) { + return !!this.exception; + } + + return this.exception === error || this.exception.name === error; + }, + + calledWithNew: function calledWithNew(thisValue) { + return this.thisValue instanceof this.proxy; + }, + + calledBefore: function (other) { + return this.callId < other.callId; + }, + + calledAfter: function (other) { + return this.callId > other.callId; + }, + + callArg: function (pos) { + this.args[pos](); + }, + + callArgOn: function (pos, thisValue) { + this.args[pos].apply(thisValue); + }, + + callArgWith: function (pos) { + this.callArgOnWith.apply(this, [pos, null].concat(slice.call(arguments, 1))); + }, + + callArgOnWith: function (pos, thisValue) { + var args = slice.call(arguments, 2); + this.args[pos].apply(thisValue, args); + }, + + "yield": function () { + this.yieldOn.apply(this, [null].concat(slice.call(arguments, 0))); + }, + + yieldOn: function (thisValue) { + var args = this.args; + for (var i = 0, l = args.length; i < l; ++i) { + if (typeof args[i] === "function") { + args[i].apply(thisValue, slice.call(arguments, 1)); + return; + } + } + throwYieldError(this.proxy, " cannot yield since no callback was passed.", args); + }, + + yieldTo: function (prop) { + this.yieldToOn.apply(this, [prop, null].concat(slice.call(arguments, 1))); + }, + + yieldToOn: function (prop, thisValue) { + var args = this.args; + for (var i = 0, l = args.length; i < l; ++i) { + if (args[i] && typeof args[i][prop] === "function") { + args[i][prop].apply(thisValue, slice.call(arguments, 2)); + return; + } + } + throwYieldError(this.proxy, " cannot yield to '" + prop + + "' since no callback was passed.", args); + }, + + toString: function () { + var callStr = this.proxy.toString() + "("; + var args = []; + + for (var i = 0, l = this.args.length; i < l; ++i) { + args.push(sinon.format(this.args[i])); + } + + callStr = callStr + args.join(", ") + ")"; + + if (typeof this.returnValue != "undefined") { + callStr += " => " + sinon.format(this.returnValue); + } + + if (this.exception) { + callStr += " !" + this.exception.name; + + if (this.exception.message) { + callStr += "(" + this.exception.message + ")"; + } + } + + return callStr; + } + }; + + callProto.invokeCallback = callProto.yield; + + function createSpyCall(spy, thisValue, args, returnValue, exception, id) { + if (typeof id !== "number") { + throw new TypeError("Call id is not a number"); + } + var proxyCall = sinon.create(callProto); + proxyCall.proxy = spy; + proxyCall.thisValue = thisValue; + proxyCall.args = args; + proxyCall.returnValue = returnValue; + proxyCall.exception = exception; + proxyCall.callId = id; + + return proxyCall; + }; + createSpyCall.toString = callProto.toString; // used by mocks + + sinon.spyCall = createSpyCall; +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + */ +/*jslint eqeqeq: false, onevar: false, plusplus: false*/ +/*global module, require, sinon*/ +/** + * Spy functions + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + var push = Array.prototype.push; + var slice = Array.prototype.slice; + var callId = 0; + + function spy(object, property) { + if (!property && typeof object == "function") { + return spy.create(object); + } + + if (!object && !property) { + return spy.create(function () { }); + } + + var method = object[property]; + return sinon.wrapMethod(object, property, spy.create(method)); + } + + function matchingFake(fakes, args, strict) { + if (!fakes) { + return; + } + + var alen = args.length; + + for (var i = 0, l = fakes.length; i < l; i++) { + if (fakes[i].matches(args, strict)) { + return fakes[i]; + } + } + } + + function incrementCallCount() { + this.called = true; + this.callCount += 1; + this.notCalled = false; + this.calledOnce = this.callCount == 1; + this.calledTwice = this.callCount == 2; + this.calledThrice = this.callCount == 3; + } + + function createCallProperties() { + this.firstCall = this.getCall(0); + this.secondCall = this.getCall(1); + this.thirdCall = this.getCall(2); + this.lastCall = this.getCall(this.callCount - 1); + } + + var vars = "a,b,c,d,e,f,g,h,i,j,k,l"; + function createProxy(func) { + // Retain the function length: + var p; + if (func.length) { + eval("p = (function proxy(" + vars.substring(0, func.length * 2 - 1) + + ") { return p.invoke(func, this, slice.call(arguments)); });"); + } + else { + p = function proxy() { + return p.invoke(func, this, slice.call(arguments)); + }; + } + return p; + } + + var uuid = 0; + + // Public API + var spyApi = { + reset: function () { + this.called = false; + this.notCalled = true; + this.calledOnce = false; + this.calledTwice = false; + this.calledThrice = false; + this.callCount = 0; + this.firstCall = null; + this.secondCall = null; + this.thirdCall = null; + this.lastCall = null; + this.args = []; + this.returnValues = []; + this.thisValues = []; + this.exceptions = []; + this.callIds = []; + if (this.fakes) { + for (var i = 0; i < this.fakes.length; i++) { + this.fakes[i].reset(); + } + } + }, + + create: function create(func) { + var name; + + if (typeof func != "function") { + func = function () { }; + } else { + name = sinon.functionName(func); + } + + var proxy = createProxy(func); + + sinon.extend(proxy, spy); + delete proxy.create; + sinon.extend(proxy, func); + + proxy.reset(); + proxy.prototype = func.prototype; + proxy.displayName = name || "spy"; + proxy.toString = sinon.functionToString; + proxy._create = sinon.spy.create; + proxy.id = "spy#" + uuid++; + + return proxy; + }, + + invoke: function invoke(func, thisValue, args) { + var matching = matchingFake(this.fakes, args); + var exception, returnValue; + + incrementCallCount.call(this); + push.call(this.thisValues, thisValue); + push.call(this.args, args); + push.call(this.callIds, callId++); + + try { + if (matching) { + returnValue = matching.invoke(func, thisValue, args); + } else { + returnValue = (this.func || func).apply(thisValue, args); + } + } catch (e) { + push.call(this.returnValues, undefined); + exception = e; + throw e; + } finally { + push.call(this.exceptions, exception); + } + + push.call(this.returnValues, returnValue); + + createCallProperties.call(this); + + return returnValue; + }, + + getCall: function getCall(i) { + if (i < 0 || i >= this.callCount) { + return null; + } + + return sinon.spyCall(this, this.thisValues[i], this.args[i], + this.returnValues[i], this.exceptions[i], + this.callIds[i]); + }, + + calledBefore: function calledBefore(spyFn) { + if (!this.called) { + return false; + } + + if (!spyFn.called) { + return true; + } + + return this.callIds[0] < spyFn.callIds[spyFn.callIds.length - 1]; + }, + + calledAfter: function calledAfter(spyFn) { + if (!this.called || !spyFn.called) { + return false; + } + + return this.callIds[this.callCount - 1] > spyFn.callIds[spyFn.callCount - 1]; + }, + + withArgs: function () { + var args = slice.call(arguments); + + if (this.fakes) { + var match = matchingFake(this.fakes, args, true); + + if (match) { + return match; + } + } else { + this.fakes = []; + } + + var original = this; + var fake = this._create(); + fake.matchingAguments = args; + push.call(this.fakes, fake); + + fake.withArgs = function () { + return original.withArgs.apply(original, arguments); + }; + + for (var i = 0; i < this.args.length; i++) { + if (fake.matches(this.args[i])) { + incrementCallCount.call(fake); + push.call(fake.thisValues, this.thisValues[i]); + push.call(fake.args, this.args[i]); + push.call(fake.returnValues, this.returnValues[i]); + push.call(fake.exceptions, this.exceptions[i]); + push.call(fake.callIds, this.callIds[i]); + } + } + createCallProperties.call(fake); + + return fake; + }, + + matches: function (args, strict) { + var margs = this.matchingAguments; + + if (margs.length <= args.length && + sinon.deepEqual(margs, args.slice(0, margs.length))) { + return !strict || margs.length == args.length; + } + }, + + printf: function (format) { + var spy = this; + var args = slice.call(arguments, 1); + var formatter; + + return (format || "").replace(/%(.)/g, function (match, specifyer) { + formatter = spyApi.formatters[specifyer]; + + if (typeof formatter == "function") { + return formatter.call(null, spy, args); + } else if (!isNaN(parseInt(specifyer), 10)) { + return sinon.format(args[specifyer - 1]); + } + + return "%" + specifyer; + }); + } + }; + + function delegateToCalls(method, matchAny, actual, notCalled) { + spyApi[method] = function () { + if (!this.called) { + if (notCalled) { + return notCalled.apply(this, arguments); + } + return false; + } + + var currentCall; + var matches = 0; + + for (var i = 0, l = this.callCount; i < l; i += 1) { + currentCall = this.getCall(i); + + if (currentCall[actual || method].apply(currentCall, arguments)) { + matches += 1; + + if (matchAny) { + return true; + } + } + } + + return matches === this.callCount; + }; + } + + delegateToCalls("calledOn", true); + delegateToCalls("alwaysCalledOn", false, "calledOn"); + delegateToCalls("calledWith", true); + delegateToCalls("calledWithMatch", true); + delegateToCalls("alwaysCalledWith", false, "calledWith"); + delegateToCalls("alwaysCalledWithMatch", false, "calledWithMatch"); + delegateToCalls("calledWithExactly", true); + delegateToCalls("alwaysCalledWithExactly", false, "calledWithExactly"); + delegateToCalls("neverCalledWith", false, "notCalledWith", + function () { return true; }); + delegateToCalls("neverCalledWithMatch", false, "notCalledWithMatch", + function () { return true; }); + delegateToCalls("threw", true); + delegateToCalls("alwaysThrew", false, "threw"); + delegateToCalls("returned", true); + delegateToCalls("alwaysReturned", false, "returned"); + delegateToCalls("calledWithNew", true); + delegateToCalls("alwaysCalledWithNew", false, "calledWithNew"); + delegateToCalls("callArg", false, "callArgWith", function () { + throw new Error(this.toString() + " cannot call arg since it was not yet invoked."); + }); + spyApi.callArgWith = spyApi.callArg; + delegateToCalls("callArgOn", false, "callArgOnWith", function () { + throw new Error(this.toString() + " cannot call arg since it was not yet invoked."); + }); + spyApi.callArgOnWith = spyApi.callArgOn; + delegateToCalls("yield", false, "yield", function () { + throw new Error(this.toString() + " cannot yield since it was not yet invoked."); + }); + // "invokeCallback" is an alias for "yield" since "yield" is invalid in strict mode. + spyApi.invokeCallback = spyApi.yield; + delegateToCalls("yieldOn", false, "yieldOn", function () { + throw new Error(this.toString() + " cannot yield since it was not yet invoked."); + }); + delegateToCalls("yieldTo", false, "yieldTo", function (property) { + throw new Error(this.toString() + " cannot yield to '" + property + + "' since it was not yet invoked."); + }); + delegateToCalls("yieldToOn", false, "yieldToOn", function (property) { + throw new Error(this.toString() + " cannot yield to '" + property + + "' since it was not yet invoked."); + }); + + spyApi.formatters = { + "c": function (spy) { + return sinon.timesInWords(spy.callCount); + }, + + "n": function (spy) { + return spy.toString(); + }, + + "C": function (spy) { + var calls = []; + + for (var i = 0, l = spy.callCount; i < l; ++i) { + var stringifiedCall = " " + spy.getCall(i).toString(); + if (/\n/.test(calls[i - 1])) { + stringifiedCall = "\n" + stringifiedCall; + } + push.call(calls, stringifiedCall); + } + + return calls.length > 0 ? "\n" + calls.join("\n") : ""; + }, + + "t": function (spy) { + var objects = []; + + for (var i = 0, l = spy.callCount; i < l; ++i) { + push.call(objects, sinon.format(spy.thisValues[i])); + } + + return objects.join(", "); + }, + + "*": function (spy, args) { + var formatted = []; + + for (var i = 0, l = args.length; i < l; ++i) { + push.call(formatted, sinon.format(args[i])); + } + + return formatted.join(", "); + } + }; + + sinon.extend(spy, spyApi); + + spy.spyCall = sinon.spyCall; + + if (commonJSModule) { + module.exports = spy; + } else { + sinon.spy = spy; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend spy.js + */ +/*jslint eqeqeq: false, onevar: false*/ +/*global module, require, sinon*/ +/** + * Stub functions + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function stub(object, property, func) { + if (!!func && typeof func != "function") { + throw new TypeError("Custom stub should be function"); + } + + var wrapper; + + if (func) { + wrapper = sinon.spy && sinon.spy.create ? sinon.spy.create(func) : func; + } else { + wrapper = stub.create(); + } + + if (!object && !property) { + return sinon.stub.create(); + } + + if (!property && !!object && typeof object == "object") { + for (var prop in object) { + if (typeof object[prop] === "function") { + stub(object, prop); + } + } + + return object; + } + + return sinon.wrapMethod(object, property, wrapper); + } + + function getChangingValue(stub, property) { + var index = stub.callCount - 1; + var values = stub[property]; + var prop = index in values ? values[index] : values[values.length - 1]; + stub[property + "Last"] = prop; + + return prop; + } + + function getCallback(stub, args) { + var callArgAt = getChangingValue(stub, "callArgAts"); + + if (callArgAt < 0) { + var callArgProp = getChangingValue(stub, "callArgProps"); + + for (var i = 0, l = args.length; i < l; ++i) { + if (!callArgProp && typeof args[i] == "function") { + return args[i]; + } + + if (callArgProp && args[i] && + typeof args[i][callArgProp] == "function") { + return args[i][callArgProp]; + } + } + + return null; + } + + return args[callArgAt]; + } + + var join = Array.prototype.join; + + function getCallbackError(stub, func, args) { + if (stub.callArgAtsLast < 0) { + var msg; + + if (stub.callArgPropsLast) { + msg = sinon.functionName(stub) + + " expected to yield to '" + stub.callArgPropsLast + + "', but no object with such a property was passed." + } else { + msg = sinon.functionName(stub) + + " expected to yield, but no callback was passed." + } + + if (args.length > 0) { + msg += " Received [" + join.call(args, ", ") + "]"; + } + + return msg; + } + + return "argument at index " + stub.callArgAtsLast + " is not a function: " + func; + } + + var nextTick = (function () { + if (typeof process === "object" && typeof process.nextTick === "function") { + return process.nextTick; + } else if (typeof setImmediate === "function") { + return setImmediate; + } else { + return function (callback) { + setTimeout(callback, 0); + }; + } + })(); + + function callCallback(stub, args) { + if (stub.callArgAts.length > 0) { + var func = getCallback(stub, args); + + if (typeof func != "function") { + throw new TypeError(getCallbackError(stub, func, args)); + } + + var callbackArguments = getChangingValue(stub, "callbackArguments"); + var callbackContext = getChangingValue(stub, "callbackContexts"); + + if (stub.callbackAsync) { + nextTick(function() { + func.apply(callbackContext, callbackArguments); + }); + } else { + func.apply(callbackContext, callbackArguments); + } + } + } + + var uuid = 0; + + sinon.extend(stub, (function () { + var slice = Array.prototype.slice, proto; + + function throwsException(error, message) { + if (typeof error == "string") { + this.exception = new Error(message || ""); + this.exception.name = error; + } else if (!error) { + this.exception = new Error("Error"); + } else { + this.exception = error; + } + + return this; + } + + proto = { + create: function create() { + var functionStub = function () { + + callCallback(functionStub, arguments); + + if (functionStub.exception) { + throw functionStub.exception; + } else if (typeof functionStub.returnArgAt == 'number') { + return arguments[functionStub.returnArgAt]; + } else if (functionStub.returnThis) { + return this; + } + return functionStub.returnValue; + }; + + functionStub.id = "stub#" + uuid++; + var orig = functionStub; + functionStub = sinon.spy.create(functionStub); + functionStub.func = orig; + + functionStub.callArgAts = []; + functionStub.callbackArguments = []; + functionStub.callbackContexts = []; + functionStub.callArgProps = []; + + sinon.extend(functionStub, stub); + functionStub._create = sinon.stub.create; + functionStub.displayName = "stub"; + functionStub.toString = sinon.functionToString; + + return functionStub; + }, + + resetBehavior: function () { + var i; + + this.callArgAts = []; + this.callbackArguments = []; + this.callbackContexts = []; + this.callArgProps = []; + + delete this.returnValue; + delete this.returnArgAt; + this.returnThis = false; + + if (this.fakes) { + for (i = 0; i < this.fakes.length; i++) { + this.fakes[i].resetBehavior(); + } + } + }, + + returns: function returns(value) { + this.returnValue = value; + + return this; + }, + + returnsArg: function returnsArg(pos) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + + this.returnArgAt = pos; + + return this; + }, + + returnsThis: function returnsThis() { + this.returnThis = true; + + return this; + }, + + "throws": throwsException, + throwsException: throwsException, + + callsArg: function callsArg(pos) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + + this.callArgAts.push(pos); + this.callbackArguments.push([]); + this.callbackContexts.push(undefined); + this.callArgProps.push(undefined); + + return this; + }, + + callsArgOn: function callsArgOn(pos, context) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + if (typeof context != "object") { + throw new TypeError("argument context is not an object"); + } + + this.callArgAts.push(pos); + this.callbackArguments.push([]); + this.callbackContexts.push(context); + this.callArgProps.push(undefined); + + return this; + }, + + callsArgWith: function callsArgWith(pos) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + + this.callArgAts.push(pos); + this.callbackArguments.push(slice.call(arguments, 1)); + this.callbackContexts.push(undefined); + this.callArgProps.push(undefined); + + return this; + }, + + callsArgOnWith: function callsArgWith(pos, context) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + if (typeof context != "object") { + throw new TypeError("argument context is not an object"); + } + + this.callArgAts.push(pos); + this.callbackArguments.push(slice.call(arguments, 2)); + this.callbackContexts.push(context); + this.callArgProps.push(undefined); + + return this; + }, + + yields: function () { + this.callArgAts.push(-1); + this.callbackArguments.push(slice.call(arguments, 0)); + this.callbackContexts.push(undefined); + this.callArgProps.push(undefined); + + return this; + }, + + yieldsOn: function (context) { + if (typeof context != "object") { + throw new TypeError("argument context is not an object"); + } + + this.callArgAts.push(-1); + this.callbackArguments.push(slice.call(arguments, 1)); + this.callbackContexts.push(context); + this.callArgProps.push(undefined); + + return this; + }, + + yieldsTo: function (prop) { + this.callArgAts.push(-1); + this.callbackArguments.push(slice.call(arguments, 1)); + this.callbackContexts.push(undefined); + this.callArgProps.push(prop); + + return this; + }, + + yieldsToOn: function (prop, context) { + if (typeof context != "object") { + throw new TypeError("argument context is not an object"); + } + + this.callArgAts.push(-1); + this.callbackArguments.push(slice.call(arguments, 2)); + this.callbackContexts.push(context); + this.callArgProps.push(prop); + + return this; + } + }; + + // create asynchronous versions of callsArg* and yields* methods + for (var method in proto) { + // need to avoid creating anotherasync versions of the newly added async methods + if (proto.hasOwnProperty(method) && + method.match(/^(callsArg|yields|thenYields$)/) && + !method.match(/Async/)) { + proto[method + 'Async'] = (function (syncFnName) { + return function () { + this.callbackAsync = true; + return this[syncFnName].apply(this, arguments); + }; + })(method); + } + } + + return proto; + + }())); + + if (commonJSModule) { + module.exports = stub; + } else { + sinon.stub = stub; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend stub.js + */ +/*jslint eqeqeq: false, onevar: false, nomen: false*/ +/*global module, require, sinon*/ +/** + * Mock functions. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + var push = [].push; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function mock(object) { + if (!object) { + return sinon.expectation.create("Anonymous mock"); + } + + return mock.create(object); + } + + sinon.mock = mock; + + sinon.extend(mock, (function () { + function each(collection, callback) { + if (!collection) { + return; + } + + for (var i = 0, l = collection.length; i < l; i += 1) { + callback(collection[i]); + } + } + + return { + create: function create(object) { + if (!object) { + throw new TypeError("object is null"); + } + + var mockObject = sinon.extend({}, mock); + mockObject.object = object; + delete mockObject.create; + + return mockObject; + }, + + expects: function expects(method) { + if (!method) { + throw new TypeError("method is falsy"); + } + + if (!this.expectations) { + this.expectations = {}; + this.proxies = []; + } + + if (!this.expectations[method]) { + this.expectations[method] = []; + var mockObject = this; + + sinon.wrapMethod(this.object, method, function () { + return mockObject.invokeMethod(method, this, arguments); + }); + + push.call(this.proxies, method); + } + + var expectation = sinon.expectation.create(method); + push.call(this.expectations[method], expectation); + + return expectation; + }, + + restore: function restore() { + var object = this.object; + + each(this.proxies, function (proxy) { + if (typeof object[proxy].restore == "function") { + object[proxy].restore(); + } + }); + }, + + verify: function verify() { + var expectations = this.expectations || {}; + var messages = [], met = []; + + each(this.proxies, function (proxy) { + each(expectations[proxy], function (expectation) { + if (!expectation.met()) { + push.call(messages, expectation.toString()); + } else { + push.call(met, expectation.toString()); + } + }); + }); + + this.restore(); + + if (messages.length > 0) { + sinon.expectation.fail(messages.concat(met).join("\n")); + } else { + sinon.expectation.pass(messages.concat(met).join("\n")); + } + + return true; + }, + + invokeMethod: function invokeMethod(method, thisValue, args) { + var expectations = this.expectations && this.expectations[method]; + var length = expectations && expectations.length || 0, i; + + for (i = 0; i < length; i += 1) { + if (!expectations[i].met() && + expectations[i].allowsCall(thisValue, args)) { + return expectations[i].apply(thisValue, args); + } + } + + var messages = [], available, exhausted = 0; + + for (i = 0; i < length; i += 1) { + if (expectations[i].allowsCall(thisValue, args)) { + available = available || expectations[i]; + } else { + exhausted += 1; + } + push.call(messages, " " + expectations[i].toString()); + } + + if (exhausted === 0) { + return available.apply(thisValue, args); + } + + messages.unshift("Unexpected call: " + sinon.spyCall.toString.call({ + proxy: method, + args: args + })); + + sinon.expectation.fail(messages.join("\n")); + } + }; + }())); + + var times = sinon.timesInWords; + + sinon.expectation = (function () { + var slice = Array.prototype.slice; + var _invoke = sinon.spy.invoke; + + function callCountInWords(callCount) { + if (callCount == 0) { + return "never called"; + } else { + return "called " + times(callCount); + } + } + + function expectedCallCountInWords(expectation) { + var min = expectation.minCalls; + var max = expectation.maxCalls; + + if (typeof min == "number" && typeof max == "number") { + var str = times(min); + + if (min != max) { + str = "at least " + str + " and at most " + times(max); + } + + return str; + } + + if (typeof min == "number") { + return "at least " + times(min); + } + + return "at most " + times(max); + } + + function receivedMinCalls(expectation) { + var hasMinLimit = typeof expectation.minCalls == "number"; + return !hasMinLimit || expectation.callCount >= expectation.minCalls; + } + + function receivedMaxCalls(expectation) { + if (typeof expectation.maxCalls != "number") { + return false; + } + + return expectation.callCount == expectation.maxCalls; + } + + return { + minCalls: 1, + maxCalls: 1, + + create: function create(methodName) { + var expectation = sinon.extend(sinon.stub.create(), sinon.expectation); + delete expectation.create; + expectation.method = methodName; + + return expectation; + }, + + invoke: function invoke(func, thisValue, args) { + this.verifyCallAllowed(thisValue, args); + + return _invoke.apply(this, arguments); + }, + + atLeast: function atLeast(num) { + if (typeof num != "number") { + throw new TypeError("'" + num + "' is not number"); + } + + if (!this.limitsSet) { + this.maxCalls = null; + this.limitsSet = true; + } + + this.minCalls = num; + + return this; + }, + + atMost: function atMost(num) { + if (typeof num != "number") { + throw new TypeError("'" + num + "' is not number"); + } + + if (!this.limitsSet) { + this.minCalls = null; + this.limitsSet = true; + } + + this.maxCalls = num; + + return this; + }, + + never: function never() { + return this.exactly(0); + }, + + once: function once() { + return this.exactly(1); + }, + + twice: function twice() { + return this.exactly(2); + }, + + thrice: function thrice() { + return this.exactly(3); + }, + + exactly: function exactly(num) { + if (typeof num != "number") { + throw new TypeError("'" + num + "' is not a number"); + } + + this.atLeast(num); + return this.atMost(num); + }, + + met: function met() { + return !this.failed && receivedMinCalls(this); + }, + + verifyCallAllowed: function verifyCallAllowed(thisValue, args) { + if (receivedMaxCalls(this)) { + this.failed = true; + sinon.expectation.fail(this.method + " already called " + times(this.maxCalls)); + } + + if ("expectedThis" in this && this.expectedThis !== thisValue) { + sinon.expectation.fail(this.method + " called with " + thisValue + " as thisValue, expected " + + this.expectedThis); + } + + if (!("expectedArguments" in this)) { + return; + } + + if (!args) { + sinon.expectation.fail(this.method + " received no arguments, expected " + + sinon.format(this.expectedArguments)); + } + + if (args.length < this.expectedArguments.length) { + sinon.expectation.fail(this.method + " received too few arguments (" + sinon.format(args) + + "), expected " + sinon.format(this.expectedArguments)); + } + + if (this.expectsExactArgCount && + args.length != this.expectedArguments.length) { + sinon.expectation.fail(this.method + " received too many arguments (" + sinon.format(args) + + "), expected " + sinon.format(this.expectedArguments)); + } + + for (var i = 0, l = this.expectedArguments.length; i < l; i += 1) { + if (!sinon.deepEqual(this.expectedArguments[i], args[i])) { + sinon.expectation.fail(this.method + " received wrong arguments " + sinon.format(args) + + ", expected " + sinon.format(this.expectedArguments)); + } + } + }, + + allowsCall: function allowsCall(thisValue, args) { + if (this.met() && receivedMaxCalls(this)) { + return false; + } + + if ("expectedThis" in this && this.expectedThis !== thisValue) { + return false; + } + + if (!("expectedArguments" in this)) { + return true; + } + + args = args || []; + + if (args.length < this.expectedArguments.length) { + return false; + } + + if (this.expectsExactArgCount && + args.length != this.expectedArguments.length) { + return false; + } + + for (var i = 0, l = this.expectedArguments.length; i < l; i += 1) { + if (!sinon.deepEqual(this.expectedArguments[i], args[i])) { + return false; + } + } + + return true; + }, + + withArgs: function withArgs() { + this.expectedArguments = slice.call(arguments); + return this; + }, + + withExactArgs: function withExactArgs() { + this.withArgs.apply(this, arguments); + this.expectsExactArgCount = true; + return this; + }, + + on: function on(thisValue) { + this.expectedThis = thisValue; + return this; + }, + + toString: function () { + var args = (this.expectedArguments || []).slice(); + + if (!this.expectsExactArgCount) { + push.call(args, "[...]"); + } + + var callStr = sinon.spyCall.toString.call({ + proxy: this.method || "anonymous mock expectation", + args: args + }); + + var message = callStr.replace(", [...", "[, ...") + " " + + expectedCallCountInWords(this); + + if (this.met()) { + return "Expectation met: " + message; + } + + return "Expected " + message + " (" + + callCountInWords(this.callCount) + ")"; + }, + + verify: function verify() { + if (!this.met()) { + sinon.expectation.fail(this.toString()); + } else { + sinon.expectation.pass(this.toString()); + } + + return true; + }, + + pass: function(message) { + sinon.assert.pass(message); + }, + fail: function (message) { + var exception = new Error(message); + exception.name = "ExpectationError"; + + throw exception; + } + }; + }()); + + if (commonJSModule) { + module.exports = mock; + } else { + sinon.mock = mock; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend stub.js + * @depend mock.js + */ +/*jslint eqeqeq: false, onevar: false, forin: true*/ +/*global module, require, sinon*/ +/** + * Collections of stubs, spies and mocks. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + var push = [].push; + var hasOwnProperty = Object.prototype.hasOwnProperty; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function getFakes(fakeCollection) { + if (!fakeCollection.fakes) { + fakeCollection.fakes = []; + } + + return fakeCollection.fakes; + } + + function each(fakeCollection, method) { + var fakes = getFakes(fakeCollection); + + for (var i = 0, l = fakes.length; i < l; i += 1) { + if (typeof fakes[i][method] == "function") { + fakes[i][method](); + } + } + } + + function compact(fakeCollection) { + var fakes = getFakes(fakeCollection); + var i = 0; + while (i < fakes.length) { + fakes.splice(i, 1); + } + } + + var collection = { + verify: function resolve() { + each(this, "verify"); + }, + + restore: function restore() { + each(this, "restore"); + compact(this); + }, + + verifyAndRestore: function verifyAndRestore() { + var exception; + + try { + this.verify(); + } catch (e) { + exception = e; + } + + this.restore(); + + if (exception) { + throw exception; + } + }, + + add: function add(fake) { + push.call(getFakes(this), fake); + return fake; + }, + + spy: function spy() { + return this.add(sinon.spy.apply(sinon, arguments)); + }, + + stub: function stub(object, property, value) { + if (property) { + var original = object[property]; + + if (typeof original != "function") { + if (!hasOwnProperty.call(object, property)) { + throw new TypeError("Cannot stub non-existent own property " + property); + } + + object[property] = value; + + return this.add({ + restore: function () { + object[property] = original; + } + }); + } + } + if (!property && !!object && typeof object == "object") { + var stubbedObj = sinon.stub.apply(sinon, arguments); + + for (var prop in stubbedObj) { + if (typeof stubbedObj[prop] === "function") { + this.add(stubbedObj[prop]); + } + } + + return stubbedObj; + } + + return this.add(sinon.stub.apply(sinon, arguments)); + }, + + mock: function mock() { + return this.add(sinon.mock.apply(sinon, arguments)); + }, + + inject: function inject(obj) { + var col = this; + + obj.spy = function () { + return col.spy.apply(col, arguments); + }; + + obj.stub = function () { + return col.stub.apply(col, arguments); + }; + + obj.mock = function () { + return col.mock.apply(col, arguments); + }; + + return obj; + } + }; + + if (commonJSModule) { + module.exports = collection; + } else { + sinon.collection = collection; + } +}(typeof sinon == "object" && sinon || null)); + +/*jslint eqeqeq: false, plusplus: false, evil: true, onevar: false, browser: true, forin: false*/ +/*global module, require, window*/ +/** + * Fake timer API + * setTimeout + * setInterval + * clearTimeout + * clearInterval + * tick + * reset + * Date + * + * Inspired by jsUnitMockTimeOut from JsUnit + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +if (typeof sinon == "undefined") { + var sinon = {}; +} + +(function (global) { + var id = 1; + + function addTimer(args, recurring) { + if (args.length === 0) { + throw new Error("Function requires at least 1 parameter"); + } + + var toId = id++; + var delay = args[1] || 0; + + if (!this.timeouts) { + this.timeouts = {}; + } + + this.timeouts[toId] = { + id: toId, + func: args[0], + callAt: this.now + delay, + invokeArgs: Array.prototype.slice.call(args, 2) + }; + + if (recurring === true) { + this.timeouts[toId].interval = delay; + } + + return toId; + } + + function parseTime(str) { + if (!str) { + return 0; + } + + var strings = str.split(":"); + var l = strings.length, i = l; + var ms = 0, parsed; + + if (l > 3 || !/^(\d\d:){0,2}\d\d?$/.test(str)) { + throw new Error("tick only understands numbers and 'h:m:s'"); + } + + while (i--) { + parsed = parseInt(strings[i], 10); + + if (parsed >= 60) { + throw new Error("Invalid time " + str); + } + + ms += parsed * Math.pow(60, (l - i - 1)); + } + + return ms * 1000; + } + + function createObject(object) { + var newObject; + + if (Object.create) { + newObject = Object.create(object); + } else { + var F = function () {}; + F.prototype = object; + newObject = new F(); + } + + newObject.Date.clock = newObject; + return newObject; + } + + sinon.clock = { + now: 0, + + create: function create(now) { + var clock = createObject(this); + + if (typeof now == "number") { + clock.now = now; + } + + if (!!now && typeof now == "object") { + throw new TypeError("now should be milliseconds since UNIX epoch"); + } + + return clock; + }, + + setTimeout: function setTimeout(callback, timeout) { + return addTimer.call(this, arguments, false); + }, + + clearTimeout: function clearTimeout(timerId) { + if (!this.timeouts) { + this.timeouts = []; + } + + if (timerId in this.timeouts) { + delete this.timeouts[timerId]; + } + }, + + setInterval: function setInterval(callback, timeout) { + return addTimer.call(this, arguments, true); + }, + + clearInterval: function clearInterval(timerId) { + this.clearTimeout(timerId); + }, + + tick: function tick(ms) { + ms = typeof ms == "number" ? ms : parseTime(ms); + var tickFrom = this.now, tickTo = this.now + ms, previous = this.now; + var timer = this.firstTimerInRange(tickFrom, tickTo); + + var firstException; + while (timer && tickFrom <= tickTo) { + if (this.timeouts[timer.id]) { + tickFrom = this.now = timer.callAt; + try { + this.callTimer(timer); + } catch (e) { + firstException = firstException || e; + } + } + + timer = this.firstTimerInRange(previous, tickTo); + previous = tickFrom; + } + + this.now = tickTo; + + if (firstException) { + throw firstException; + } + + return this.now; + }, + + firstTimerInRange: function (from, to) { + var timer, smallest, originalTimer; + + for (var id in this.timeouts) { + if (this.timeouts.hasOwnProperty(id)) { + if (this.timeouts[id].callAt < from || this.timeouts[id].callAt > to) { + continue; + } + + if (!smallest || this.timeouts[id].callAt < smallest) { + originalTimer = this.timeouts[id]; + smallest = this.timeouts[id].callAt; + + timer = { + func: this.timeouts[id].func, + callAt: this.timeouts[id].callAt, + interval: this.timeouts[id].interval, + id: this.timeouts[id].id, + invokeArgs: this.timeouts[id].invokeArgs + }; + } + } + } + + return timer || null; + }, + + callTimer: function (timer) { + if (typeof timer.interval == "number") { + this.timeouts[timer.id].callAt += timer.interval; + } else { + delete this.timeouts[timer.id]; + } + + try { + if (typeof timer.func == "function") { + timer.func.apply(null, timer.invokeArgs); + } else { + eval(timer.func); + } + } catch (e) { + var exception = e; + } + + if (!this.timeouts[timer.id]) { + if (exception) { + throw exception; + } + return; + } + + if (exception) { + throw exception; + } + }, + + reset: function reset() { + this.timeouts = {}; + }, + + Date: (function () { + var NativeDate = Date; + + function ClockDate(year, month, date, hour, minute, second, ms) { + // Defensive and verbose to avoid potential harm in passing + // explicit undefined when user does not pass argument + switch (arguments.length) { + case 0: + return new NativeDate(ClockDate.clock.now); + case 1: + return new NativeDate(year); + case 2: + return new NativeDate(year, month); + case 3: + return new NativeDate(year, month, date); + case 4: + return new NativeDate(year, month, date, hour); + case 5: + return new NativeDate(year, month, date, hour, minute); + case 6: + return new NativeDate(year, month, date, hour, minute, second); + default: + return new NativeDate(year, month, date, hour, minute, second, ms); + } + } + + return mirrorDateProperties(ClockDate, NativeDate); + }()) + }; + + function mirrorDateProperties(target, source) { + if (source.now) { + target.now = function now() { + return target.clock.now; + }; + } else { + delete target.now; + } + + if (source.toSource) { + target.toSource = function toSource() { + return source.toSource(); + }; + } else { + delete target.toSource; + } + + target.toString = function toString() { + return source.toString(); + }; + + target.prototype = source.prototype; + target.parse = source.parse; + target.UTC = source.UTC; + target.prototype.toUTCString = source.prototype.toUTCString; + return target; + } + + var methods = ["Date", "setTimeout", "setInterval", + "clearTimeout", "clearInterval"]; + + function restore() { + var method; + + for (var i = 0, l = this.methods.length; i < l; i++) { + method = this.methods[i]; + if (global[method].hadOwnProperty) { + global[method] = this["_" + method]; + } else { + delete global[method]; + } + } + + // Prevent multiple executions which will completely remove these props + this.methods = []; + } + + function stubGlobal(method, clock) { + clock[method].hadOwnProperty = Object.prototype.hasOwnProperty.call(global, method); + clock["_" + method] = global[method]; + + if (method == "Date") { + var date = mirrorDateProperties(clock[method], global[method]); + global[method] = date; + } else { + global[method] = function () { + return clock[method].apply(clock, arguments); + }; + + for (var prop in clock[method]) { + if (clock[method].hasOwnProperty(prop)) { + global[method][prop] = clock[method][prop]; + } + } + } + + global[method].clock = clock; + } + + sinon.useFakeTimers = function useFakeTimers(now) { + var clock = sinon.clock.create(now); + clock.restore = restore; + clock.methods = Array.prototype.slice.call(arguments, + typeof now == "number" ? 1 : 0); + + if (clock.methods.length === 0) { + clock.methods = methods; + } + + for (var i = 0, l = clock.methods.length; i < l; i++) { + stubGlobal(clock.methods[i], clock); + } + + return clock; + }; +}(typeof global != "undefined" && typeof global !== "function" ? global : this)); + +sinon.timers = { + setTimeout: setTimeout, + clearTimeout: clearTimeout, + setInterval: setInterval, + clearInterval: clearInterval, + Date: Date +}; + +if (typeof module == "object" && typeof require == "function") { + module.exports = sinon; +} + +/*jslint eqeqeq: false, onevar: false*/ +/*global sinon, module, require, ActiveXObject, XMLHttpRequest, DOMParser*/ +/** + * Minimal Event interface implementation + * + * Original implementation by Sven Fuchs: https://gist.github.com/995028 + * Modifications and tests by Christian Johansen. + * + * @author Sven Fuchs (svenfuchs@artweb-design.de) + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2011 Sven Fuchs, Christian Johansen + */ + +if (typeof sinon == "undefined") { + this.sinon = {}; +} + +(function () { + var push = [].push; + + sinon.Event = function Event(type, bubbles, cancelable, target) { + this.initEvent(type, bubbles, cancelable, target); + }; + + sinon.Event.prototype = { + initEvent: function(type, bubbles, cancelable, target) { + this.type = type; + this.bubbles = bubbles; + this.cancelable = cancelable; + this.target = target; + }, + + stopPropagation: function () {}, + + preventDefault: function () { + this.defaultPrevented = true; + } + }; + + sinon.EventTarget = { + addEventListener: function addEventListener(event, listener, useCapture) { + this.eventListeners = this.eventListeners || {}; + this.eventListeners[event] = this.eventListeners[event] || []; + push.call(this.eventListeners[event], listener); + }, + + removeEventListener: function removeEventListener(event, listener, useCapture) { + var listeners = this.eventListeners && this.eventListeners[event] || []; + + for (var i = 0, l = listeners.length; i < l; ++i) { + if (listeners[i] == listener) { + return listeners.splice(i, 1); + } + } + }, + + dispatchEvent: function dispatchEvent(event) { + var type = event.type; + var listeners = this.eventListeners && this.eventListeners[type] || []; + + for (var i = 0; i < listeners.length; i++) { + if (typeof listeners[i] == "function") { + listeners[i].call(this, event); + } else { + listeners[i].handleEvent(event); + } + } + + return !!event.defaultPrevented; + } + }; +}()); + +/** + * @depend ../../sinon.js + * @depend event.js + */ +/*jslint eqeqeq: false, onevar: false*/ +/*global sinon, module, require, ActiveXObject, XMLHttpRequest, DOMParser*/ +/** + * Fake XMLHttpRequest object + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +if (typeof sinon == "undefined") { + this.sinon = {}; +} +sinon.xhr = { XMLHttpRequest: this.XMLHttpRequest }; + +// wrapper for global +(function(global) { + var xhr = sinon.xhr; + xhr.GlobalXMLHttpRequest = global.XMLHttpRequest; + xhr.GlobalActiveXObject = global.ActiveXObject; + xhr.supportsActiveX = typeof xhr.GlobalActiveXObject != "undefined"; + xhr.supportsXHR = typeof xhr.GlobalXMLHttpRequest != "undefined"; + xhr.workingXHR = xhr.supportsXHR ? xhr.GlobalXMLHttpRequest : xhr.supportsActiveX + ? function() { return new xhr.GlobalActiveXObject("MSXML2.XMLHTTP.3.0") } : false; + + /*jsl:ignore*/ + var unsafeHeaders = { + "Accept-Charset": true, + "Accept-Encoding": true, + "Connection": true, + "Content-Length": true, + "Cookie": true, + "Cookie2": true, + "Content-Transfer-Encoding": true, + "Date": true, + "Expect": true, + "Host": true, + "Keep-Alive": true, + "Referer": true, + "TE": true, + "Trailer": true, + "Transfer-Encoding": true, + "Upgrade": true, + "User-Agent": true, + "Via": true + }; + /*jsl:end*/ + + function FakeXMLHttpRequest() { + this.readyState = FakeXMLHttpRequest.UNSENT; + this.requestHeaders = {}; + this.requestBody = null; + this.status = 0; + this.statusText = ""; + + var xhr = this; + var events = ["loadstart", "load", "abort", "loadend"]; + + function addEventListener(eventName) { + xhr.addEventListener(eventName, function (event) { + var listener = xhr["on" + eventName]; + + if (listener && typeof listener == "function") { + listener(event); + } + }); + } + + for (var i = events.length - 1; i >= 0; i--) { + addEventListener(events[i]); + } + + if (typeof FakeXMLHttpRequest.onCreate == "function") { + FakeXMLHttpRequest.onCreate(this); + } + } + + function verifyState(xhr) { + if (xhr.readyState !== FakeXMLHttpRequest.OPENED) { + throw new Error("INVALID_STATE_ERR"); + } + + if (xhr.sendFlag) { + throw new Error("INVALID_STATE_ERR"); + } + } + + // filtering to enable a white-list version of Sinon FakeXhr, + // where whitelisted requests are passed through to real XHR + function each(collection, callback) { + if (!collection) return; + for (var i = 0, l = collection.length; i < l; i += 1) { + callback(collection[i]); + } + } + function some(collection, callback) { + for (var index = 0; index < collection.length; index++) { + if(callback(collection[index]) === true) return true; + }; + return false; + } + // largest arity in XHR is 5 - XHR#open + var apply = function(obj,method,args) { + switch(args.length) { + case 0: return obj[method](); + case 1: return obj[method](args[0]); + case 2: return obj[method](args[0],args[1]); + case 3: return obj[method](args[0],args[1],args[2]); + case 4: return obj[method](args[0],args[1],args[2],args[3]); + case 5: return obj[method](args[0],args[1],args[2],args[3],args[4]); + }; + }; + + FakeXMLHttpRequest.filters = []; + FakeXMLHttpRequest.addFilter = function(fn) { + this.filters.push(fn) + }; + var IE6Re = /MSIE 6/; + FakeXMLHttpRequest.defake = function(fakeXhr,xhrArgs) { + var xhr = new sinon.xhr.workingXHR(); + each(["open","setRequestHeader","send","abort","getResponseHeader", + "getAllResponseHeaders","addEventListener","overrideMimeType","removeEventListener"], + function(method) { + fakeXhr[method] = function() { + return apply(xhr,method,arguments); + }; + }); + + var copyAttrs = function(args) { + each(args, function(attr) { + try { + fakeXhr[attr] = xhr[attr] + } catch(e) { + if(!IE6Re.test(navigator.userAgent)) throw e; + } + }); + }; + + var stateChange = function() { + fakeXhr.readyState = xhr.readyState; + if(xhr.readyState >= FakeXMLHttpRequest.HEADERS_RECEIVED) { + copyAttrs(["status","statusText"]); + } + if(xhr.readyState >= FakeXMLHttpRequest.LOADING) { + copyAttrs(["responseText"]); + } + if(xhr.readyState === FakeXMLHttpRequest.DONE) { + copyAttrs(["responseXML"]); + } + if(fakeXhr.onreadystatechange) fakeXhr.onreadystatechange.call(fakeXhr); + }; + if(xhr.addEventListener) { + for(var event in fakeXhr.eventListeners) { + if(fakeXhr.eventListeners.hasOwnProperty(event)) { + each(fakeXhr.eventListeners[event],function(handler) { + xhr.addEventListener(event, handler); + }); + } + } + xhr.addEventListener("readystatechange",stateChange); + } else { + xhr.onreadystatechange = stateChange; + } + apply(xhr,"open",xhrArgs); + }; + FakeXMLHttpRequest.useFilters = false; + + function verifyRequestSent(xhr) { + if (xhr.readyState == FakeXMLHttpRequest.DONE) { + throw new Error("Request done"); + } + } + + function verifyHeadersReceived(xhr) { + if (xhr.async && xhr.readyState != FakeXMLHttpRequest.HEADERS_RECEIVED) { + throw new Error("No headers received"); + } + } + + function verifyResponseBodyType(body) { + if (typeof body != "string") { + var error = new Error("Attempted to respond to fake XMLHttpRequest with " + + body + ", which is not a string."); + error.name = "InvalidBodyException"; + throw error; + } + } + + sinon.extend(FakeXMLHttpRequest.prototype, sinon.EventTarget, { + async: true, + + open: function open(method, url, async, username, password) { + this.method = method; + this.url = url; + this.async = typeof async == "boolean" ? async : true; + this.username = username; + this.password = password; + this.responseText = null; + this.responseXML = null; + this.requestHeaders = {}; + this.sendFlag = false; + if(sinon.FakeXMLHttpRequest.useFilters === true) { + var xhrArgs = arguments; + var defake = some(FakeXMLHttpRequest.filters,function(filter) { + return filter.apply(this,xhrArgs) + }); + if (defake) { + return sinon.FakeXMLHttpRequest.defake(this,arguments); + } + } + this.readyStateChange(FakeXMLHttpRequest.OPENED); + }, + + readyStateChange: function readyStateChange(state) { + this.readyState = state; + + if (typeof this.onreadystatechange == "function") { + try { + this.onreadystatechange(); + } catch (e) { + sinon.logError("Fake XHR onreadystatechange handler", e); + } + } + + this.dispatchEvent(new sinon.Event("readystatechange")); + + switch (this.readyState) { + case FakeXMLHttpRequest.DONE: + this.dispatchEvent(new sinon.Event("load", false, false, this)); + this.dispatchEvent(new sinon.Event("loadend", false, false, this)); + break; + } + }, + + setRequestHeader: function setRequestHeader(header, value) { + verifyState(this); + + if (unsafeHeaders[header] || /^(Sec-|Proxy-)/.test(header)) { + throw new Error("Refused to set unsafe header \"" + header + "\""); + } + + if (this.requestHeaders[header]) { + this.requestHeaders[header] += "," + value; + } else { + this.requestHeaders[header] = value; + } + }, + + // Helps testing + setResponseHeaders: function setResponseHeaders(headers) { + this.responseHeaders = {}; + + for (var header in headers) { + if (headers.hasOwnProperty(header)) { + this.responseHeaders[header] = headers[header]; + } + } + + if (this.async) { + this.readyStateChange(FakeXMLHttpRequest.HEADERS_RECEIVED); + } else { + this.readyState = FakeXMLHttpRequest.HEADERS_RECEIVED; + } + }, + + // Currently treats ALL data as a DOMString (i.e. no Document) + send: function send(data) { + verifyState(this); + + if (!/^(get|head)$/i.test(this.method)) { + if (this.requestHeaders["Content-Type"]) { + var value = this.requestHeaders["Content-Type"].split(";"); + this.requestHeaders["Content-Type"] = value[0] + ";charset=utf-8"; + } else { + this.requestHeaders["Content-Type"] = "text/plain;charset=utf-8"; + } + + this.requestBody = data; + } + + this.errorFlag = false; + this.sendFlag = this.async; + this.readyStateChange(FakeXMLHttpRequest.OPENED); + + if (typeof this.onSend == "function") { + this.onSend(this); + } + + this.dispatchEvent(new sinon.Event("loadstart", false, false, this)); + }, + + abort: function abort() { + this.aborted = true; + this.responseText = null; + this.errorFlag = true; + this.requestHeaders = {}; + + if (this.readyState > sinon.FakeXMLHttpRequest.UNSENT && this.sendFlag) { + this.readyStateChange(sinon.FakeXMLHttpRequest.DONE); + this.sendFlag = false; + } + + this.readyState = sinon.FakeXMLHttpRequest.UNSENT; + + this.dispatchEvent(new sinon.Event("abort", false, false, this)); + if (typeof this.onerror === "function") { + this.onerror(); + } + }, + + getResponseHeader: function getResponseHeader(header) { + if (this.readyState < FakeXMLHttpRequest.HEADERS_RECEIVED) { + return null; + } + + if (/^Set-Cookie2?$/i.test(header)) { + return null; + } + + header = header.toLowerCase(); + + for (var h in this.responseHeaders) { + if (h.toLowerCase() == header) { + return this.responseHeaders[h]; + } + } + + return null; + }, + + getAllResponseHeaders: function getAllResponseHeaders() { + if (this.readyState < FakeXMLHttpRequest.HEADERS_RECEIVED) { + return ""; + } + + var headers = ""; + + for (var header in this.responseHeaders) { + if (this.responseHeaders.hasOwnProperty(header) && + !/^Set-Cookie2?$/i.test(header)) { + headers += header + ": " + this.responseHeaders[header] + "\r\n"; + } + } + + return headers; + }, + + setResponseBody: function setResponseBody(body) { + verifyRequestSent(this); + verifyHeadersReceived(this); + verifyResponseBodyType(body); + + var chunkSize = this.chunkSize || 10; + var index = 0; + this.responseText = ""; + + do { + if (this.async) { + this.readyStateChange(FakeXMLHttpRequest.LOADING); + } + + this.responseText += body.substring(index, index + chunkSize); + index += chunkSize; + } while (index < body.length); + + var type = this.getResponseHeader("Content-Type"); + + if (this.responseText && + (!type || /(text\/xml)|(application\/xml)|(\+xml)/.test(type))) { + try { + this.responseXML = FakeXMLHttpRequest.parseXML(this.responseText); + } catch (e) { + // Unable to parse XML - no biggie + } + } + + if (this.async) { + this.readyStateChange(FakeXMLHttpRequest.DONE); + } else { + this.readyState = FakeXMLHttpRequest.DONE; + } + }, + + respond: function respond(status, headers, body) { + this.setResponseHeaders(headers || {}); + this.status = typeof status == "number" ? status : 200; + this.statusText = FakeXMLHttpRequest.statusCodes[this.status]; + this.setResponseBody(body || ""); + if (typeof this.onload === "function"){ + this.onload(); + } + + } + }); + + sinon.extend(FakeXMLHttpRequest, { + UNSENT: 0, + OPENED: 1, + HEADERS_RECEIVED: 2, + LOADING: 3, + DONE: 4 + }); + + // Borrowed from JSpec + FakeXMLHttpRequest.parseXML = function parseXML(text) { + var xmlDoc; + + if (typeof DOMParser != "undefined") { + var parser = new DOMParser(); + xmlDoc = parser.parseFromString(text, "text/xml"); + } else { + xmlDoc = new ActiveXObject("Microsoft.XMLDOM"); + xmlDoc.async = "false"; + xmlDoc.loadXML(text); + } + + return xmlDoc; + }; + + FakeXMLHttpRequest.statusCodes = { + 100: "Continue", + 101: "Switching Protocols", + 200: "OK", + 201: "Created", + 202: "Accepted", + 203: "Non-Authoritative Information", + 204: "No Content", + 205: "Reset Content", + 206: "Partial Content", + 300: "Multiple Choice", + 301: "Moved Permanently", + 302: "Found", + 303: "See Other", + 304: "Not Modified", + 305: "Use Proxy", + 307: "Temporary Redirect", + 400: "Bad Request", + 401: "Unauthorized", + 402: "Payment Required", + 403: "Forbidden", + 404: "Not Found", + 405: "Method Not Allowed", + 406: "Not Acceptable", + 407: "Proxy Authentication Required", + 408: "Request Timeout", + 409: "Conflict", + 410: "Gone", + 411: "Length Required", + 412: "Precondition Failed", + 413: "Request Entity Too Large", + 414: "Request-URI Too Long", + 415: "Unsupported Media Type", + 416: "Requested Range Not Satisfiable", + 417: "Expectation Failed", + 422: "Unprocessable Entity", + 500: "Internal Server Error", + 501: "Not Implemented", + 502: "Bad Gateway", + 503: "Service Unavailable", + 504: "Gateway Timeout", + 505: "HTTP Version Not Supported" + }; + + sinon.useFakeXMLHttpRequest = function () { + sinon.FakeXMLHttpRequest.restore = function restore(keepOnCreate) { + if (xhr.supportsXHR) { + global.XMLHttpRequest = xhr.GlobalXMLHttpRequest; + } + + if (xhr.supportsActiveX) { + global.ActiveXObject = xhr.GlobalActiveXObject; + } + + delete sinon.FakeXMLHttpRequest.restore; + + if (keepOnCreate !== true) { + delete sinon.FakeXMLHttpRequest.onCreate; + } + }; + if (xhr.supportsXHR) { + global.XMLHttpRequest = sinon.FakeXMLHttpRequest; + } + + if (xhr.supportsActiveX) { + global.ActiveXObject = function ActiveXObject(objId) { + if (objId == "Microsoft.XMLHTTP" || /^Msxml2\.XMLHTTP/i.test(objId)) { + + return new sinon.FakeXMLHttpRequest(); + } + + return new xhr.GlobalActiveXObject(objId); + }; + } + + return sinon.FakeXMLHttpRequest; + }; + + sinon.FakeXMLHttpRequest = FakeXMLHttpRequest; +})(this); + +if (typeof module == "object" && typeof require == "function") { + module.exports = sinon; +} + +/** + * @depend fake_xml_http_request.js + */ +/*jslint eqeqeq: false, onevar: false, regexp: false, plusplus: false*/ +/*global module, require, window*/ +/** + * The Sinon "server" mimics a web server that receives requests from + * sinon.FakeXMLHttpRequest and provides an API to respond to those requests, + * both synchronously and asynchronously. To respond synchronuously, canned + * answers have to be provided upfront. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +if (typeof sinon == "undefined") { + var sinon = {}; +} + +sinon.fakeServer = (function () { + var push = [].push; + function F() {} + + function create(proto) { + F.prototype = proto; + return new F(); + } + + function responseArray(handler) { + var response = handler; + + if (Object.prototype.toString.call(handler) != "[object Array]") { + response = [200, {}, handler]; + } + + if (typeof response[2] != "string") { + throw new TypeError("Fake server response body should be string, but was " + + typeof response[2]); + } + + return response; + } + + var wloc = typeof window !== "undefined" ? window.location : {}; + var rCurrLoc = new RegExp("^" + wloc.protocol + "//" + wloc.host); + + function matchOne(response, reqMethod, reqUrl) { + var rmeth = response.method; + var matchMethod = !rmeth || rmeth.toLowerCase() == reqMethod.toLowerCase(); + var url = response.url; + var matchUrl = !url || url == reqUrl || (typeof url.test == "function" && url.test(reqUrl)); + + return matchMethod && matchUrl; + } + + function match(response, request) { + var requestMethod = this.getHTTPMethod(request); + var requestUrl = request.url; + + if (!/^https?:\/\//.test(requestUrl) || rCurrLoc.test(requestUrl)) { + requestUrl = requestUrl.replace(rCurrLoc, ""); + } + + if (matchOne(response, this.getHTTPMethod(request), requestUrl)) { + if (typeof response.response == "function") { + var ru = response.url; + var args = [request].concat(!ru ? [] : requestUrl.match(ru).slice(1)); + return response.response.apply(response, args); + } + + return true; + } + + return false; + } + + function log(response, request) { + var str; + + str = "Request:\n" + sinon.format(request) + "\n\n"; + str += "Response:\n" + sinon.format(response) + "\n\n"; + + sinon.log(str); + } + + return { + create: function () { + var server = create(this); + this.xhr = sinon.useFakeXMLHttpRequest(); + server.requests = []; + + this.xhr.onCreate = function (xhrObj) { + server.addRequest(xhrObj); + }; + + return server; + }, + + addRequest: function addRequest(xhrObj) { + var server = this; + push.call(this.requests, xhrObj); + + xhrObj.onSend = function () { + server.handleRequest(this); + }; + + if (this.autoRespond && !this.responding) { + setTimeout(function () { + server.responding = false; + server.respond(); + }, this.autoRespondAfter || 10); + + this.responding = true; + } + }, + + getHTTPMethod: function getHTTPMethod(request) { + if (this.fakeHTTPMethods && /post/i.test(request.method)) { + var matches = (request.requestBody || "").match(/_method=([^\b;]+)/); + return !!matches ? matches[1] : request.method; + } + + return request.method; + }, + + handleRequest: function handleRequest(xhr) { + if (xhr.async) { + if (!this.queue) { + this.queue = []; + } + + push.call(this.queue, xhr); + } else { + this.processRequest(xhr); + } + }, + + respondWith: function respondWith(method, url, body) { + if (arguments.length == 1 && typeof method != "function") { + this.response = responseArray(method); + return; + } + + if (!this.responses) { this.responses = []; } + + if (arguments.length == 1) { + body = method; + url = method = null; + } + + if (arguments.length == 2) { + body = url; + url = method; + method = null; + } + + push.call(this.responses, { + method: method, + url: url, + response: typeof body == "function" ? body : responseArray(body) + }); + }, + + respond: function respond() { + if (arguments.length > 0) this.respondWith.apply(this, arguments); + var queue = this.queue || []; + var request; + + while(request = queue.shift()) { + this.processRequest(request); + } + }, + + processRequest: function processRequest(request) { + try { + if (request.aborted) { + return; + } + + var response = this.response || [404, {}, ""]; + + if (this.responses) { + for (var i = 0, l = this.responses.length; i < l; i++) { + if (match.call(this, this.responses[i], request)) { + response = this.responses[i].response; + break; + } + } + } + + if (request.readyState != 4) { + log(response, request); + + request.respond(response[0], response[1], response[2]); + } + } catch (e) { + sinon.logError("Fake server request processing", e); + } + }, + + restore: function restore() { + return this.xhr.restore && this.xhr.restore.apply(this.xhr, arguments); + } + }; +}()); + +if (typeof module == "object" && typeof require == "function") { + module.exports = sinon; +} + +/** + * @depend fake_server.js + * @depend fake_timers.js + */ +/*jslint browser: true, eqeqeq: false, onevar: false*/ +/*global sinon*/ +/** + * Add-on for sinon.fakeServer that automatically handles a fake timer along with + * the FakeXMLHttpRequest. The direct inspiration for this add-on is jQuery + * 1.3.x, which does not use xhr object's onreadystatehandler at all - instead, + * it polls the object for completion with setInterval. Dispite the direct + * motivation, there is nothing jQuery-specific in this file, so it can be used + * in any environment where the ajax implementation depends on setInterval or + * setTimeout. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function () { + function Server() {} + Server.prototype = sinon.fakeServer; + + sinon.fakeServerWithClock = new Server(); + + sinon.fakeServerWithClock.addRequest = function addRequest(xhr) { + if (xhr.async) { + if (typeof setTimeout.clock == "object") { + this.clock = setTimeout.clock; + } else { + this.clock = sinon.useFakeTimers(); + this.resetClock = true; + } + + if (!this.longestTimeout) { + var clockSetTimeout = this.clock.setTimeout; + var clockSetInterval = this.clock.setInterval; + var server = this; + + this.clock.setTimeout = function (fn, timeout) { + server.longestTimeout = Math.max(timeout, server.longestTimeout || 0); + + return clockSetTimeout.apply(this, arguments); + }; + + this.clock.setInterval = function (fn, timeout) { + server.longestTimeout = Math.max(timeout, server.longestTimeout || 0); + + return clockSetInterval.apply(this, arguments); + }; + } + } + + return sinon.fakeServer.addRequest.call(this, xhr); + }; + + sinon.fakeServerWithClock.respond = function respond() { + var returnVal = sinon.fakeServer.respond.apply(this, arguments); + + if (this.clock) { + this.clock.tick(this.longestTimeout || 0); + this.longestTimeout = 0; + + if (this.resetClock) { + this.clock.restore(); + this.resetClock = false; + } + } + + return returnVal; + }; + + sinon.fakeServerWithClock.restore = function restore() { + if (this.clock) { + this.clock.restore(); + } + + return sinon.fakeServer.restore.apply(this, arguments); + }; +}()); + +/** + * @depend ../sinon.js + * @depend collection.js + * @depend util/fake_timers.js + * @depend util/fake_server_with_clock.js + */ +/*jslint eqeqeq: false, onevar: false, plusplus: false*/ +/*global require, module*/ +/** + * Manages fake collections as well as fake utilities such as Sinon's + * timers and fake XHR implementation in one convenient object. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +if (typeof module == "object" && typeof require == "function") { + var sinon = require("../sinon"); + sinon.extend(sinon, require("./util/fake_timers")); +} + +(function () { + var push = [].push; + + function exposeValue(sandbox, config, key, value) { + if (!value) { + return; + } + + if (config.injectInto) { + config.injectInto[key] = value; + } else { + push.call(sandbox.args, value); + } + } + + function prepareSandboxFromConfig(config) { + var sandbox = sinon.create(sinon.sandbox); + + if (config.useFakeServer) { + if (typeof config.useFakeServer == "object") { + sandbox.serverPrototype = config.useFakeServer; + } + + sandbox.useFakeServer(); + } + + if (config.useFakeTimers) { + if (typeof config.useFakeTimers == "object") { + sandbox.useFakeTimers.apply(sandbox, config.useFakeTimers); + } else { + sandbox.useFakeTimers(); + } + } + + return sandbox; + } + + sinon.sandbox = sinon.extend(sinon.create(sinon.collection), { + useFakeTimers: function useFakeTimers() { + this.clock = sinon.useFakeTimers.apply(sinon, arguments); + + return this.add(this.clock); + }, + + serverPrototype: sinon.fakeServer, + + useFakeServer: function useFakeServer() { + var proto = this.serverPrototype || sinon.fakeServer; + + if (!proto || !proto.create) { + return null; + } + + this.server = proto.create(); + return this.add(this.server); + }, + + inject: function (obj) { + sinon.collection.inject.call(this, obj); + + if (this.clock) { + obj.clock = this.clock; + } + + if (this.server) { + obj.server = this.server; + obj.requests = this.server.requests; + } + + return obj; + }, + + create: function (config) { + if (!config) { + return sinon.create(sinon.sandbox); + } + + var sandbox = prepareSandboxFromConfig(config); + sandbox.args = sandbox.args || []; + var prop, value, exposed = sandbox.inject({}); + + if (config.properties) { + for (var i = 0, l = config.properties.length; i < l; i++) { + prop = config.properties[i]; + value = exposed[prop] || prop == "sandbox" && sandbox; + exposeValue(sandbox, config, prop, value); + } + } else { + exposeValue(sandbox, config, "sandbox", value); + } + + return sandbox; + } + }); + + sinon.sandbox.useFakeXMLHttpRequest = sinon.sandbox.useFakeServer; + + if (typeof module == "object" && typeof require == "function") { + module.exports = sinon.sandbox; + } +}()); + +/** + * @depend ../sinon.js + * @depend stub.js + * @depend mock.js + * @depend sandbox.js + */ +/*jslint eqeqeq: false, onevar: false, forin: true, plusplus: false*/ +/*global module, require, sinon*/ +/** + * Test function, sandboxes fakes + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function test(callback) { + var type = typeof callback; + + if (type != "function") { + throw new TypeError("sinon.test needs to wrap a test function, got " + type); + } + + return function () { + var config = sinon.getConfig(sinon.config); + config.injectInto = config.injectIntoThis && this || config.injectInto; + var sandbox = sinon.sandbox.create(config); + var exception, result; + var args = Array.prototype.slice.call(arguments).concat(sandbox.args); + + try { + result = callback.apply(this, args); + } catch (e) { + exception = e; + } + + if (typeof exception !== "undefined") { + sandbox.restore(); + throw exception; + } + else { + sandbox.verifyAndRestore(); + } + + return result; + }; + } + + test.config = { + injectIntoThis: true, + injectInto: null, + properties: ["spy", "stub", "mock", "clock", "server", "requests"], + useFakeTimers: true, + useFakeServer: true + }; + + if (commonJSModule) { + module.exports = test; + } else { + sinon.test = test; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend test.js + */ +/*jslint eqeqeq: false, onevar: false, eqeqeq: false*/ +/*global module, require, sinon*/ +/** + * Test case, sandboxes all test functions + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon || !Object.prototype.hasOwnProperty) { + return; + } + + function createTest(property, setUp, tearDown) { + return function () { + if (setUp) { + setUp.apply(this, arguments); + } + + var exception, result; + + try { + result = property.apply(this, arguments); + } catch (e) { + exception = e; + } + + if (tearDown) { + tearDown.apply(this, arguments); + } + + if (exception) { + throw exception; + } + + return result; + }; + } + + function testCase(tests, prefix) { + /*jsl:ignore*/ + if (!tests || typeof tests != "object") { + throw new TypeError("sinon.testCase needs an object with test functions"); + } + /*jsl:end*/ + + prefix = prefix || "test"; + var rPrefix = new RegExp("^" + prefix); + var methods = {}, testName, property, method; + var setUp = tests.setUp; + var tearDown = tests.tearDown; + + for (testName in tests) { + if (tests.hasOwnProperty(testName)) { + property = tests[testName]; + + if (/^(setUp|tearDown)$/.test(testName)) { + continue; + } + + if (typeof property == "function" && rPrefix.test(testName)) { + method = property; + + if (setUp || tearDown) { + method = createTest(property, setUp, tearDown); + } + + methods[testName] = sinon.test(method); + } else { + methods[testName] = tests[testName]; + } + } + } + + return methods; + } + + if (commonJSModule) { + module.exports = testCase; + } else { + sinon.testCase = testCase; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend stub.js + */ +/*jslint eqeqeq: false, onevar: false, nomen: false, plusplus: false*/ +/*global module, require, sinon*/ +/** + * Assertions matching the test spy retrieval interface. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon, global) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + var slice = Array.prototype.slice; + var assert; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function verifyIsStub() { + var method; + + for (var i = 0, l = arguments.length; i < l; ++i) { + method = arguments[i]; + + if (!method) { + assert.fail("fake is not a spy"); + } + + if (typeof method != "function") { + assert.fail(method + " is not a function"); + } + + if (typeof method.getCall != "function") { + assert.fail(method + " is not stubbed"); + } + } + } + + function failAssertion(object, msg) { + object = object || global; + var failMethod = object.fail || assert.fail; + failMethod.call(object, msg); + } + + function mirrorPropAsAssertion(name, method, message) { + if (arguments.length == 2) { + message = method; + method = name; + } + + assert[name] = function (fake) { + verifyIsStub(fake); + + var args = slice.call(arguments, 1); + var failed = false; + + if (typeof method == "function") { + failed = !method(fake); + } else { + failed = typeof fake[method] == "function" ? + !fake[method].apply(fake, args) : !fake[method]; + } + + if (failed) { + failAssertion(this, fake.printf.apply(fake, [message].concat(args))); + } else { + assert.pass(name); + } + }; + } + + function exposedName(prefix, prop) { + return !prefix || /^fail/.test(prop) ? prop : + prefix + prop.slice(0, 1).toUpperCase() + prop.slice(1); + }; + + assert = { + failException: "AssertError", + + fail: function fail(message) { + var error = new Error(message); + error.name = this.failException || assert.failException; + + throw error; + }, + + pass: function pass(assertion) {}, + + callOrder: function assertCallOrder() { + verifyIsStub.apply(null, arguments); + var expected = "", actual = ""; + + if (!sinon.calledInOrder(arguments)) { + try { + expected = [].join.call(arguments, ", "); + var calls = slice.call(arguments); + var i = calls.length; + while (i) { + if (!calls[--i].called) { + calls.splice(i, 1); + } + } + actual = sinon.orderByFirstCall(calls).join(", "); + } catch (e) { + // If this fails, we'll just fall back to the blank string + } + + failAssertion(this, "expected " + expected + " to be " + + "called in order but were called as " + actual); + } else { + assert.pass("callOrder"); + } + }, + + callCount: function assertCallCount(method, count) { + verifyIsStub(method); + + if (method.callCount != count) { + var msg = "expected %n to be called " + sinon.timesInWords(count) + + " but was called %c%C"; + failAssertion(this, method.printf(msg)); + } else { + assert.pass("callCount"); + } + }, + + expose: function expose(target, options) { + if (!target) { + throw new TypeError("target is null or undefined"); + } + + var o = options || {}; + var prefix = typeof o.prefix == "undefined" && "assert" || o.prefix; + var includeFail = typeof o.includeFail == "undefined" || !!o.includeFail; + + for (var method in this) { + if (method != "export" && (includeFail || !/^(fail)/.test(method))) { + target[exposedName(prefix, method)] = this[method]; + } + } + + return target; + } + }; + + mirrorPropAsAssertion("called", "expected %n to have been called at least once but was never called"); + mirrorPropAsAssertion("notCalled", function (spy) { return !spy.called; }, + "expected %n to not have been called but was called %c%C"); + mirrorPropAsAssertion("calledOnce", "expected %n to be called once but was called %c%C"); + mirrorPropAsAssertion("calledTwice", "expected %n to be called twice but was called %c%C"); + mirrorPropAsAssertion("calledThrice", "expected %n to be called thrice but was called %c%C"); + mirrorPropAsAssertion("calledOn", "expected %n to be called with %1 as this but was called with %t"); + mirrorPropAsAssertion("alwaysCalledOn", "expected %n to always be called with %1 as this but was called with %t"); + mirrorPropAsAssertion("calledWithNew", "expected %n to be called with new"); + mirrorPropAsAssertion("alwaysCalledWithNew", "expected %n to always be called with new"); + mirrorPropAsAssertion("calledWith", "expected %n to be called with arguments %*%C"); + mirrorPropAsAssertion("calledWithMatch", "expected %n to be called with match %*%C"); + mirrorPropAsAssertion("alwaysCalledWith", "expected %n to always be called with arguments %*%C"); + mirrorPropAsAssertion("alwaysCalledWithMatch", "expected %n to always be called with match %*%C"); + mirrorPropAsAssertion("calledWithExactly", "expected %n to be called with exact arguments %*%C"); + mirrorPropAsAssertion("alwaysCalledWithExactly", "expected %n to always be called with exact arguments %*%C"); + mirrorPropAsAssertion("neverCalledWith", "expected %n to never be called with arguments %*%C"); + mirrorPropAsAssertion("neverCalledWithMatch", "expected %n to never be called with match %*%C"); + mirrorPropAsAssertion("threw", "%n did not throw exception%C"); + mirrorPropAsAssertion("alwaysThrew", "%n did not always throw exception%C"); + + if (commonJSModule) { + module.exports = assert; + } else { + sinon.assert = assert; + } +}(typeof sinon == "object" && sinon || null, typeof window != "undefined" ? window : (typeof self != "undefined") ? self : global)); + +return sinon;}.call(typeof window != 'undefined' && window || {})); diff --git a/core/js/tests/specHelper.js b/core/js/tests/specHelper.js new file mode 100644 index 00000000000..4a30878df51 --- /dev/null +++ b/core/js/tests/specHelper.js @@ -0,0 +1,89 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ + +/** + * Simulate the variables that are normally set by PHP code + */ + +// from core/js/config.php +window.TESTING = true; +window.oc_debug = true; +window.datepickerFormatDate = 'MM d, yy'; +window.dayNames = [ + 'Sunday', + 'Monday', + 'Tuesday', + 'Wednesday', + 'Thursday', + 'Friday', + 'Saturday' +]; +window.monthNames = [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'November', + 'December' +]; +window.firstDay = 0; + +// setup dummy webroots +window.oc_webroot = location.href + '/'; +window.oc_appswebroots = { + "files": window.oc_webroot + '/apps/files/' +}; + +// global setup for all tests +(function setupTests() { + var fakeServer = null; + + beforeEach(function() { + // enforce fake XHR, tests should not depend on the server and + // must use fake responses for expected calls + fakeServer = sinon.fakeServer.create(); + + // return fake translations as they might be requested for many test runs + fakeServer.respondWith(/\/index.php\/core\/ajax\/translations.php$/, [ + 200, { + "Content-Type": "application/json" + }, + '{"data": [], "plural_form": "nplurals=2; plural=(n != 1);"}' + ]); + + // make it globally available, so that other tests can define + // custom responses + window.fakeServer = fakeServer; + }); + + afterEach(function() { + // uncomment this to log requests + // console.log(window.fakeServer.requests); + fakeServer.restore(); + }); +})(); + diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js new file mode 100644 index 00000000000..827669f270b --- /dev/null +++ b/core/js/tests/specs/coreSpec.js @@ -0,0 +1,70 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ +describe('Core base tests', function() { + describe('Base values', function() { + it('Sets webroots', function() { + expect(OC.webroot).toBeDefined(); + expect(OC.appswebroots).toBeDefined(); + }); + }); + describe('Link functions', function() { + var TESTAPP = 'testapp'; + var TESTAPP_ROOT = OC.webroot + '/appsx/testapp'; + + beforeEach(function() { + OC.appswebroots[TESTAPP] = TESTAPP_ROOT; + }); + afterEach(function() { + // restore original array + delete OC.appswebroots[TESTAPP]; + }); + it('Generates correct links for core apps', function() { + expect(OC.linkTo('core', 'somefile.php')).toEqual(OC.webroot + '/core/somefile.php'); + expect(OC.linkTo('admin', 'somefile.php')).toEqual(OC.webroot + '/admin/somefile.php'); + }); + it('Generates correct links for regular apps', function() { + expect(OC.linkTo(TESTAPP, 'somefile.php')).toEqual(OC.webroot + '/index.php/apps/' + TESTAPP + '/somefile.php'); + }); + it('Generates correct remote links', function() { + expect(OC.linkToRemote('webdav')).toEqual(window.location.protocol + '//' + window.location.host + OC.webroot + '/remote.php/webdav'); + }); + describe('Images', function() { + it('Generates image path with given extension', function() { + var svgSupportStub = sinon.stub(window, 'SVGSupport', function() { return true; }); + expect(OC.imagePath('core', 'somefile.jpg')).toEqual(OC.webroot + '/core/img/somefile.jpg'); + expect(OC.imagePath(TESTAPP, 'somefile.jpg')).toEqual(TESTAPP_ROOT + '/img/somefile.jpg'); + svgSupportStub.restore(); + }); + it('Generates image path with svg extension when svg support exists', function() { + var svgSupportStub = sinon.stub(window, 'SVGSupport', function() { return true; }); + expect(OC.imagePath('core', 'somefile')).toEqual(OC.webroot + '/core/img/somefile.svg'); + expect(OC.imagePath(TESTAPP, 'somefile')).toEqual(TESTAPP_ROOT + '/img/somefile.svg'); + svgSupportStub.restore(); + }); + it('Generates image path with png ext when svg support is not available', function() { + var svgSupportStub = sinon.stub(window, 'SVGSupport', function() { return false; }); + expect(OC.imagePath('core', 'somefile')).toEqual(OC.webroot + '/core/img/somefile.png'); + expect(OC.imagePath(TESTAPP, 'somefile')).toEqual(TESTAPP_ROOT + '/img/somefile.png'); + svgSupportStub.restore(); + }); + }); + }); +}); diff --git a/lib/base.php b/lib/base.php index f30575c7b12..89f72bd8970 100644 --- a/lib/base.php +++ b/lib/base.php @@ -293,6 +293,7 @@ class OC { public static function initTemplateEngine() { // Add the stuff we need always + // TODO: read from core/js/core.json OC_Util::addScript("jquery-1.10.0.min"); OC_Util::addScript("jquery-migrate-1.2.1.min"); OC_Util::addScript("jquery-ui-1.10.0.custom"); diff --git a/tests/karma.config.js b/tests/karma.config.js new file mode 100644 index 00000000000..cb2d261a4fb --- /dev/null +++ b/tests/karma.config.js @@ -0,0 +1,138 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ + +/** + * This node module is run by the karma executable to specify its configuration. + * + * The list of files from all needed JavaScript files including the ones from the + * apps to test, and the test specs will be passed as configuration object. + * + * Note that it is possible to test a single app by setting the KARMA_TESTSUITE + * environment variable to the apps name, for example "core" or "files_encryption". + * Multiple apps can be specified by separating them with space. + * + */ +module.exports = function(config) { + + // default apps to test when none is specified (TODO: read from filesystem ?) + var defaultApps = 'core files'; + var appsToTest = process.env.KARMA_TESTSUITE || defaultApps; + + // read core files from core.json, + // these are required by all apps so always need to be loaded + // note that the loading order is important that's why they + // are specified in a separate file + var corePath = 'core/js/'; + var coreFiles = require('../' + corePath + 'core.json').modules; + var testCore = false; + var files = []; + var index; + + // find out what apps to test from appsToTest + appsToTest = appsToTest.split(' '); + index = appsToTest.indexOf('core'); + if (index > -1) { + appsToTest.splice(index, 1); + testCore = true; + } + + // extra test libs + files.push(corePath + 'tests/lib/sinon-1.7.3.js'); + + // core mocks + files.push(corePath + 'tests/specHelper.js'); + + // add core files + for ( var i = 0; i < coreFiles.length; i++ ) { + files.push( corePath + coreFiles[i] ); + } + + // need to test the core app as well ? + if (testCore) { + // core tests + files.push(corePath + 'tests/specs/*.js'); + } + + for ( var i = 0; i < appsToTest.length; i++ ) { + // add app JS + files.push('apps/' + appsToTest[i] + '/js/*.js'); + // add test specs + files.push('apps/' + appsToTest[i] + '/tests/js/*.js'); + } + + config.set({ + + // base path, that will be used to resolve files and exclude + basePath: '..', + + + // frameworks to use + frameworks: ['jasmine'], + + // list of files / patterns to load in the browser + files: files, + + // list of files to exclude + exclude: [ + + ], + + // test results reporter to use + // possible values: 'dots', 'progress', 'junit', 'growl', 'coverage' + reporters: ['dots', 'junit'], + + junitReporter: { + outputFile: 'tests/autotest-results-js.xml' + }, + + // web server port + port: 9876, + + + // enable / disable colors in the output (reporters and logs) + colors: true, + + + // level of logging + // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG + logLevel: config.LOG_INFO, + + // enable / disable watching file and executing tests whenever any file changes + autoWatch: false, + + // Start these browsers, currently available: + // - Chrome + // - ChromeCanary + // - Firefox + // - Opera (has to be installed with `npm install karma-opera-launcher`) + // - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`) + // - PhantomJS + // - IE (only Windows; has to be installed with `npm install karma-ie-launcher`) + browsers: ['PhantomJS'], + + // If browser does not capture in given timeout [ms], kill it + captureTimeout: 60000, + + // Continuous Integration mode + // if true, it capture browsers, run tests and exit + singleRun: false + }); +}; -- cgit v1.2.3 From 6b4c3df0876a4786bbde406349746600c87e1e6b Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 17 Jan 2014 14:40:48 +0100 Subject: Load a separate config (if present) when running unit tests --- lib/base.php | 14 ++++++++++++-- lib/private/config.php | 2 +- lib/private/legacy/config.php | 1 - lib/private/util.php | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index f30575c7b12..d320f6f2411 100644 --- a/lib/base.php +++ b/lib/base.php @@ -57,6 +57,9 @@ class OC { * web path in 'url' */ public static $APPSROOTS = array(); + + public static $configDir; + /* * requested app */ @@ -100,6 +103,13 @@ class OC { get_include_path() ); + if(defined('PHPUNIT_RUN') and PHPUNIT_RUN and is_dir(OC::$SERVERROOT . '/test_config/')) { + self::$configDir = OC::$SERVERROOT . '/test_config/'; + } else { + self::$configDir = OC::$SERVERROOT . '/config/'; + } + OC_Config::$object = new \OC\Config(self::$configDir); + OC::$SUBURI = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen(OC::$SERVERROOT))); $scriptName = OC_Request::scriptName(); if (substr($scriptName, -1) == '/') { @@ -175,8 +185,8 @@ class OC { } public static function checkConfig() { - if (file_exists(OC::$SERVERROOT . "/config/config.php") - and !is_writable(OC::$SERVERROOT . "/config/config.php") + if (file_exists(self::$configDir . "/config.php") + and !is_writable(self::$configDir . "/config.php") ) { $defaults = new OC_Defaults(); if (self::$CLI) { diff --git a/lib/private/config.php b/lib/private/config.php index caf7b1d7066..8a9d5ca6158 100644 --- a/lib/private/config.php +++ b/lib/private/config.php @@ -50,7 +50,7 @@ class Config { protected $debugMode; /** - * @param $configDir path to the config dir, needs to end with '/' + * @param string $configDir path to the config dir, needs to end with '/' */ public function __construct($configDir) { $this->configDir = $configDir; diff --git a/lib/private/legacy/config.php b/lib/private/legacy/config.php index c457979113e..ab67c8d3020 100644 --- a/lib/private/legacy/config.php +++ b/lib/private/legacy/config.php @@ -38,7 +38,6 @@ * This class is responsible for reading and writing config.php, the very basic * configuration file of ownCloud. */ -OC_Config::$object = new \OC\Config(OC::$SERVERROOT.'/config/'); class OC_Config { /** diff --git a/lib/private/util.php b/lib/private/util.php index a4b3761dbd3..be8b5439543 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -312,7 +312,7 @@ class OC_Util { .'" target="_blank">giving the webserver write access to the root directory.'; // Check if config folder is writable. - if(!is_writable(OC::$SERVERROOT."/config/") or !is_readable(OC::$SERVERROOT."/config/")) { + if(!is_writable(OC::$configDir) or !is_readable(OC::$configDir)) { $errors[] = array( 'error' => "Can't write into config directory", 'hint' => 'This can usually be fixed by ' -- cgit v1.2.3 From bf0471a92ed4fca8fe3344839acd83d6918cf566 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 17 Jan 2014 14:05:39 +0100 Subject: show link to app documentation --- lib/private/app.php | 4 ++++ settings/css/settings.css | 6 ++++++ settings/js/apps.js | 20 +++++++++++++++++++- settings/templates/apps.php | 5 +++++ 4 files changed, 34 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/app.php b/lib/private/app.php index 34c00e97fb9..0c60557914a 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -555,6 +555,10 @@ class OC_App{ }elseif($child->getName()=='description') { $xml=(string)$child->asXML(); $data[$child->getName()]=substr($xml, 13, -14);//script tags + }elseif($child->getName()=='documentation') { + foreach($child as $subchild) { + $data["documentation"][$subchild->getName()] = (string)$subchild; + } }else{ $data[$child->getName()]=(string)$child; } diff --git a/settings/css/settings.css b/settings/css/settings.css index a93c675d466..8a96885b789 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -131,6 +131,12 @@ span.version { margin-left:1em; margin-right:1em; color:#555; } .appslink { text-decoration: underline; } .score { color:#666; font-weight:bold; font-size:0.8em; } +.appinfo .documentation { + margin-top: 1em; + margin-bottom: 1em; +} + + /* LOG */ #log { white-space:normal; } #lessLog { display:none; } diff --git a/settings/js/apps.js b/settings/js/apps.js index a55c55e24cf..1d05d01e1f2 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -37,6 +37,24 @@ OC.Settings.Apps = OC.Settings.Apps || { } page.find('span.licence').text(appLicense); + var userDocumentation = false; + var adminDocumentation = false; + if (typeof(app.documentation.user) !== 'undefined') { + userDocumentation = true; + page.find('span.userDocumentation').html("" + t('settings', 'User Documentation') + ""); + page.find('p.documentation').show(); + } + if (typeof(app.documentation.admin) !== 'undefined') { + adminDocumentation = true; + page.find('span.adminDocumentation').html("" + t('settings', 'Admin Documentation') + ""); + page.find('p.documentation').show(); + } + + if(userDocumentation && adminDocumentation) { + page.find('span.userDocumentation').after(', '); + } + + if (app.update !== false) { page.find('input.update').show(); page.find('input.update').data('appid', app.id); @@ -110,7 +128,7 @@ OC.Settings.Apps = OC.Settings.Apps || { element.val(t('settings','Disable')); } },'json') - .fail(function() { + .fail(function() { OC.Settings.Apps.showErrorMessage(t('settings', 'Error while enabling app')); appitem.data('errormsg', t('settings', 'Error while enabling app')); appitem.data('active',false); diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 0b76f775fea..ce48ef77d12 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -34,6 +34,11 @@ class="version">

    + -- cgit v1.2.3 From 1af7dab5358d7fd495e4382037c6e2528e2b76d5 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Sun, 19 Jan 2014 18:49:51 +0100 Subject: Fixed quota wrapper to not wrap failed fopen streams When calling fopen() on some storage types, these return false instead of throwing an exception. This fix makes sure that in case the stream wasn't opened (for example when a file doesn't exist any more) the stream isn't wrapped. Also added 'rb' as another case that doesn't need to be wrapped. Fixes #6832 --- lib/private/files/storage/wrapper/quota.php | 2 +- tests/lib/files/storage/wrapper/quota.php | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/files/storage/wrapper/quota.php b/lib/private/files/storage/wrapper/quota.php index 43016e0892f..a430e3e4617 100644 --- a/lib/private/files/storage/wrapper/quota.php +++ b/lib/private/files/storage/wrapper/quota.php @@ -95,7 +95,7 @@ class Quota extends Wrapper { public function fopen($path, $mode) { $source = $this->storage->fopen($path, $mode); $free = $this->free_space(''); - if ($free >= 0 && $mode !== 'r') { + if ($source && $free >= 0 && $mode !== 'r' && $mode !== 'rb') { return \OC\Files\Stream\Quota::wrap($source, $free); } else { return $source; diff --git a/tests/lib/files/storage/wrapper/quota.php b/tests/lib/files/storage/wrapper/quota.php index 9b14335782f..87bafb64d41 100644 --- a/tests/lib/files/storage/wrapper/quota.php +++ b/tests/lib/files/storage/wrapper/quota.php @@ -59,6 +59,20 @@ class Quota extends \Test\Files\Storage\Storage { $this->assertEquals('foobarqwe', $instance->file_get_contents('foo')); } + public function testReturnFalseWhenFopenFailed(){ + $failStorage = $this->getMock( + '\OC\Files\Storage\Local', + array('fopen'), + array(array('datadir' => $this->tmpDir))); + $failStorage->expects($this->any()) + ->method('fopen') + ->will($this->returnValue(false)); + + $instance = new \OC\Files\Storage\Wrapper\Quota(array('storage' => $failStorage, 'quota' => 1000)); + + $this->assertFalse($instance->fopen('failedfopen', 'r')); + } + public function testReturnRegularStreamOnRead(){ $instance = $this->getLimitedStorage(9); @@ -71,6 +85,11 @@ class Quota extends \Test\Files\Storage\Storage { $meta = stream_get_meta_data($stream); $this->assertEquals('plainfile', $meta['wrapper_type']); fclose($stream); + + $stream = $instance->fopen('foo', 'rb'); + $meta = stream_get_meta_data($stream); + $this->assertEquals('plainfile', $meta['wrapper_type']); + fclose($stream); } public function testReturnQuotaStreamOnWrite(){ -- cgit v1.2.3 From 221e656e91de48f74e170662cb9680e5e2aac792 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Mon, 20 Jan 2014 10:10:34 +0100 Subject: Revert "use getAppWebPath() in here as well" This reverts commit 6254f0a403e315461f8e20ebccf71cb91e9313a3. --- lib/private/template/cssresourcelocator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/template/cssresourcelocator.php b/lib/private/template/cssresourcelocator.php index e26daa25827..8e7831ca549 100644 --- a/lib/private/template/cssresourcelocator.php +++ b/lib/private/template/cssresourcelocator.php @@ -22,7 +22,7 @@ class CSSResourceLocator extends ResourceLocator { $app = substr($style, 0, strpos($style, '/')); $style = substr($style, strpos($style, '/')+1); $app_path = \OC_App::getAppPath($app); - $app_url = \OC_App::getAppWebPath($app); + $app_url = $this->webroot . '/index.php/apps/' . $app; if ($this->appendIfExist($app_path, $style.$this->form_factor.'.css', $app_url) || $this->appendIfExist($app_path, $style.'.css', $app_url) ) { -- cgit v1.2.3 From 164915a3f8c420b4274ebf3841044f18ca7435a4 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 20 Jan 2014 13:41:52 +0100 Subject: Move test config folder to tests/config --- lib/base.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index d320f6f2411..0597183adcf 100644 --- a/lib/base.php +++ b/lib/base.php @@ -103,8 +103,8 @@ class OC { get_include_path() ); - if(defined('PHPUNIT_RUN') and PHPUNIT_RUN and is_dir(OC::$SERVERROOT . '/test_config/')) { - self::$configDir = OC::$SERVERROOT . '/test_config/'; + if(defined('PHPUNIT_RUN') and PHPUNIT_RUN and is_dir(OC::$SERVERROOT . '/tests/config/')) { + self::$configDir = OC::$SERVERROOT . '/tests/config/'; } else { self::$configDir = OC::$SERVERROOT . '/config/'; } -- cgit v1.2.3 From 3d6d8d1bb683f9daca3a2b8a876e291adc320375 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 20 Jan 2014 15:21:21 +0100 Subject: Reuse the data retrieved from the cache in checkUpdate --- apps/files_sharing/lib/watcher.php | 2 +- lib/private/files/cache/watcher.php | 4 ++-- lib/private/files/view.php | 7 +++++-- 3 files changed, 8 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/lib/watcher.php b/apps/files_sharing/lib/watcher.php index c40cf6911b8..285b1a58c6e 100644 --- a/apps/files_sharing/lib/watcher.php +++ b/apps/files_sharing/lib/watcher.php @@ -32,7 +32,7 @@ class Shared_Watcher extends Watcher { * @param string $path */ public function checkUpdate($path) { - if ($path != '' && parent::checkUpdate($path)) { + if ($path != '' && parent::checkUpdate($path) === true) { // since checkUpdate() has already updated the size of the subdirs, // only apply the update to the owner's parent dirs diff --git a/lib/private/files/cache/watcher.php b/lib/private/files/cache/watcher.php index 58f624c8990..251ecbe7071 100644 --- a/lib/private/files/cache/watcher.php +++ b/lib/private/files/cache/watcher.php @@ -40,7 +40,7 @@ class Watcher { * check $path for updates * * @param string $path - * @return boolean true if path was updated, false otherwise + * @return boolean | array true if path was updated, otherwise the cached data is returned */ public function checkUpdate($path) { $cachedEntry = $this->cache->get($path); @@ -56,7 +56,7 @@ class Watcher { $this->cache->correctFolderSize($path); return true; } - return false; + return $cachedEntry; } /** diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 8893911ed5d..d97544b865e 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -801,6 +801,7 @@ class View { * @var string $internalPath */ list($storage, $internalPath) = Filesystem::resolvePath($path); + $data = null; if ($storage) { $cache = $storage->getCache($internalPath); $permissionsCache = $storage->getPermissionsCache($internalPath); @@ -811,10 +812,12 @@ class View { $scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW); } else { $watcher = $storage->getWatcher($internalPath); - $watcher->checkUpdate($internalPath); + $data = $watcher->checkUpdate($internalPath); } - $data = $cache->get($internalPath); + if (!is_array($data)) { + $data = $cache->get($internalPath); + } if ($data and $data['fileid']) { if ($includeMountPoints and $data['mimetype'] === 'httpd/unix-directory') { -- cgit v1.2.3 From 9fd4cb1b6683cdebdeaec0f744bd2ba1fb1c64e3 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 21 Jan 2014 10:42:47 +0100 Subject: adding password protection check to getShareByToken() --- apps/files_sharing/public.php | 2 +- lib/public/share.php | 36 ++++++++++++++++++++++++++++++++---- 2 files changed, 33 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index d050efd5b32..100379047d3 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -35,7 +35,7 @@ function determineIcon($file, $sharingRoot, $sharingToken) { if (isset($_GET['t'])) { $token = $_GET['t']; - $linkItem = OCP\Share::getShareByToken($token); + $linkItem = OCP\Share::getShareByToken($token, false); if (is_array($linkItem) && isset($linkItem['uid_owner'])) { // seems to be a valid share $type = $linkItem['item_type']; diff --git a/lib/public/share.php b/lib/public/share.php index eb1dd8d1c95..4573fe8d8d3 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -347,11 +347,11 @@ class Share { } /** - * Get the item shared by a token - * @param string token - * @return Item + * Based on the given token the share information will be returned - password protected shares will be verified + * @param string $token + * @return array | bool false will be returned in case the token is unknown or unauthorized */ - public static function getShareByToken($token) { + public static function getShareByToken($token, $checkPasswordProtection = true) { $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1); $result = $query->execute(array($token)); if (\OC_DB::isError($result)) { @@ -361,6 +361,12 @@ class Share { if (is_array($row) and self::expireItem($row)) { return false; } + + // password protected shares need to me authenticated + if ($checkPasswordProtection && !\OCP\Share::checkPasswordProtectedShare($row)) { + return false; + } + return $row; } @@ -1888,6 +1894,28 @@ class Share { } } + /** + * In case a password protected link is not yet authenticated this function will return false + * + * @param array $linkItem + * @return bool + */ + public static function checkPasswordProtectedShare(array $linkItem) { + if (!isset($linkItem['share_with'])) { + return true; + } + + if ($linkItem['share_type'] != \OCP\Share::SHARE_TYPE_LINK) { + return true; + } + + if ( \OC::$session->exists('public_link_authenticated') + && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { + return true; + } + + return false; + } } /** -- cgit v1.2.3 From 6746ad0a7315d1ee06f7b1804b7c9457755f6648 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 21 Jan 2014 10:55:10 +0100 Subject: in case no share is found for the given token we can return right away --- lib/public/share.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index 4573fe8d8d3..ddc9e1e066f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -358,6 +358,9 @@ class Share { \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', token=' . $token, \OC_Log::ERROR); } $row = $result->fetchRow(); + if ($row === false) { + return false; + } if (is_array($row) and self::expireItem($row)) { return false; } -- cgit v1.2.3 From 23a4d0d44ef8b918f054e7ad608d04b2e9a68995 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 21 Jan 2014 11:32:30 +0100 Subject: OC_Util::setupFS($user) will create a data dir for the given string - no matter if the user really exists - OCP\JSON::checkUserExists($owner); introduces a ready to use check which will bail out with an JSON error --- apps/files/ajax/upload.php | 1 + apps/files/triggerupdate.php | 1 + apps/files_sharing/ajax/publicpreview.php | 3 ++- apps/files_sharing/appinfo/update.php | 1 + apps/files_sharing/public.php | 6 +++--- lib/private/json.php | 14 ++++++++++++++ lib/private/util.php | 4 ++++ lib/public/json.php | 10 +++++++++- 8 files changed, 35 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 0e905f993ac..bdaf6a77d14 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -34,6 +34,7 @@ if (empty($_POST['dirToken'])) { // resolve reshares $rootLinkItem = OCP\Share::resolveReShare($linkItem); + OCP\JSON::checkUserExists($rootLinkItem['uid_owner']); // Setup FS with owner OC_Util::tearDownFS(); OC_Util::setupFS($rootLinkItem['uid_owner']); diff --git a/apps/files/triggerupdate.php b/apps/files/triggerupdate.php index 0e29edbba35..a37b9823add 100644 --- a/apps/files/triggerupdate.php +++ b/apps/files/triggerupdate.php @@ -6,6 +6,7 @@ if (OC::$CLI) { if (count($argv) === 2) { $file = $argv[1]; list(, $user) = explode('/', $file); + OCP\JSON::checkUserExists($owner); OC_Util::setupFS($user); $view = new \OC\Files\View(''); /** diff --git a/apps/files_sharing/ajax/publicpreview.php b/apps/files_sharing/ajax/publicpreview.php index 54a9806e8bf..a52f522afac 100644 --- a/apps/files_sharing/ajax/publicpreview.php +++ b/apps/files_sharing/ajax/publicpreview.php @@ -39,6 +39,7 @@ if(!isset($linkedItem['uid_owner']) || !isset($linkedItem['file_source'])) { $rootLinkItem = OCP\Share::resolveReShare($linkedItem); $userId = $rootLinkItem['uid_owner']; +OCP\JSON::checkUserExists($rootLinkItem['uid_owner']); \OC_Util::setupFS($userId); \OC\Files\Filesystem::initMountPoints($userId); $view = new \OC\Files\View('/' . $userId . '/files'); @@ -88,4 +89,4 @@ try{ } catch (\Exception $e) { \OC_Response::setStatus(500); \OC_Log::write('core', $e->getmessage(), \OC_Log::DEBUG); -} \ No newline at end of file +} diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 0d827da28ea..4b716e764f4 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -44,6 +44,7 @@ if (version_compare($installedVersion, '0.3', '<')) { $shareType = OCP\Share::SHARE_TYPE_USER; $shareWith = $row['uid_shared_with']; } + OCP\JSON::checkUserExists($row['uid_owner']); OC_User::setUserId($row['uid_owner']); //we need to setup the filesystem for the user, otherwise OC_FileSystem::getRoot will fail and break OC_Util::setupFS($row['uid_owner']); diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index d050efd5b32..80dd708ee51 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -43,10 +43,10 @@ if (isset($_GET['t'])) { $shareOwner = $linkItem['uid_owner']; $path = null; $rootLinkItem = OCP\Share::resolveReShare($linkItem); - $fileOwner = $rootLinkItem['uid_owner']; - if (isset($fileOwner)) { + if (isset($rootLinkItem['uid_owner'])) { + OCP\JSON::checkUserExists($rootLinkItem['uid_owner']); OC_Util::tearDownFS(); - OC_Util::setupFS($fileOwner); + OC_Util::setupFS($rootLinkItem['uid_owner']); $path = \OC\Files\Filesystem::getPath($linkItem['file_source']); } } diff --git a/lib/private/json.php b/lib/private/json.php index 6a9e5a2df5e..5c5d7e3a3da 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -64,6 +64,20 @@ class OC_JSON{ } } + /** + * Check is a given user exists - send json error msg if not + * @param string $user + */ + public static function checkUserExists($user) { + if (!OCP\User::userExists($user)) { + $l = OC_L10N::get('lib'); + OCP\JSON::error(array('data' => array('message' => $l->t('Unknown user')))); + exit; + } + } + + + /** * Check if the user is a subadmin, send json error msg if not */ diff --git a/lib/private/util.php b/lib/private/util.php index 72afa6f9478..8aa7a074d0d 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -51,6 +51,10 @@ class OC_Util { self::$rootMounted = true; } + if ($user != '' && !OCP\User::userExists($user)) { + return false; + } + //if we aren't logged in, there is no use to set up the filesystem if( $user != "" ) { \OC\Files\Filesystem::addStorageWrapper(function($mountPoint, $storage){ diff --git a/lib/public/json.php b/lib/public/json.php index 831e3ef1cf6..cd5d233ef90 100644 --- a/lib/public/json.php +++ b/lib/public/json.php @@ -167,7 +167,7 @@ class JSON { * @return string json formatted string if not admin user. */ public static function checkAdminUser() { - return(\OC_JSON::checkAdminUser()); + \OC_JSON::checkAdminUser(); } /** @@ -177,4 +177,12 @@ class JSON { public static function encode($data) { return(\OC_JSON::encode($data)); } + + /** + * Check is a given user exists - send json error msg if not + * @param string $user + */ + public static function checkUserExists($user) { + \OC_JSON::checkUserExists($user); + } } -- cgit v1.2.3 From a3ea5aa2ac85fea812e25e2578db4cf86a0d3418 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 21 Jan 2014 12:07:08 +0100 Subject: fixing comment + adding unit test for checkPasswordProtectedShare --- lib/public/share.php | 8 +++++++- tests/lib/share/share.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/public/share.php b/lib/public/share.php index ddc9e1e066f..f832d04a70f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -365,7 +365,7 @@ class Share { return false; } - // password protected shares need to me authenticated + // password protected shares need to be authenticated if ($checkPasswordProtection && !\OCP\Share::checkPasswordProtectedShare($row)) { return false; } @@ -1907,6 +1907,12 @@ class Share { if (!isset($linkItem['share_with'])) { return true; } + if (!isset($linkItem['share_type'])) { + return true; + } + if (!isset($linkItem['id'])) { + return true; + } if ($linkItem['share_type'] != \OCP\Share::SHARE_TYPE_LINK) { return true; diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index 2fe2837019f..d6acee6c924 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -25,6 +25,8 @@ class Test_Share extends PHPUnit_Framework_TestCase { protected $userBackend; protected $user1; protected $user2; + protected $user3; + protected $user4; protected $groupBackend; protected $group1; protected $group2; @@ -656,4 +658,44 @@ class Test_Share extends PHPUnit_Framework_TestCase { 'Failed asserting that the share of the test.txt file by user 2 has been removed.' ); } + + /** + * @dataProvider checkPasswordProtectedShareDataProvider + * @param $expected + * @param $item + */ + public function testCheckPasswordProtectedShare($expected, $item) { + \OC::$session->set('public_link_authenticated', 100); + $result = \OCP\Share::checkPasswordProtectedShare($item); + $this->assertEquals($expected, $result); + } + + function checkPasswordProtectedShareDataProvider() { + return array( + array(true, array()), + array(true, array('share_with' => null)), + array(true, array('share_with' => '')), + array(true, array('share_with' => '1234567890', 'share_type' => '1')), + array(true, array('share_with' => '1234567890', 'share_type' => 1)), + array(true, array('share_with' => '1234567890', 'share_type' => '3', 'id' => 100)), + array(true, array('share_with' => '1234567890', 'share_type' => 3, 'id' => 100)), + array(false, array('share_with' => '1234567890', 'share_type' => '3', 'id' => 101)), + array(false, array('share_with' => '1234567890', 'share_type' => 3, 'id' => 101)), + ); + + /* + if (!isset($linkItem['share_with'])) { + return true; + } + + if ($linkItem['share_type'] != \OCP\Share::SHARE_TYPE_LINK) { + return true; + } + + if ( \OC::$session->exists('public_link_authenticated') + && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { + return true; + } + * */ + } } -- cgit v1.2.3 From 267e1f3c40b9b9bdabaf0e49221744f80f7bc5a4 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Tue, 21 Jan 2014 12:41:10 +0100 Subject: use 'download.zip' as default name for zip downloads instead of 'owncloud.zip' --- lib/private/files.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/files.php b/lib/private/files.php index e6c81d58bd2..8ce632013cf 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -83,7 +83,7 @@ class OC_Files { if ($basename) { $name = $basename . '.zip'; } else { - $name = 'owncloud.zip'; + $name = 'download.zip'; } set_time_limit($executionTime); -- cgit v1.2.3 From 6241655df4121619de42ba797ec076d9b6927568 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 23 Jan 2014 02:15:42 +0100 Subject: Bring mimetype list into alphabetical order. --- lib/private/mimetypes.list.php | 123 ++++++++++++++++++++--------------------- 1 file changed, 61 insertions(+), 62 deletions(-) (limited to 'lib') diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 08228336966..72860d0e64f 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -21,93 +21,92 @@ */ /** - * list of mimetypes by extension + * Array mapping file extensions to mimetypes (in alphabetical order). */ - return array( + 'ai' => 'application/illustrator', + 'avi'=>'video/x-msvideo', + 'bash' => 'text/x-shellscript', + 'blend'=>'application/x-blender', + 'cc' => 'text/x-c', + 'cdr' => 'application/coreldraw', + 'cpp' => 'text/x-c++src', 'css'=>'text/css', + 'c' => 'text/x-c', + 'c++' => 'text/x-c++src', + 'doc'=>'application/msword', + 'doc'=>'application/msword', + 'docx'=>'application/msword', + 'docx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.document', + 'dv'=>'video/dv', + 'epub' => 'application/epub+zip', + 'exe'=>'application/x-ms-dos-executable', 'flac'=>'audio/flac', 'gif'=>'image/gif', - 'gzip'=>'application/x-gzip', 'gz'=>'application/x-gzip', + 'gzip'=>'application/x-gzip', 'html'=>'text/html', 'htm'=>'text/html', - 'ics'=>'text/calendar', 'ical'=>'text/calendar', + 'ics'=>'text/calendar', + 'impress' => 'text/impress', 'jpeg'=>'image/jpeg', 'jpg'=>'image/jpeg', 'js'=>'application/javascript', + 'keynote'=>'application/x-iwork-keynote-sffkey', + 'kra'=>'application/x-krita', + 'm2t'=>'video/mp2t', + 'm4v'=>'video/mp4', + 'markdown' => 'text/markdown', + 'mdown' => 'text/markdown', + 'md' => 'text/markdown', + 'mdwn' => 'text/markdown', + 'mobi' => 'application/x-mobipocket-ebook', + 'mov'=>'video/quicktime', + 'mp3'=>'audio/mpeg', + 'mp4'=>'video/mp4', + 'mpeg'=>'video/mpeg', + 'mpg'=>'video/mpeg', + 'msi'=>'application/x-msi', + 'numbers'=>'application/x-iwork-numbers-sffnumbers', + 'odg'=>'application/vnd.oasis.opendocument.graphics', + 'odp'=>'application/vnd.oasis.opendocument.presentation', + 'ods'=>'application/vnd.oasis.opendocument.spreadsheet', + 'odt'=>'application/vnd.oasis.opendocument.text', 'oga'=>'audio/ogg', 'ogg'=>'audio/ogg', 'ogv'=>'video/ogg', + 'pages'=>'application/x-iwork-pages-sffpages', 'pdf'=>'application/pdf', + 'php'=>'application/x-php', + 'pl'=>'application/x-pearl', 'png'=>'image/png', + 'ppt'=>'application/mspowerpoint', + 'pptx'=>'application/vnd.openxmlformats-officedocument.presentationml.presentation', + 'psd'=>'application/x-photoshop', + 'py'=>'application/x-python', + 'py'=>'text/x-script.python', + 'reveal' => 'text/reveal', + 'sgf' => 'application/sgf', + 'sh-lib' => 'text/x-shellscript', + 'sh' => 'text/x-shellscript', 'svg'=>'image/svg+xml', 'tar'=>'application/x-tar', - 'tgz'=>'application/x-compressed', 'tar.gz'=>'application/x-compressed', - 'tif'=>'image/tiff', + 'tgz'=>'application/x-compressed', 'tiff'=>'image/tiff', + 'tif'=>'image/tiff', 'txt'=>'text/plain', - 'zip'=>'application/zip', + 'vcard' => 'text/vcard', + 'vcf' => 'text/vcard', 'wav'=>'audio/wav', - 'odt'=>'application/vnd.oasis.opendocument.text', - 'ods'=>'application/vnd.oasis.opendocument.spreadsheet', - 'odg'=>'application/vnd.oasis.opendocument.graphics', - 'odp'=>'application/vnd.oasis.opendocument.presentation', - 'pages'=>'application/x-iwork-pages-sffpages', - 'numbers'=>'application/x-iwork-numbers-sffnumbers', - 'keynote'=>'application/x-iwork-keynote-sffkey', - 'kra'=>'application/x-krita', - 'mp3'=>'audio/mpeg', - 'doc'=>'application/msword', - 'docx'=>'application/msword', - 'xls'=>'application/msexcel', - 'xlsx'=>'application/msexcel', - 'php'=>'application/x-php', - 'exe'=>'application/x-ms-dos-executable', - 'msi'=>'application/x-msi', - 'pl'=>'application/x-pearl', - 'py'=>'application/x-python', - 'blend'=>'application/x-blender', - 'xcf'=>'application/x-gimp', - 'psd'=>'application/x-photoshop', - 'xml'=>'application/xml', - 'avi'=>'video/x-msvideo', - 'dv'=>'video/dv', - 'm2t'=>'video/mp2t', - 'mp4'=>'video/mp4', - 'm4v'=>'video/mp4', - 'mpg'=>'video/mpeg', - 'mpeg'=>'video/mpeg', - 'mov'=>'video/quicktime', 'webm'=>'video/webm', 'wmv'=>'video/x-ms-asf', - 'py'=>'text/x-script.python', - 'vcf' => 'text/vcard', - 'vcard' => 'text/vcard', - 'doc'=>'application/msword', - 'docx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.document', + 'xcf'=>'application/x-gimp', 'xls'=>'application/msexcel', + 'xls'=>'application/msexcel', + 'xlsx'=>'application/msexcel', 'xlsx'=>'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', - 'ppt'=>'application/mspowerpoint', - 'pptx'=>'application/vnd.openxmlformats-officedocument.presentationml.presentation', - 'sgf' => 'application/sgf', - 'cdr' => 'application/coreldraw', - 'impress' => 'text/impress', - 'ai' => 'application/illustrator', - 'epub' => 'application/epub+zip', - 'mobi' => 'application/x-mobipocket-ebook', - 'md' => 'text/markdown', - 'markdown' => 'text/markdown', - 'mdown' => 'text/markdown', - 'mdwn' => 'text/markdown', - 'reveal' => 'text/reveal', - 'c' => 'text/x-c', - 'cc' => 'text/x-c', - 'cpp' => 'text/x-c++src', - 'c++' => 'text/x-c++src', - 'sh' => 'text/x-shellscript', - 'bash' => 'text/x-shellscript', - 'sh-lib' => 'text/x-shellscript', + 'xml'=>'application/xml', + 'zip'=>'application/zip', ); -- cgit v1.2.3 From 689516ebd7a47847938420bf8715469b68fb3535 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 23 Jan 2014 02:22:46 +0100 Subject: Remove duplicate mimetypes while keeping previous behaviour. --- lib/private/mimetypes.list.php | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lib') diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 72860d0e64f..9db396e9fd2 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -35,8 +35,6 @@ return array( 'c' => 'text/x-c', 'c++' => 'text/x-c++src', 'doc'=>'application/msword', - 'doc'=>'application/msword', - 'docx'=>'application/msword', 'docx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'dv'=>'video/dv', 'epub' => 'application/epub+zip', @@ -84,7 +82,6 @@ return array( 'ppt'=>'application/mspowerpoint', 'pptx'=>'application/vnd.openxmlformats-officedocument.presentationml.presentation', 'psd'=>'application/x-photoshop', - 'py'=>'application/x-python', 'py'=>'text/x-script.python', 'reveal' => 'text/reveal', 'sgf' => 'application/sgf', @@ -104,8 +101,6 @@ return array( 'wmv'=>'video/x-ms-asf', 'xcf'=>'application/x-gimp', 'xls'=>'application/msexcel', - 'xls'=>'application/msexcel', - 'xlsx'=>'application/msexcel', 'xlsx'=>'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'xml'=>'application/xml', 'zip'=>'application/zip', -- cgit v1.2.3 From 47ea7704ca796a23fc5e9ec8f4a7668d1bbe9446 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 23 Jan 2014 02:46:05 +0100 Subject: Fix icons for xml,ppt,dot,dotx files. --- lib/private/helper.php | 2 ++ lib/private/mimetypes.list.php | 2 ++ 2 files changed, 4 insertions(+) (limited to 'lib') diff --git a/lib/private/helper.php b/lib/private/helper.php index 1c8d01c141f..90ef704c3cc 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -161,6 +161,7 @@ class OC_Helper { 'application/vnd.oasis.opendocument.text-template' => 'x-office/document', 'application/vnd.oasis.opendocument.text-web' => 'x-office/document', 'application/vnd.oasis.opendocument.text-master' => 'x-office/document', + 'application/mspowerpoint' => 'x-office/presentation', 'application/vnd.ms-powerpoint' => 'x-office/presentation', 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => 'x-office/presentation', 'application/vnd.openxmlformats-officedocument.presentationml.template' => 'x-office/presentation', @@ -171,6 +172,7 @@ class OC_Helper { 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' => 'x-office/presentation', 'application/vnd.oasis.opendocument.presentation' => 'x-office/presentation', 'application/vnd.oasis.opendocument.presentation-template' => 'x-office/presentation', + 'application/msexcel' => 'x-office/spreadsheet', 'application/vnd.ms-excel' => 'x-office/spreadsheet', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => 'x-office/spreadsheet', 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => 'x-office/spreadsheet', diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 9db396e9fd2..1ad333b5084 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -36,6 +36,8 @@ return array( 'c++' => 'text/x-c++src', 'doc'=>'application/msword', 'docx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.document', + 'dot'=>'application/msword', + 'dotx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.template', 'dv'=>'video/dv', 'epub' => 'application/epub+zip', 'exe'=>'application/x-ms-dos-executable', -- cgit v1.2.3 From 96f194c0f6038444aae4270d2481a2ee1ccd7691 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 23 Jan 2014 03:06:14 +0100 Subject: Add icons for mdb and accdb files. --- lib/private/helper.php | 1 + lib/private/mimetypes.list.php | 2 ++ 2 files changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/private/helper.php b/lib/private/helper.php index 90ef704c3cc..58bee9c6300 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -182,6 +182,7 @@ class OC_Helper { 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => 'x-office/spreadsheet', 'application/vnd.oasis.opendocument.spreadsheet' => 'x-office/spreadsheet', 'application/vnd.oasis.opendocument.spreadsheet-template' => 'x-office/spreadsheet', + 'application/msaccess' => 'database', ); if (isset($alias[$mimetype])) { diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 1ad333b5084..40fb1d2d97d 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -24,6 +24,7 @@ * Array mapping file extensions to mimetypes (in alphabetical order). */ return array( + 'accdb'=>'application/msaccess', 'ai' => 'application/illustrator', 'avi'=>'video/x-msvideo', 'bash' => 'text/x-shellscript', @@ -60,6 +61,7 @@ return array( 'markdown' => 'text/markdown', 'mdown' => 'text/markdown', 'md' => 'text/markdown', + 'mdb'=>'application/msaccess', 'mdwn' => 'text/markdown', 'mobi' => 'application/x-mobipocket-ebook', 'mov'=>'video/quicktime', -- cgit v1.2.3 From 25e9b7a7423da5d8631d365250e7e5e5955b87b2 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 21 Jan 2014 17:39:38 +0100 Subject: add icons.css file, first step to get rid of %webroot% --- core/css/icons.css | 240 +++++++++++++++++++++++++++++++++++++++++++++++++++++ lib/base.php | 1 + 2 files changed, 241 insertions(+) create mode 100644 core/css/icons.css (limited to 'lib') diff --git a/core/css/icons.css b/core/css/icons.css new file mode 100644 index 00000000000..57c37c5c51c --- /dev/null +++ b/core/css/icons.css @@ -0,0 +1,240 @@ +.icon { + background-repeat: no-repeat; + background-position: center; +} + + + + +/* general assets */ + +.icon-breadcrumb { + background-image: url('../img/breadcrumb.svg'); +} + +.icon-loading { + background-image: url('../img/loading.gif'); +} +.icon-loading-dark { + background-image: url('../img/loading-dark.gif'); +} +.icon-loading-small { + background-image: url('../img/loading-small.gif'); +} + +.icon-noise { + background-image: url('../img/noise.png'); + background-repeat: no-repeat; +} + + + + +/* action icons */ + +.icon-add { + background-image: url('../img/actions/add.svg'); +} + +.icon-caret { + background-image: url('../img/actions/caret.svg'); +} +.icon-caret-dark { + background-image: url('../img/actions/caret-dark.svg'); +} + +.icon-checkmark { + background-image: url('../img/actions/checkmark.svg'); +} + +.icon-clock { + background-image: url('../img/actions/clock.svg'); +} + +.icon-close { + background-image: url('../img/actions/close.svg'); +} + +.icon-confirm { + background-image: url('../img/actions/confirm.svg'); +} + +.icon-delete { + background-image: url('../img/actions/delete.svg'); +} +.icon-delete-hover { + background-image: url('../img/actions/delete-hover.svg'); +} + +.icon-download { + background-image: url('../img/actions/download.svg'); +} + +.icon-history { + background-image: url('../img/actions/history.svg'); +} + +.icon-info { + background-image: url('../img/actions/info.svg'); +} + +.icon-lock { + background-image: url('../img/actions/lock.svg'); +} + +.icon-logout { + background-image: url('../img/actions/logout.svg'); +} + +.icon-mail { + background-image: url('../img/actions/mail.svg'); +} + +.icon-more { + background-image: url('../img/actions/more.svg'); +} + +.icon-password { + background-image: url('../img/actions/password.svg'); +} + +.icon-pause { + background-image: url('../img/actions/pause.svg'); +} +.icon-pause-big { + background-image: url('../img/actions/pause-big.svg'); +} + +.icon-play { + background-image: url('../img/actions/play.svg'); +} +.icon-play-add { + background-image: url('../img/actions/play-add.svg'); +} +.icon-play-big { + background-image: url('../img/actions/play-big.svg'); +} +.icon-play-next { + background-image: url('../img/actions/play-next.svg'); +} +.icon-play-previous { + background-image: url('../img/actions/play-previous.svg'); +} + +.icon-public { + background-image: url('../img/actions/public.svg'); +} + +.icon-rename { + background-image: url('../img/actions/rename.svg'); +} + +.icon-search { + background-image: url('../img/actions/search.svg'); +} + +.icon-settings { + background-image: url('../img/actions/settings.svg'); +} + +.icon-share { + background-image: url('../img/actions/share.svg'); +} +.icon-shared { + background-image: url('../img/actions/shared.svg'); +} + +.icon-sound { + background-image: url('../img/actions/sound.svg'); +} +.icon-sound-off { + background-image: url('../img/actions/sound-off.svg'); +} + +.icon-star { + background-image: url('../img/actions/star.svg'); +} + +.icon-starred { + background-image: url('../img/actions/starred.svg'); +} + +.icon-toggle { + background-image: url('../img/actions/toggle.svg'); +} + +.icon-triangle-e { + background-image: url('../img/actions/triangle-e.svg'); +} +.icon-triangle-n { + background-image: url('../img/actions/triangle-n.svg'); +} +.icon-triangle-s { + background-image: url('../img/actions/triangle-s.svg'); +} + +.icon-upload { + background-image: url('../img/actions/upload.svg'); +} +.icon-upload-white { + background-image: url('../img/actions/upload-white.svg'); +} + +.icon-user { + background-image: url('../img/actions/user.svg'); +} + +.icon-view-close { + background-image: url('../img/actions/view-close.svg'); +} +.icon-view-next { + background-image: url('../img/actions/view-next.svg'); +} +.icon-view-pause { + background-image: url('../img/actions/view-pause.svg'); +} +.icon-view-play { + background-image: url('../img/actions/view-play.svg'); +} +.icon-view-previous { + background-image: url('../img/actions/view-previous.svg'); +} + + + + +/* places icons */ + +.icon-calendar-dark { + background-image: url('../img/places/calendar-dark.svg'); +} + +.icon-contacts-dark { + background-image: url('../img/places/contacts-dark.svg'); +} + +.icon-file { + background-image: url('../img/places/file.svg'); +} +.icon-files { + background-image: url('../img/places/files.svg'); +} +.icon-folder { + background-image: url('../img/places/folder.svg'); +} + +.icon-home { + background-image: url('../img/places/home.svg'); +} + +.icon-link { + background-image: url('../img/places/link.svg'); +} + +.icon-music { + background-image: url('../img/places/music.svg'); +} + +.icon-picture { + background-image: url('../img/places/picture.svg'); +} diff --git a/lib/base.php b/lib/base.php index 0597183adcf..a1c424017e6 100644 --- a/lib/base.php +++ b/lib/base.php @@ -331,6 +331,7 @@ class OC { } OC_Util::addStyle("styles"); + OC_Util::addStyle("icons"); OC_Util::addStyle("apps"); OC_Util::addStyle("fixes"); OC_Util::addStyle("multiselect"); -- cgit v1.2.3 From 506393090bf33ea1aa3a18983748e6a5b4078d4d Mon Sep 17 00:00:00 2001 From: Jens-Christian Fischer Date: Fri, 24 Jan 2014 14:04:37 +0100 Subject: Add 'mail_from_address' configuration In environments where there are rules for the email addresses, the "from address" that owncloud uses has to be configurable. This patch adds a new configuration variable 'mail_from_address'. If it is configured, owncloud will use this as the sender of *all* emails. (OwnCloud uses 'sharing-noreply' and 'password-noreply' by default). By using the 'mail_from_address' configuration, only this email address will be used. --- lib/public/util.php | 1 + tests/lib/util.php | 9 +++++++++ 2 files changed, 10 insertions(+) (limited to 'lib') diff --git a/lib/public/util.php b/lib/public/util.php index 8e85f9afc3f..8514a168b46 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -256,6 +256,7 @@ class Util { * it would return 'lostpassword-noreply@example.com' */ public static function getDefaultEmailAddress($user_part) { + $user_part = \OC_Config::getValue('mail_from_address', $user_part); $host_name = self::getServerHostName(); $host_name = \OC_Config::getValue('mail_domain', $host_name); $defaultEmailAddress = $user_part.'@'.$host_name; diff --git a/tests/lib/util.php b/tests/lib/util.php index 852caaeccc3..bfe68f5f680 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -88,6 +88,15 @@ class Test_Util extends PHPUnit_Framework_TestCase { OC_Config::deleteKey('mail_domain'); } + function testGetConfiguredEmailAddressFromConfig() { + OC_Config::setValue('mail_domain', 'example.com'); + OC_Config::setValue('mail_from_address', 'owncloud'); + $email = \OCP\Util::getDefaultEmailAddress("no-reply"); + $this->assertEquals('owncloud@example.com', $email); + OC_Config::deleteKey('mail_domain'); + OC_Config::deleteKey('mail_from_address'); + } + function testGetInstanceIdGeneratesValidId() { OC_Config::deleteKey('instanceid'); $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); -- cgit v1.2.3 From 0f6c60717140c885ebb33dfc38d94081a894dd6d Mon Sep 17 00:00:00 2001 From: Jens-Christian Fischer Date: Fri, 24 Jan 2014 14:22:42 +0100 Subject: added function documentation --- lib/public/util.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') diff --git a/lib/public/util.php b/lib/public/util.php index 8514a168b46..6317f10a66f 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -254,6 +254,10 @@ class Util { * Example: when given lostpassword-noreply as $user_part param, * and is currently accessed via http(s)://example.com/, * it would return 'lostpassword-noreply@example.com' + * + * If the configuration value 'mail_from_address' is set in + * config.php, this value will override the $user_part that + * is passed to this function */ public static function getDefaultEmailAddress($user_part) { $user_part = \OC_Config::getValue('mail_from_address', $user_part); -- cgit v1.2.3 From 2f8ebd03b011b705883bf9666b1bdaafb971f110 Mon Sep 17 00:00:00 2001 From: Otto Sabart Date: Fri, 24 Jan 2014 15:52:28 +0100 Subject: Add check for apc.enabled option Sometimes it's not possible to disable APC entirely and some of apc_functions are disabled. Only thing which is possible is to disable apc.enable option. --- lib/private/memcache/apc.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/private/memcache/apc.php b/lib/private/memcache/apc.php index 575ee4427db..e995cbc526e 100644 --- a/lib/private/memcache/apc.php +++ b/lib/private/memcache/apc.php @@ -50,6 +50,8 @@ class APC extends Cache { static public function isAvailable() { if (!extension_loaded('apc')) { return false; + } elseif (!ini_get('apc.enabled')) { + return false; } elseif (!ini_get('apc.enable_cli') && \OC::$CLI) { return false; } else { -- cgit v1.2.3 From 11ef12a1060f3e34312ae40c690f95765d7c5f89 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 23 Jan 2014 12:11:53 +0100 Subject: Added exception logger plugin for sabre connector Whenever an exception occurs in the sabre connector code or code called by it, it will be logged. This plugin approach is needed because Sabre already catches exceptions to return them to the client in the XML response, so they don't appear logged in the web server log. This will make it much easier to debug syncing issues. --- apps/files/appinfo/remote.php | 1 + .../connector/sabre/exceptionloggerplugin.php | 50 ++++++++++++++++++++++ lib/private/connector/sabre/file.php | 6 +-- lib/public/util.php | 8 +++- 4 files changed, 60 insertions(+), 5 deletions(-) create mode 100644 lib/private/connector/sabre/exceptionloggerplugin.php (limited to 'lib') diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 9f290796205..ef22fe92188 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -52,6 +52,7 @@ $server->addPlugin(new OC_Connector_Sabre_FilesPlugin()); $server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin()); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); +$server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav')); // And off we go! $server->exec(); diff --git a/lib/private/connector/sabre/exceptionloggerplugin.php b/lib/private/connector/sabre/exceptionloggerplugin.php new file mode 100644 index 00000000000..8e77afaf207 --- /dev/null +++ b/lib/private/connector/sabre/exceptionloggerplugin.php @@ -0,0 +1,50 @@ + + * + * @license AGPL3 + */ + +class OC_Connector_Sabre_ExceptionLoggerPlugin extends Sabre_DAV_ServerPlugin +{ + private $appName; + + /** + * @param string $loggerAppName app name to use when logging + */ + public function __construct($loggerAppName = 'webdav') { + $this->appName = $loggerAppName; + } + + /** + * This initializes the plugin. + * + * This function is called by Sabre_DAV_Server, after + * addPlugin is called. + * + * This method should set up the required event subscriptions. + * + * @param Sabre_DAV_Server $server + * @return void + */ + public function initialize(Sabre_DAV_Server $server) { + + $server->subscribeEvent('exception', array($this, 'logException'), 10); + } + + /** + * Log exception + * + * @internal param Exception $e exception + */ + public function logException($e) { + $exceptionClass = get_class($e); + if ($exceptionClass !== 'Sabre_DAV_Exception_NotAuthenticated') { + \OCP\Util::logException($this->appName, $e); + } + } +} diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index c3b59007295..ed27cef440d 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -79,7 +79,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D \OC_Log::write('webdav', '\OC\Files\Filesystem::file_put_contents() failed', \OC_Log::ERROR); $fs->unlink($partpath); // because we have no clue about the cause we can only throw back a 500/Internal Server Error - throw new Sabre_DAV_Exception(); + throw new Sabre_DAV_Exception('Could not write file contents'); } } catch (\OCP\Files\NotPermittedException $e) { // a more general case - due to whatever reason the content could not be written @@ -105,7 +105,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D if ($renameOkay === false || $fileExists === false) { \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); $fs->unlink($partpath); - throw new Sabre_DAV_Exception(); + throw new Sabre_DAV_Exception('Could not rename part file to final file'); } // allow sync clients to send the mtime along in a header @@ -246,7 +246,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D if ($fileExists) { $fs->unlink($targetPath); } - throw new Sabre_DAV_Exception(); + throw new Sabre_DAV_Exception('Could not rename part file assembled from chunks'); } // allow sync clients to send the mtime along in a header diff --git a/lib/public/util.php b/lib/public/util.php index 8e85f9afc3f..e893a76d811 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -88,14 +88,18 @@ class Util { * @param Exception $ex exception to log */ public static function logException( $app, \Exception $ex ) { - $message = $ex->getMessage(); + $class = get_class($ex); + if ($class !== 'Exception') { + $message = $class . ': '; + } + $message .= $ex->getMessage(); if ($ex->getCode()) { $message .= ' [' . $ex->getCode() . ']'; } \OCP\Util::writeLog($app, 'Exception: ' . $message, \OCP\Util::FATAL); if (defined('DEBUG') and DEBUG) { // also log stack trace - $stack = explode('#', $ex->getTraceAsString()); + $stack = explode("\n", $ex->getTraceAsString()); // first element is empty array_shift($stack); foreach ($stack as $s) { -- cgit v1.2.3