From 507e48ee5605826067293deaa169e8e0d90d9f35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 9 Aug 2013 22:13:31 +0200 Subject: [PATCH 01/31] 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(-) 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')) { From c84171cec0669dbe459ea2b5daf573a50f20e314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 9 Aug 2013 22:14:28 +0200 Subject: [PATCH 02/31] don't use xcache in case admin auth is enabled in php.ini - this can cause issues --- lib/memcache/xcache.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) 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) { - return false; - }else{ - return true; } + 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; + } + + return true; } } From fb2761a2034ed3ae786145418a6ca0b0262ef393 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:31:42 +0200 Subject: [PATCH 03/31] 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(-) 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); - } -} From 8d762f659a24a6b133d6bd4ca1cc2030bdce5ab0 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:34:43 +0200 Subject: [PATCH 04/31] 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(-) 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; } From 799106db811c432a6eea4d15b57339e980ab8cf7 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:35:52 +0200 Subject: [PATCH 05/31] Clear xCache OpCode cache instead of variable cache in clearOpcodeCache(). --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From 341d9caf79531b636e6db37a18e46df8c0eadbb4 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:36:42 +0200 Subject: [PATCH 06/31] xcache_unset_by_prefix() returns feedback, return it. --- lib/memcache/xcache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); From 49cfd08f08d6c0f0174b47f1cc69bc48b63064f3 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:37:59 +0200 Subject: [PATCH 07/31] Add link to XCache API in class documentation. --- lib/memcache/xcache.php | 4 ++++ 1 file changed, 4 insertions(+) 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 From 9770f52da6cb4445344c3e3641376d36a2c996a9 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:40:02 +0200 Subject: [PATCH 08/31] xCache -> XCache --- lib/memcache/xcache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; From 7fa53eae7fffcb517f56c96a9f2f67db5ef0d643 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:40:57 +0200 Subject: [PATCH 09/31] Make it clear that log message is about the XCache opcode cache. --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } From d73285c1869591da74c148b577d780a73313fe90 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 15 Aug 2013 03:41:33 +0200 Subject: [PATCH 10/31] 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(-) 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); } From a36bf5c2b5430eb4bcbabead92c9d2c1a669b035 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 9 Dec 2013 12:38:27 +0100 Subject: [PATCH 11/31] 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(-) 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 */ From 5c7a08aab45a7f24086066549e1992f3dc2fdde6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 11 Dec 2013 12:59:48 +0100 Subject: [PATCH 12/31] 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(-) 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); } From 335b2f40a631f7188ab921d69289acaf31908c6e Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 10 Dec 2013 15:32:48 +0100 Subject: [PATCH 13/31] 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(-) 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)); + } } From dfeb04a574a5d2f3c4288f8195e6926ac9bca4cf Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 17 Dec 2013 02:20:00 +0100 Subject: [PATCH 14/31] 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 | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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) { - return false; - }else{ - return true; } + if (\OC::$CLI) { + return false; + } + $var_size = (int) ini_get('xcache.var_size'); + if (!$var_size) { + return false; + } + return true; } } From 83417d69be216c4ed58402006df3b901a95483ea Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 17 Dec 2013 11:28:05 +0100 Subject: [PATCH 15/31] remove duplicated code --- apps/files_encryption/lib/proxy.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 96667493a51..41f352d853a 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -209,10 +209,7 @@ class Proxy extends \OC_FileProxy { $util = new Util($view, $userId); - // get relative path - $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); - - list($owner, $ownerPath) = $util->getUidAndFilename($relativePath); + list($owner, $ownerPath) = $util->getUidAndFilename($relPath); // Delete keyfile & shareKey so it isn't orphaned if (!Keymanager::deleteFileKey($view, $ownerPath)) { From 9a94c0755339daeda54cbd1084077cde26255a2a Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 17 Dec 2013 16:19:00 +0100 Subject: [PATCH 16/31] remove unused method tail() --- apps/files_encryption/lib/util.php | 43 ------------------------------ 1 file changed, 43 deletions(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index bf7c49504a2..e090070f5ba 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -414,49 +414,6 @@ class Util { } - /** - * @brief Fetch the last lines of a file efficiently - * @note Safe to use on large files; does not read entire file to memory - * @note Derivative of http://tekkie.flashbit.net/php/tail-functionality-in-php - */ - public function tail($filename, $numLines) { - - \OC_FileProxy::$enabled = false; - - $text = ''; - $pos = -1; - $handle = $this->view->fopen($filename, 'r'); - - while ($numLines > 0) { - - --$pos; - - if (fseek($handle, $pos, SEEK_END) !== 0) { - - rewind($handle); - $numLines = 0; - - } elseif (fgetc($handle) === "\n") { - - --$numLines; - - } - - $block_size = (-$pos) % 8192; - if ($block_size === 0 || $numLines === 0) { - - $text = fread($handle, ($block_size === 0 ? 8192 : $block_size)) . $text; - - } - } - - fclose($handle); - - \OC_FileProxy::$enabled = true; - - return $text; - } - /** * @brief Check if a given path identifies an encrypted file * @param string $path From 3b0d0e2b1f3fec67e18402b0b0ecaf03dcb6fed8 Mon Sep 17 00:00:00 2001 From: Oliver Gasser Date: Tue, 17 Dec 2013 22:46:45 +0100 Subject: [PATCH 17/31] 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(+) 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()); From 5fcbe5350c88d5949fd7fd0fdb654707d9e42d5f Mon Sep 17 00:00:00 2001 From: Oliver Gasser Date: Tue, 17 Dec 2013 23:08:05 +0100 Subject: [PATCH 18/31] Add decimal(precision,scale) column to unit tests --- tests/lib/db/mdb2schemareader.php | 3 +++ tests/lib/db/testschema.xml | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/tests/lib/db/mdb2schemareader.php b/tests/lib/db/mdb2schemareader.php index 57cafa7c76b..faa3b8d7da0 100644 --- a/tests/lib/db/mdb2schemareader.php +++ b/tests/lib/db/mdb2schemareader.php @@ -69,6 +69,9 @@ class MDB2SchemaReader extends \PHPUnit_Framework_TestCase { $this->assertTrue($table->getColumn('booleanfield_true')->getDefault()); $this->assertFalse($table->getColumn('booleanfield_false')->getDefault()); + $this->assertEquals(12, $table->getColumn('decimalfield_precision_scale')->getPrecision()); + $this->assertEquals(2, $table->getColumn('decimalfield_precision_scale')->getScale()); + $this->assertCount(2, $table->getIndexes()); $this->assertEquals(array('integerfield'), $table->getIndex('primary')->getUnquotedColumns()); $this->assertTrue($table->getIndex('primary')->isPrimary()); diff --git a/tests/lib/db/testschema.xml b/tests/lib/db/testschema.xml index 509b55ee81f..9de804b9290 100644 --- a/tests/lib/db/testschema.xml +++ b/tests/lib/db/testschema.xml @@ -53,6 +53,12 @@ boolean false + + decimalfield_precision_scale + decimal + 12 + 2 + index_primary From cb9e87ecedc1b4e61c4d8967cfaa39b22137666f Mon Sep 17 00:00:00 2001 From: Oliver Gasser Date: Tue, 17 Dec 2013 23:46:36 +0100 Subject: [PATCH 19/31] Typo fixed --- tests/lib/db/testschema.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/db/testschema.xml b/tests/lib/db/testschema.xml index 9de804b9290..dfca920a0ef 100644 --- a/tests/lib/db/testschema.xml +++ b/tests/lib/db/testschema.xml @@ -55,7 +55,7 @@ decimalfield_precision_scale - decimal + decimal 12 2 From f0962c99dcebdb1d58033eb1b33d57cf48d88bf7 Mon Sep 17 00:00:00 2001 From: Oliver Gasser Date: Wed, 18 Dec 2013 00:37:09 +0100 Subject: [PATCH 20/31] Increment number of columns by one --- tests/lib/db/mdb2schemareader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/db/mdb2schemareader.php b/tests/lib/db/mdb2schemareader.php index faa3b8d7da0..f08996cbeaf 100644 --- a/tests/lib/db/mdb2schemareader.php +++ b/tests/lib/db/mdb2schemareader.php @@ -39,7 +39,7 @@ class MDB2SchemaReader extends \PHPUnit_Framework_TestCase { $this->assertCount(1, $schema->getTables()); $table = $schema->getTable('test_table'); - $this->assertCount(7, $table->getColumns()); + $this->assertCount(8, $table->getColumns()); $this->assertEquals(4, $table->getColumn('integerfield')->getLength()); $this->assertTrue($table->getColumn('integerfield')->getAutoincrement()); From 001b49601fc37b6fd3930d65e6958e04e80d03a7 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 18 Dec 2013 13:31:15 +0100 Subject: [PATCH 21/31] Added entry with ext storage info --- issue_template.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/issue_template.md b/issue_template.md index a9ff75a3b86..0ddc7667bf3 100644 --- a/issue_template.md +++ b/issue_template.md @@ -26,6 +26,8 @@ List of activated app: The content of config/config.php: (Without the database password and passwordsalt) +Are you using external storage, if yes which one: + ### Client configuration Browser: From 5a646477a56bc3ac0a93d46839927f5c504cf4bd Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 18 Dec 2013 15:10:12 +0100 Subject: [PATCH 22/31] 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(-) 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; } From 47245e741708479029311e2889592483c48dd29c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 18 Dec 2013 15:13:27 +0100 Subject: [PATCH 23/31] Add index on oc_appconfig for appid --- db_structure.xml | 7 +++++++ version.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/db_structure.xml b/db_structure.xml index db817faecee..3cb2af287af 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -60,6 +60,13 @@ ascending + + appconfig_appid_key + + appid + ascending + + diff --git a/version.php b/version.php index 2e1fc7e17f8..470aa895072 100644 --- a/version.php +++ b/version.php @@ -1,7 +1,7 @@ Date: Wed, 18 Dec 2013 15:25:28 +0100 Subject: [PATCH 24/31] only walk an array --- lib/private/json.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); } } From 2e195dbdae2f270d40191ff6f01d10cc81c1dc06 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 18 Dec 2013 15:28:32 +0100 Subject: [PATCH 25/31] 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(-) 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]; } From b109d411d8e88a84a1b2620b42e977c52c7492ff Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 18 Dec 2013 22:39:02 +0100 Subject: [PATCH 26/31] 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(-) 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', ); From cacb66480b4bebc8511842bcc588ffd750ef0c38 Mon Sep 17 00:00:00 2001 From: Oliver Gasser Date: Wed, 18 Dec 2013 23:40:11 +0100 Subject: [PATCH 27/31] Add unit tests for decimal type usage --- tests/data/db_structure.xml | 3 ++- tests/data/db_structure2.xml | 3 ++- tests/lib/db.php | 29 +++++++++++++++++++++++++++++ 3 files changed, 33 insertions(+), 2 deletions(-) diff --git a/tests/data/db_structure.xml b/tests/data/db_structure.xml index 5f2edbbc516..bfff2143349 100644 --- a/tests/data/db_structure.xml +++ b/tests/data/db_structure.xml @@ -216,7 +216,8 @@ decimal true - 15 + 12 + 2 diff --git a/tests/data/db_structure2.xml b/tests/data/db_structure2.xml index 6cd071451df..ae5f22e9573 100644 --- a/tests/data/db_structure2.xml +++ b/tests/data/db_structure2.xml @@ -113,7 +113,8 @@ decimal true - 15 + 12 + 2 diff --git a/tests/lib/db.php b/tests/lib/db.php index 3fcdf8a7dc6..96d5f873b5c 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -40,6 +40,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->table1 = $this->test_prefix.'cntcts_addrsbks'; $this->table2 = $this->test_prefix.'cntcts_cards'; $this->table3 = $this->test_prefix.'vcategory'; + $this->table4 = $this->test_prefix.'decimal'; } public function tearDown() { @@ -172,4 +173,32 @@ class Test_DB extends PHPUnit_Framework_TestCase { $actual = OC_DB::prepare("SELECT `fullname` FROM `$table`")->execute()->fetchOne(); $this->assertSame($expected, $actual); } + + public function testDecimal() { + $table = "*PREFIX*" . $this->table4; + $rowname = 'decimaltest'; + + // Insert, select and delete decimal(12,2) values + $inserts = array('1337133713.37', '1234567890'); + $expects = array('1337133713.37', '1234567890.00'); + + for ($i = 0; $i < count($inserts); $i++) { + $insert = $inserts[$i]; + $expect = $expects[$i]; + + $query = OC_DB::prepare('INSERT INTO `' . $table . '` (`' . $rowname . '`) VALUES (?)'); + $result = $query->execute(array($insert)); + $this->assertEquals(1, $result); + $query = OC_DB::prepare('SELECT `' . $rowname . '` FROM `' . $table . '`'); + $result = $query->execute(); + $this->assertTrue((bool)$result); + $row = $result->fetchRow(); + $this->assertArrayHasKey($rowname, $row); + $this->assertEquals($expect, $row[$rowname]); + $query = OC_DB::prepare('DELETE FROM `' . $table . '`'); + $result = $query->execute(); + $this->assertTrue((bool)$result); + } + } + } From 6c2a425686d30bdd0409112a5555b5f9c2df732b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 19 Dec 2013 00:26:41 +0100 Subject: [PATCH 28/31] Updating to latest master of 3rdparty - once more :-( --- 3rdparty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty b/3rdparty index 42efd966284..66b9afaeb53 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 42efd966284debadf83b761367e529bc45f806d6 +Subproject commit 66b9afaeb53f31a2a02d4a998bad4a6f93620ffa From 5eae75eeca825adedccb1ee29793ffab0502d6e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 19 Dec 2013 00:32:46 +0100 Subject: [PATCH 29/31] kill MDB2 in PHPDoc --- lib/public/db.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 */ From aa17a896ac03a4aa0530b9fbdf444d1e159d6ec2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 19 Dec 2013 00:33:29 +0100 Subject: [PATCH 30/31] fix return statement --- lib/public/db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); } /** From 37cdbc3be01d28ae0c7f399442e1390e7c4da4e7 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 19 Dec 2013 01:57:03 -0500 Subject: [PATCH 31/31] [tx-robot] updated from transifex --- apps/files_trashbin/l10n/ru.php | 1 + core/l10n/fr.php | 1 + l10n/ach/files.po | 17 +++++++++++---- l10n/ady/files.po | 17 +++++++++++---- l10n/af/files.po | 17 +++++++++++---- l10n/af_ZA/files.po | 17 +++++++++++---- l10n/ar/files.po | 17 +++++++++++---- l10n/az/files.po | 17 +++++++++++---- l10n/be/files.po | 17 +++++++++++---- l10n/bg_BG/files.po | 17 +++++++++++---- l10n/bn_BD/files.po | 17 +++++++++++---- l10n/bs/files.po | 17 +++++++++++---- l10n/ca/files.po | 17 +++++++++++---- l10n/cs_CZ/files.po | 17 +++++++++++---- l10n/cy_GB/files.po | 17 +++++++++++---- l10n/da/files.po | 17 +++++++++++---- l10n/de/files.po | 17 +++++++++++---- l10n/de_AT/files.po | 17 +++++++++++---- l10n/de_CH/files.po | 17 +++++++++++---- l10n/de_DE/files.po | 17 +++++++++++---- l10n/el/files.po | 17 +++++++++++---- l10n/en@pirate/files.po | 17 +++++++++++---- l10n/en_GB/files.po | 17 +++++++++++---- l10n/eo/files.po | 17 +++++++++++---- l10n/es/files.po | 17 +++++++++++---- l10n/es_AR/files.po | 17 +++++++++++---- l10n/es_CL/files.po | 17 +++++++++++---- l10n/es_MX/files.po | 17 +++++++++++---- l10n/et_EE/files.po | 17 +++++++++++---- l10n/eu/files.po | 19 ++++++++++++----- l10n/fa/files.po | 17 +++++++++++---- l10n/fi_FI/files.po | 17 +++++++++++---- l10n/fr/core.po | 32 ++++++++++++++--------------- l10n/fr/files.po | 17 +++++++++++---- l10n/fr/settings.po | 18 ++++++++-------- l10n/fr_CA/files.po | 17 +++++++++++---- l10n/gl/files.po | 17 +++++++++++---- l10n/he/files.po | 17 +++++++++++---- l10n/hi/files.po | 17 +++++++++++---- l10n/hr/files.po | 17 +++++++++++---- l10n/hu_HU/files.po | 19 ++++++++++++----- l10n/hy/files.po | 17 +++++++++++---- l10n/ia/files.po | 17 +++++++++++---- l10n/id/files.po | 19 ++++++++++++----- l10n/is/files.po | 17 +++++++++++---- l10n/it/files.po | 17 +++++++++++---- l10n/ja_JP/files.po | 19 ++++++++++++----- l10n/ka/files.po | 17 +++++++++++---- l10n/ka_GE/files.po | 17 +++++++++++---- l10n/km/files.po | 17 +++++++++++---- l10n/kn/files.po | 17 +++++++++++---- l10n/ko/files.po | 17 +++++++++++---- l10n/ku_IQ/files.po | 17 +++++++++++---- l10n/lb/files.po | 17 +++++++++++---- l10n/lt_LT/files.po | 17 +++++++++++---- l10n/lv/files.po | 17 +++++++++++---- l10n/mk/files.po | 17 +++++++++++---- l10n/ml_IN/files.po | 17 +++++++++++---- l10n/ms_MY/files.po | 17 +++++++++++---- l10n/my_MM/files.po | 17 +++++++++++---- l10n/nb_NO/files.po | 17 +++++++++++---- l10n/nds/files.po | 17 +++++++++++---- l10n/ne/files.po | 17 +++++++++++---- l10n/nl/files.po | 17 +++++++++++---- l10n/nn_NO/files.po | 17 +++++++++++---- l10n/nqo/files.po | 17 +++++++++++---- l10n/oc/files.po | 17 +++++++++++---- l10n/pa/files.po | 17 +++++++++++---- l10n/pl/files.po | 19 ++++++++++++----- l10n/pt_BR/files.po | 17 +++++++++++---- l10n/pt_PT/files.po | 17 +++++++++++---- l10n/ro/files.po | 17 +++++++++++---- l10n/ru/core.po | 28 ++++++++++++------------- l10n/ru/files.po | 17 +++++++++++---- l10n/ru/files_external.po | 10 ++++----- l10n/ru/files_trashbin.po | 13 ++++++------ l10n/ru/settings.po | 12 +++++------ l10n/ru_RU/files.po | 17 +++++++++++---- l10n/si_LK/files.po | 17 +++++++++++---- l10n/sk/files.po | 17 +++++++++++---- l10n/sk_SK/files.po | 17 +++++++++++---- l10n/sl/files.po | 17 +++++++++++---- l10n/sq/files.po | 17 +++++++++++---- l10n/sr/files.po | 17 +++++++++++---- l10n/sr@latin/files.po | 17 +++++++++++---- l10n/sv/files.po | 17 +++++++++++---- l10n/sw_KE/files.po | 17 +++++++++++---- l10n/ta_LK/files.po | 17 +++++++++++---- l10n/te/files.po | 17 +++++++++++---- l10n/templates/core.pot | 26 +++++++++++------------ l10n/templates/files.pot | 15 +++++++++++--- 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/th_TH/files.po | 17 +++++++++++---- l10n/tr/files.po | 17 +++++++++++---- l10n/tzm/files.po | 17 +++++++++++---- l10n/ug/files.po | 17 +++++++++++---- l10n/uk/files.po | 17 +++++++++++---- l10n/ur_PK/files.po | 17 +++++++++++---- l10n/uz/files.po | 17 +++++++++++---- l10n/vi/files.po | 17 +++++++++++---- l10n/zh_CN/files.po | 17 +++++++++++---- l10n/zh_HK/files.po | 17 +++++++++++---- l10n/zh_TW/files.po | 17 +++++++++++---- settings/l10n/fr.php | 2 ++ 113 files changed, 1297 insertions(+), 455 deletions(-) diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index b6de1948f77..06a4f864c67 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Name" => "Имя", "Restore" => "Восстановить", "Deleted" => "Удалён", +"Delete" => "Удалить", "Deleted Files" => "Удаленные файлы" ); $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/fr.php b/core/l10n/fr.php index c58305ea7a9..d73355a4e2c 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Serveur de la base de données", "Finish setup" => "Terminer l'installation", "Finishing …" => "En cours de finalisation...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Cette application nécessite que JavaScript soit activé pour fonctionner correctement. Veuillez activer JavaScript puis charger à nouveau cette interface.", "%s is available. Get more information on how to update." => "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour.", "Log out" => "Se déconnecter", "Automatic logon rejected!" => "Connexion automatique rejetée !", diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 152cfff386a..169f2307c38 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ady/files.po b/l10n/ady/files.po index f3d7a9fb839..95bd2e10d1d 100644 --- a/l10n/ady/files.po +++ b/l10n/ady/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index 3b521d862a4..b5cf6a2f4ba 100644 --- a/l10n/af/files.po +++ b/l10n/af/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 75c78bb65e8..c871aaa6c48 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 2231204bb76..14a4ee52c9e 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -48,12 +48,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -173,6 +178,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "شارك" diff --git a/l10n/az/files.po b/l10n/az/files.po index af916514557..75cfc77660a 100644 --- a/l10n/az/files.po +++ b/l10n/az/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-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\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" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index c65df86415c..2b804d9388e 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 2069edf8de9..4874a439aec 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Споделяне" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index df4fcc9abe7..79f6a22cc13 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "ভাগাভাগি কর" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 0b919a5082e..5f52f59cce2 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Podijeli" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 50fc51c3204..56faf80b826 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -10,8 +10,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -49,12 +49,17 @@ msgstr "El nom %s ja s'usa en la carpeta %s. Indiqueu un nom diferent." msgid "Not a valid source" msgstr "No és un origen vàlid" -#: ajax/newfile.php:94 +#: 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 "S'ha produït un error en baixar %s a %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "S'ha produït un error en crear el fitxer" @@ -174,6 +179,10 @@ msgstr "No s'ha pogut crear el fitxer" msgid "Could not create folder" msgstr "No s'ha pogut crear la carpeta" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Comparteix" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 13e9333e32a..d630867e425 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -14,8 +14,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -53,12 +53,17 @@ msgstr "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno." msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:94 +#: 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 "Chyba při stahování %s do %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Chyba při vytváření souboru" @@ -178,6 +183,10 @@ msgstr "Nepodařilo se vytvořit soubor" msgid "Could not create folder" msgstr "Nepodařilo se vytvořit složku" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Sdílet" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 5ae908e8ef1..5f92ce92ee3 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Rhannu" diff --git a/l10n/da/files.po b/l10n/da/files.po index 47d179af3cb..2e4de34e834 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -10,8 +10,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Del" diff --git a/l10n/de/files.po b/l10n/de/files.po index 0eb3ff2ea57..d956a688ff4 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -13,8 +13,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -52,12 +52,17 @@ msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wähle einen ander msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:94 +#: 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 "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" @@ -177,6 +182,10 @@ msgstr "Die Datei konnte nicht erstellt werden" msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Teilen" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 0d262aa4e57..bb1821599ca 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 514b5a7096f..e24435daca1 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -55,12 +55,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -180,6 +185,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Teilen" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 766b8216d27..627887cc6e7 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -16,8 +16,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -55,12 +55,17 @@ msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wählen Sie einen a msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:94 +#: 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 "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" @@ -180,6 +185,10 @@ msgstr "Die Datei konnte nicht erstellt werden" msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Teilen" diff --git a/l10n/el/files.po b/l10n/el/files.po index 3e956350c03..043967c459b 100644 --- a/l10n/el/files.po +++ b/l10n/el/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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -50,12 +50,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -175,6 +180,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Διαμοιρασμός" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index fbea9751bc4..531771612fb 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 9963cad365f..bb30d2ce78a 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "The name %s is already used in the folder %s. Please choose a different msgid "Not a valid source" msgstr "Not a valid source" -#: ajax/newfile.php:94 +#: 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 "Error whilst downloading %s to %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Error when creating the file" @@ -172,6 +177,10 @@ msgstr "Could not create file" msgid "Could not create folder" msgstr "Could not create folder" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Share" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 44b77d5a2ca..19c59be612d 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "La nomo %s jam uziĝas en la dosierujo %s. Bonvolu elekti malsaman nomon msgid "Not a valid source" msgstr "Nevalida fonto" -#: ajax/newfile.php:94 +#: 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 "Eraris elŝuto de %s al %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Eraris la kreo de la dosiero" @@ -172,6 +177,10 @@ msgstr "Ne povis kreiĝi dosiero" msgid "Could not create folder" msgstr "Ne povis kreiĝi dosierujo" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Kunhavigi" diff --git a/l10n/es/files.po b/l10n/es/files.po index 394af7cad3d..dc0c13ac4cd 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -16,8 +16,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -55,12 +55,17 @@ msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno dife msgid "Not a valid source" msgstr "No es un origen válido" -#: ajax/newfile.php:94 +#: 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 "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Error al crear el archivo" @@ -180,6 +185,10 @@ msgstr "No se pudo crear el archivo" msgid "Could not create folder" msgstr "No se pudo crear la carpeta" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Compartir" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 00d7dc97019..3d24eafde92 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -50,12 +50,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -175,6 +180,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Compartir" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index a1f4067622d..2bb37f65f47 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 16:42-0500\n" -"PO-Revision-Date: 2013-12-17 15:30+0000\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" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index a753bc84d9c..cd03a94ccac 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 3a8fe37ab2f..d49a743fd81 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -48,12 +48,17 @@ msgstr "Nimi %s on juba kasutusel kataloogis %s. Palun vali mõni teine nimi." msgid "Not a valid source" msgstr "Pole korrektne lähteallikas" -#: ajax/newfile.php:94 +#: 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 "Viga %s allalaadimisel %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Viga faili loomisel" @@ -173,6 +178,10 @@ msgstr "Ei suuda luua faili" msgid "Could not create folder" msgstr "Ei suuda luua kataloogi" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Jaga" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 36f49553f28..e1b4d5b6c4b 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-10 21:40+0000\n" -"Last-Translator: asieriko \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" "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" @@ -48,12 +48,17 @@ msgstr "%s izena dagoeneko erabilita dago %s karpetan. Mesdez hautatu izen ezber msgid "Not a valid source" msgstr "Ez da jatorri baliogarria" -#: ajax/newfile.php:94 +#: 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 "Errorea %s %sra deskargatzerakoan" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Errorea fitxategia sortzerakoan" @@ -173,6 +178,10 @@ msgstr "Ezin izan da fitxategia sortu" msgid "Could not create folder" msgstr "Ezin izan da karpeta sortu" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Elkarbanatu" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index dc4618a113e..b5c1cc724ee 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "اشتراک‌گذاری" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b3ca2b847ca..01a67ee5f5a 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.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 12:00+0000\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" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -48,12 +48,17 @@ msgstr "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi." msgid "Not a valid source" msgstr "Virheellinen lähde" -#: ajax/newfile.php:94 +#: 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 "Virhe ladatessa kohdetta %s sijaintiin %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Virhe tiedostoa luotaessa" @@ -173,6 +178,10 @@ msgstr "Tiedoston luominen epäonnistui" msgid "Could not create folder" msgstr "Kansion luominen epäonnistui" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Jaa" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index aa688518320..6b068fb4022 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 10:00+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,59 +156,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Paramètres" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "il y a %n minute" msgstr[1] "il y a %n minutes" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Il y a %n heure" msgstr[1] "Il y a %n heures" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "aujourd'hui" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "hier" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "il y a %n jour" msgstr[1] "il y a %n jours" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "le mois dernier" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Il y a %n mois" msgstr[1] "Il y a %n mois" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "l'année dernière" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "il y a plusieurs années" @@ -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 "Cette application nécessite que JavaScript soit activé pour fonctionner correctement. Veuillez activer JavaScript puis charger à nouveau cette interface." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 91f55f9e708..83018dd26db 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-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -51,12 +51,17 @@ msgstr "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un no msgid "Not a valid source" msgstr "La source n'est pas valide" -#: ajax/newfile.php:94 +#: 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 "Erreur pendant le téléchargement de %s à %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Erreur pendant la création du fichier" @@ -176,6 +181,10 @@ msgstr "Impossible de créer le fichier" msgid "Could not create folder" msgstr "Impossible de créer le dossier" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Partager" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 6d5f5f97d98..d0edd3b5c43 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.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-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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 10: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -206,19 +206,19 @@ msgstr "Supprimer" msgid "add group" msgstr "ajouter un groupe" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: 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 "Erreur lors de la création de l'utilisateur" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Attention : Le dossier Home pour l'utilisateur \"{user}\" existe déjà" @@ -293,14 +293,14 @@ msgstr "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l' #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Votre version de PHP est trop ancienne" #: 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 "Votre version de PHP est trop ancienne. Nous vous recommandons fortement de migrer vers une version 5.3.8 ou plus récente encore, car les versions antérieures sont réputées problématiques. Il est possible que cette installation ne fonctionne pas correctement." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/fr_CA/files.po b/l10n/fr_CA/files.po index ad29b7b94d1..945c90682d9 100644 --- a/l10n/fr_CA/files.po +++ b/l10n/fr_CA/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 7400fb90167..00312f4aa47 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "Xa existe o nome %s no cartafol %s. Escolla outro nome." msgid "Not a valid source" msgstr "Esta orixe non é correcta" -#: ajax/newfile.php:94 +#: 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 "Produciuse un erro ao descargar %s en %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Produciuse un erro ao crear o ficheiro" @@ -172,6 +177,10 @@ msgstr "Non foi posíbel crear o ficheiro" msgid "Could not create folder" msgstr "Non foi posíbel crear o cartafol" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Compartir" diff --git a/l10n/he/files.po b/l10n/he/files.po index eb45a42284c..68cf704d6cf 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.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 12:00+0000\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" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -48,12 +48,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -173,6 +178,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "שתף" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index d89ab9be1c0..2598b807ae4 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "साझा करें" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 87fc634ff29..ca48718cdf8 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Podijeli" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index b0e34469ea7..2f33b991ed7 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-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-15 10:40+0000\n" -"Last-Translator: ebela \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" "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" @@ -48,12 +48,17 @@ msgstr "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!" msgid "Not a valid source" msgstr "A kiinduló állomány érvénytelen" -#: ajax/newfile.php:94 +#: 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 "Hiba történt miközben %s-t letöltöttük %s-be" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Hiba történt az állomány létrehozásakor" @@ -173,6 +178,10 @@ msgstr "Az állomány nem hozható létre" msgid "Could not create folder" msgstr "A mappa nem hozható létre" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Megosztás" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index cb73485dfae..3d8396a085b 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 0a7d6d3465e..af2d4e6a5c8 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Compartir" diff --git a/l10n/id/files.po b/l10n/id/files.po index 876f7423d22..ab1addf08d3 100644 --- a/l10n/id/files.po +++ b/l10n/id/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-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-12 03:30+0000\n" -"Last-Translator: arifpedia \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" "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" @@ -47,12 +47,17 @@ msgstr "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda msgid "Not a valid source" msgstr "Sumber tidak sah" -#: ajax/newfile.php:94 +#: 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 "Galat saat mengunduh %s ke %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Galat saat membuat berkas" @@ -172,6 +177,10 @@ msgstr "Tidak dapat membuat berkas" msgid "Could not create folder" msgstr "Tidak dapat membuat folder" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Bagikan" diff --git a/l10n/is/files.po b/l10n/is/files.po index 76c4efedf04..7455bcd4cc9 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Deila" diff --git a/l10n/it/files.po b/l10n/it/files.po index eafd58473ee..87ad7a67ba4 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.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 12:00+0000\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" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -48,12 +48,17 @@ msgstr "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diver msgid "Not a valid source" msgstr "Non è una sorgente valida" -#: ajax/newfile.php:94 +#: 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 "Errore durante lo scaricamento di %s su %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Errore durante la creazione del file" @@ -173,6 +178,10 @@ msgstr "Impossibile creare il file" msgid "Could not create folder" msgstr "Impossibile creare la cartella" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Condividi" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index bc3d8201044..143ba08708f 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-11 02:00+0000\n" -"Last-Translator: iLikeIT \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" "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" @@ -52,12 +52,17 @@ msgstr "%s はフォルダ %s ないですでに使われています。別の msgid "Not a valid source" msgstr "有効なソースではありません" -#: ajax/newfile.php:94 +#: 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 "%s から %s へのダウンロードエラー" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "ファイルの生成エラー" @@ -177,6 +182,10 @@ msgstr "ファイルを作成できませんでした" msgid "Could not create folder" msgstr "フォルダを作成できませんでした" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "共有" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 3e55f8b3203..37ff89fc2b7 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 32430d59687..04d32331b41 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "გაზიარება" diff --git a/l10n/km/files.po b/l10n/km/files.po index 98fc2cdbcf2..d5b5468f564 100644 --- a/l10n/km/files.po +++ b/l10n/km/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 76ffe97ff7d..31a4b49208d 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 4c34aa1f641..62d04afb936 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -10,8 +10,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "공유" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 87a1dd031b0..fdd728aa856 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "هاوبەشی کردن" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index fbea3217dd8..6d7703c8368 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Deelen" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index ff8245fb084..0305bc10bce 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -49,12 +49,17 @@ msgstr "Pavadinimas %s jau naudojamas aplanke %s. Prašome pasirinkti kitokį pa msgid "Not a valid source" msgstr "Netinkamas šaltinis" -#: ajax/newfile.php:94 +#: 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 "Klaida siunčiant %s į %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Klaida kuriant failą" @@ -174,6 +179,10 @@ msgstr "Neįmanoma sukurti failo" msgid "Could not create folder" msgstr "Neįmanoma sukurti aplanko" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Dalintis" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 18f80357700..c0a7a9e88c9 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Dalīties" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index dada6e2a173..f8926ab4368 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "Не е валиден извор" -#: ajax/newfile.php:94 +#: 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 "Грешка додека преземам %s to %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Грешка при креирање на датотека" @@ -172,6 +177,10 @@ msgstr "Не множам да креирам датотека" msgid "Could not create folder" msgstr "Не можам да креирам папка" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Сподели" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index a46b2d8c9a4..03a9d3ef97f 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 48405a6ce38..232faa5d54a 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Kongsi" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 4d560641f13..09849cace99 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index c8b2c821949..976d2b36628 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -10,8 +10,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Del" diff --git a/l10n/nds/files.po b/l10n/nds/files.po index 9c53c7ed622..0923a19e994 100644 --- a/l10n/nds/files.po +++ b/l10n/nds/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 815d48c5ba7..0d44c7750fa 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index fe1522405e4..dc83b4e98c8 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.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 12:00+0000\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" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -48,12 +48,17 @@ msgstr "De naam %s bestaat al in map %s. Kies een andere naam." msgid "Not a valid source" msgstr "Geen geldige bron" -#: ajax/newfile.php:94 +#: 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 "Fout bij downloaden %s naar %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Fout bij creëren bestand" @@ -173,6 +178,10 @@ msgstr "Kon bestand niet creëren" msgid "Could not create folder" msgstr "Kon niet creëren map" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Delen" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 2cad0f20225..edd43bfb23b 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Del" diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index c27a11a8f8c..779270d0848 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index cd522aed1da..b8706615218 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Parteja" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index 3a635819614..5c76d7fda4b 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index dae21380ca4..ac8defc7dee 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.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-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 14:46+0000\n" -"Last-Translator: bobie \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" "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" @@ -52,12 +52,17 @@ msgstr "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę. msgid "Not a valid source" msgstr "Niepoprawne źródło" -#: ajax/newfile.php:94 +#: 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 "Błąd podczas pobierania %s do %S" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Błąd przy tworzeniu pliku" @@ -177,6 +182,10 @@ msgstr "Nie można utworzyć pliku" msgid "Could not create folder" msgstr "Nie można utworzyć folderu" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Udostępnij" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 3fdeffefe72..bff373df729 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -49,12 +49,17 @@ msgstr "O nome %s já é usado na pasta %s. Por favor, escolha um nome diferente msgid "Not a valid source" msgstr "Não é uma fonte válida" -#: ajax/newfile.php:94 +#: 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 "Erro ao baixar %s para %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Erro ao criar o arquivo" @@ -174,6 +179,10 @@ msgstr "Não foi possível criar o arquivo" msgid "Could not create folder" msgstr "Não foi possível criar a pasta" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Compartilhar" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 5473adbf2d8..edb38dba5d4 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -10,8 +10,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Partilhar" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 1a8c5029074..f41bbf79a63 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\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" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -51,12 +51,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -176,6 +181,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "a imparti" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index dd79ac7ff2a..84b302aec7e 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -22,8 +22,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 11:40+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" @@ -163,63 +163,63 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Конфигурация" -#: 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] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: 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] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: 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] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: 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 "несколько лет назад" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 0d63b564795..97b80bb466f 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -16,8 +16,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -55,12 +55,17 @@ msgstr "Имя %s уже используется в папке %s. Пожалу msgid "Not a valid source" msgstr "Неправильный источник" -#: ajax/newfile.php:94 +#: 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 "Ошибка при загрузке %s в %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Ошибка при создании файла" @@ -180,6 +185,10 @@ msgstr "Не удалось создать файл" msgid "Could not create folder" msgstr "Не удалось создать папку" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Открыть доступ" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 438e60725e0..24a62cae43d 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\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" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -37,20 +37,20 @@ msgstr "Пожалуйста, предоставьте действующий к msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища Google Drive" -#: lib/config.php:461 +#: 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 "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:465 +#: 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 "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." -#: lib/config.php:468 +#: 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 " diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 2bcfd5dc243..4e30a52f763 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# baden , 2013 # Den4md , 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 10:56+0000\n" -"Last-Translator: Валерий Шалимов \n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 11:40+0000\n" +"Last-Translator: baden \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" @@ -32,7 +33,7 @@ msgstr "%s не может быть восстановлен" msgid "Error" msgstr "Ошибка" -#: lib/trashbin.php:900 lib/trashbin.php:902 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "восстановлен" @@ -54,8 +55,8 @@ msgstr "Удалён" #: templates/index.php:34 templates/index.php:35 msgid "Delete" -msgstr "" +msgstr "Удалить" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Удаленные файлы" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 3b1d5df4f80..19a44609b6a 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -20,8 +20,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 11:40+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" @@ -211,19 +211,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}\" уже существует" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 0aee9f1c39d..b9be189d1d6 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/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-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:10+0000\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" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Сделать общим" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index a1095444642..d9034d0bf6c 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "බෙදා හදා ගන්න" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 57d247be3e9..07a816b9346 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index e1bffbb6a3b..ad1c9dc499c 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "Názov %s už používa priečinok s%. Prosím zvoľte iný názov." msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:94 +#: 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 "Chyba pri sťahovaní súboru %s do %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Chyba pri vytváraní súboru" @@ -172,6 +177,10 @@ msgstr "Nemožno vytvoriť súbor" msgid "Could not create folder" msgstr "Nemožno vytvoriť priečinok" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Zdieľať" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 86d93f09355..28b931edb10 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.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 12:00+0000\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" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -48,12 +48,17 @@ msgstr "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime." msgid "Not a valid source" msgstr "Vir ni veljaven" -#: ajax/newfile.php:94 +#: 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 "Napaka med prejemanjem %s v mapo %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Napaka med ustvarjanjem datoteke" @@ -173,6 +178,10 @@ msgstr "Ni mogoče ustvariti datoteke" msgid "Could not create folder" msgstr "Ni mogoče ustvariti mape" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Souporaba" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index bc7367988cc..87c0c28095b 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Ndaj" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 099a8743bad..3cbe94f8a16 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Дели" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index ffb89b7d57f..96893be00eb 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Podeli" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index b04ea41fb8d..8656ac25b49 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -15,8 +15,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -54,12 +54,17 @@ msgstr "Namnet %s används redan i katalogen %s. Välj ett annat namn." msgid "Not a valid source" msgstr "Inte en giltig källa" -#: ajax/newfile.php:94 +#: 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 "Fel under nerladdning från %s till %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Fel under skapande utav filen" @@ -179,6 +184,10 @@ msgstr "Kunde ej skapa fil" msgid "Could not create folder" msgstr "Kunde ej skapa katalog" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Dela" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index d6c0838eab8..c62ef362900 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 4805f314f21..011556edd10 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "பகிர்வு" diff --git a/l10n/te/files.po b/l10n/te/files.po index 15e92bbce15..3158b4abf33 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 50ee36af6de..72088b5a6b5 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 01:55-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:394 +#: js/js.js:398 msgid "Settings" msgstr "" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index f615b51ee27..e550f77ddf1 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 2c0d23f1e36..34ac16ce3ff 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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 fe6db3b7bff..ce72bc4b9a1 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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 7725bcd6f19..587dd43a019 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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 5341ce8c9f5..6ff80411e97 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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 54d7ae5e04b..ce6d774d92a 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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 5f114291d49..18bc276dfbd 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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 f1b2bc44f86..7a99ec07087 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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 496b6e61225..83ac64425bb 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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 8f8922d3f5a..9d13b281992 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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 d0582501b00..3ddb6c2ef62 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-18 01:55-0500\n" +"POT-Creation-Date: 2013-12-19 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/th_TH/files.po b/l10n/th_TH/files.po index bc471067719..8162b5aa760 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "แชร์" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 692896f263a..eda0cfcb055 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-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 19:00+0000\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" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -50,12 +50,17 @@ msgstr "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim s msgid "Not a valid source" msgstr "Geçerli bir kaynak değil" -#: ajax/newfile.php:94 +#: 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 "%s, %s içine indirilirken hata" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Dosya oluşturulurken hata" @@ -175,6 +180,10 @@ msgstr "Dosya oluşturulamadı" msgid "Could not create folder" msgstr "Klasör oluşturulamadı" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Paylaş" diff --git a/l10n/tzm/files.po b/l10n/tzm/files.po index f901831c513..86d9e057db0 100644 --- a/l10n/tzm/files.po +++ b/l10n/tzm/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 5a690ae7424..e9058c0d5f6 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "ھەمبەھىر" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 8857990f04b..da708c02256 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,8 +8,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "Не вдалося створити файл" msgid "Could not create folder" msgstr "Не вдалося створити теку" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Поділитися" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 1cf4617728d..53afc26e545 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/uz/files.po b/l10n/uz/files.po index e4110e2b334..4e49c02a55b 100644 --- a/l10n/uz/files.po +++ b/l10n/uz/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-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\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" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index c8ccd2734cd..05e9ceee099 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Chia sẻ" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 356db64472d..512e5497bd4 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "分享" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index ffa33793d79..e9d2953d16e 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: 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-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+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" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: 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:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "分享" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index d5168264d2f..ddc3c89da2a 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.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 12:00+0000\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" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -48,12 +48,17 @@ msgstr "%s 已經被使用於資料夾 %s ,請換一個名字" msgid "Not a valid source" msgstr "不是有效的來源" -#: ajax/newfile.php:94 +#: 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 "下載 %s 到 %s 失敗" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "建立檔案失敗" @@ -173,6 +178,10 @@ msgstr "無法建立檔案" msgid "Could not create folder" msgstr "無法建立資料夾" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "分享" diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index a1b819af2ff..156533f6fa0 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Veuillez consulter à nouveau les guides d'installation.", "Module 'fileinfo' missing" => "Module 'fileinfo' manquant", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers.", +"Your PHP version is outdated" => "Votre version de PHP est trop ancienne", +"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." => "Votre version de PHP est trop ancienne. Nous vous recommandons fortement de migrer vers une version 5.3.8 ou plus récente encore, car les versions antérieures sont réputées problématiques. Il est possible que cette installation ne fonctionne pas correctement.", "Locale not working" => "Localisation non fonctionnelle", "System locale can not be set to a one which supports UTF-8." => "Les paramètres régionaux ne peuvent pas être configurés avec un qui supporte UTF-8.", "This means that there might be problems with certain characters in file names." => "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier.",